From 2e286d6a57ead80239ba74ab52b1439bbe3bfcf3 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 15 Aug 2020 18:56:17 -0400 Subject: [PATCH 01/44] Move calendar/event stylesheets/scripts registration to modules - Add media parameter to Page->registerStylesheet - Fixes CSS precedence with custom theme stylesheet --- mod/cal.php | 5 +++++ mod/events.php | 5 +++++ src/App/Page.php | 9 ++++----- view/templates/event_head.tpl | 6 ------ view/templates/head.tpl | 4 ++-- view/theme/frio/templates/event_head.tpl | 4 ---- view/theme/frio/templates/head.tpl | 8 ++++---- 7 files changed, 20 insertions(+), 21 deletions(-) diff --git a/mod/cal.php b/mod/cal.php index 0e8e8a2af3..1ac11dc98b 100644 --- a/mod/cal.php +++ b/mod/cal.php @@ -105,6 +105,11 @@ function cal_content(App $a) // get the translation strings for the callendar $i18n = Event::getStrings(); + DI::page()->registerStylesheet('view/asset/fullcalendar/dist/fullcalendar.min.css'); + DI::page()->registerStylesheet('view/asset/fullcalendar/dist/fullcalendar.print.min.css', 'print'); + DI::page()->registerFooterScript('view/asset/moment/min/moment-with-locales.min.js'); + DI::page()->registerFooterScript('view/asset/fullcalendar/dist/fullcalendar.min.js'); + $htpl = Renderer::getMarkupTemplate('event_head.tpl'); DI::page()['htmlhead'] .= Renderer::replaceMacros($htpl, [ '$module_url' => '/cal/' . $a->data['user']['nickname'], diff --git a/mod/events.php b/mod/events.php index 69f6b6f326..d82fbd818e 100644 --- a/mod/events.php +++ b/mod/events.php @@ -256,6 +256,11 @@ function events_content(App $a) // get the translation strings for the callendar $i18n = Event::getStrings(); + DI::page()->registerStylesheet('view/asset/fullcalendar/dist/fullcalendar.min.css'); + DI::page()->registerStylesheet('view/asset/fullcalendar/dist/fullcalendar.print.min.css', 'print'); + DI::page()->registerFooterScript('view/asset/moment/min/moment-with-locales.min.js'); + DI::page()->registerFooterScript('view/asset/fullcalendar/dist/fullcalendar.min.js'); + $htpl = Renderer::getMarkupTemplate('event_head.tpl'); DI::page()['htmlhead'] .= Renderer::replaceMacros($htpl, [ '$module_url' => '/events', diff --git a/src/App/Page.php b/src/App/Page.php index d3365a16c1..c2bfb38878 100644 --- a/src/App/Page.php +++ b/src/App/Page.php @@ -165,11 +165,10 @@ class Page implements ArrayAccess * The path can be absolute or relative to the Friendica installation base folder. * * @param string $path - * + * @param string $media * @see Page::initHead() - * */ - public function registerStylesheet($path) + public function registerStylesheet($path, string $media = 'screen') { $path = Network::appendQueryParam($path, ['v' => FRIENDICA_VERSION]); @@ -177,7 +176,7 @@ class Page implements ArrayAccess $path = mb_substr($path, mb_strlen($this->basePath . DIRECTORY_SEPARATOR)); } - $this->stylesheets[] = trim($path, '/'); + $this->stylesheets[trim($path, '/')] = $media; } /** @@ -252,7 +251,7 @@ class Page implements ArrayAccess '$shortcut_icon' => $shortcut_icon, '$touch_icon' => $touch_icon, '$block_public' => intval($config->get('system', 'block_public')), - '$stylesheets' => array_unique($this->stylesheets), + '$stylesheets' => $this->stylesheets, ]) . $this->page['htmlhead']; } diff --git a/view/templates/event_head.tpl b/view/templates/event_head.tpl index 463ba720e2..8990c6fb25 100644 --- a/view/templates/event_head.tpl +++ b/view/templates/event_head.tpl @@ -1,9 +1,3 @@ - - - - - - - -
+
From d5975ff0bcd73ab9d5775bf6189c5c76e8066b67 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 15 Aug 2020 20:25:33 -0400 Subject: [PATCH 07/44] [frio] Add dynamic CSS property before introducing accented themes - Introduce variables for font colors - Set content background transparency on several background colors - Change radio/checkbox colors depending on the link color - Prevent post highlighting to end up on static white --- view/theme/frio/css/style.css | 113 +++++++++++++++++++++------------- view/theme/frio/js/theme.js | 2 +- view/theme/frio/style.php | 6 +- 3 files changed, 74 insertions(+), 47 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index d2fa94e00c..3f87f01703 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -10,7 +10,7 @@ body { background-size: $background_size_img; background-repeat: $background_repeat; background-attachment: fixed; - color: #777; + color: $font_color; font-family: 'Open Sans',sans-serif; } body.minimal { @@ -181,7 +181,7 @@ blockquote { .btn-default { background: #ededed; - color: #7a7a7a; + color: $font_color; } .btn-sm { padding: 4px 8px; @@ -416,6 +416,11 @@ nav.navbar .nav > li > button { color: $nav_icon_color; } +#topbar-first .nav > .open > a, +#topbar-first .nav > .open > button +{ + background-color: $nav_bg; +} #topbar-first .nav > li > a:hover, #topbar-first .nav > li > a:focus, #topbar-first .nav > li > button:not(#main-menu):hover, @@ -570,11 +575,11 @@ nav.navbar .nav > li > button:focus max-height: 400px; } #topbar-first #nav-notifications-menu a { - color: #555; + color: $font_color_darker; padding: 0; } #topbar-first #nav-notifications-menu li.notif-entry { - color: #555; + color: $font_color_darker; padding: 10px; border-bottom: 1px solid #eee; position: relative; @@ -800,7 +805,7 @@ nav.navbar .nav > li > button:focus background: $menu_background_hover_color; } #photo-edit-link-wrap { - color: #555; + color: $font_color_darker; margin-bottom: 15px; } @@ -817,7 +822,7 @@ nav.navbar .nav > li > button:focus aside .widget, .nav-container .widget { border: none; - color: #777; + color: $font_color; background-color: rgba(255, 255, 255, $contentbg_transp); box-shadow: 0 0 3px #dadada; -webkit-box-shadow: 0 0 3px #dadada; @@ -858,14 +863,14 @@ aside .widget li:hover, aside .widget li.selected, .nav-container .widget li:hover { z-index: 2; - color: #555; + color: $font_color_darker; background-color: rgba(247, 247, 247, $contentbg_transp); border-left: 3px solid $link_color !important; padding-left: 17px; } aside .widget li a, aside .widget li a:hover { - color: #555; + color: $font_color_darker; } /* forumlist widget */ @@ -1039,12 +1044,12 @@ aside .vcard #wallmessage-link { font-weight: bold; } #nav-short-info .contact-wrapper .media-heading a { - color: #555; + color: $font_color_darker; font-size: 14px !important; } #vcard-short-desc > .vcard-short-addr, #nav-short-info .contact-wrapper #contact-entry-url-network { - color: #777; + color: $font_color; font-size: 12px; } .network-content-wrapper > #viewcontact_wrapper-network, @@ -1080,16 +1085,16 @@ div#sidebar-group-list { } .group-edit-tool { - color: #555; + color: $font_color_darker; } .faded-icon { - color: #555; + color: $font_color_darker; opacity: 0.3; transition: all 0.1s ease-in-out; } .faded-icon:hover { - color: #555; + color: $font_color_darker; opacity: 1; } .icon-padding { @@ -1180,7 +1185,7 @@ section #jotOpen { } #jot-modal .modal-header a, #jot-modal .modal-header .btn-link, #profile-jot-submit-wrapper a, #profile-jot-submit-wrapper .btn-link { - color: #555; + color: $font_color_darker; text-transform: capitalize; } #jot-modal .modal-header { @@ -1214,7 +1219,7 @@ section #jotOpen { box-shadow: none; border-radius: 0 0 4px 4px; background: #fff; - color: #555; + color: $font_color_darker; } textarea#profile-jot-text:focus + #preview_profile-jot-text, textarea.comment-edit-text:focus + .comment-edit-form .preview { @@ -1296,7 +1301,7 @@ textarea.comment-edit-text:focus + .comment-edit-form .preview { padding: 0; } .fbrowser .breadcrumb > li:last-of-type a{ - color: #777; + color: $font_color; pointer-events: none; cursor: default; } @@ -1326,14 +1331,14 @@ textarea.comment-edit-text:focus + .comment-edit-form .preview { } .fbrowser .folders li:hover { z-index: 2; - color: #555; + color: $font_color_darker; background-color: rgba(247, 247, 247, $contentbg_transp); border-left: 3px solid $link_color; padding-left: 17px; } .fbrowser .folders li a, .fbrowser .folders li a:hover { - color: #555; + color: $font_color_darker; font-size: 13px; } .fbrowser .folders + .list { @@ -1400,7 +1405,7 @@ aside .panel-body { .desktop-view .wall-item-container .fakelink, .desktop-view .toplevel_item .fakelink, .desktop-view .toplevel_item .wall-item-container .wall-item-responses a { - color: #555; + color: $font_color; -webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out; -o-transition: all 0.25s ease-in-out; @@ -1514,7 +1519,7 @@ aside .panel-body { .media .media-body h4.media-heading { font-size: 14px; font-weight: 500; - color: #555; + color: $font_color_darker; } .media .media-body .addional-info a, .media .media-body h5.media-heading > a { display: block; @@ -1597,11 +1602,11 @@ aside .panel-body { border-radius: 3px; } .wall-item-body .body-attach > a { - color: #555; + color: $font_color_darker; display: inline-block; } .wall-item-body .body-attach > a div { - color: #555; + color: $font_color_darker; width: 20px; } @@ -1691,7 +1696,7 @@ code > .hl-main { } .wall-item-tags a { - color: #555; + color: $font_color_darker; } .wall-item-tags a:hover { @@ -1714,7 +1719,7 @@ code > .hl-main { } .wall-item-actions a, .wall-item-actions button { font-size: 13px; - color: #555; + color: $font_color_darker; } .wall-item-actions .active { font-weight: bold; @@ -1737,7 +1742,7 @@ code > .hl-main { text-transform: capitalize; } .wall-item-actions button:hover { - color: #555; + color: $font_color_darker; text-decoration: underline; } .wall-item-actions .separator { @@ -1867,7 +1872,7 @@ nav .acpopup { /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns at the beginning of this file to get rid of the !important */ .textcomplete-item > a { - color: #555 !important; + color: $font_color_darker !important; padding: 5px 20px !important; } .textcomplete-item.active > a { @@ -1987,7 +1992,7 @@ ul.dropdown-menu li:hover { .media .location, .media .location a { font-size: 11px; - color: #bebebe; + color: $font_color_darker; } .media-list > li { padding: 10px; @@ -2012,11 +2017,26 @@ ul.dropdown-menu li:hover { box-shadow: none; } +.radio label::before, +.checkbox label::before { + background-color: $background_color; +} +.radio label::after { + background-color: $link_color; +} +.checkbox label::after { + color: $link_color; +} + .checkbox input[type="checkbox"]:focus + label::before, .radio input[type="radio"]:focus + label::before { outline-color: $link_hover_color; } +.help-block { + color: $font_color_darker; +} + input[type=range].form-control { padding-left: 0; padding-right: 0; @@ -2067,7 +2087,7 @@ input[type=range].form-control { background-color: rgba(255,255,255,$contentbg_transp); border-radius: 4px; position: relative; - color: #555; + color: $font_color_darker; box-shadow: 0 0 3px #dadada; -webkit-box-shadow: 0 0 3px #dadada; -moz-box-shadow: 0 0 3px #dadada; @@ -2095,7 +2115,7 @@ section > .generic-page-wrapper, .videos-content-wrapper, background-color: rgba(255,255,255,$contentbg_transp); border-radius: 4px; position: relative; - color: #555; + color: $font_color_darker; box-shadow: 0 0 3px #dadada; -webkit-box-shadow: 0 0 3px #dadada; -moz-box-shadow: 0 0 3px #dadada; @@ -2178,7 +2198,7 @@ ul.viewcontact_wrapper > li { } .contact-entry-desc { - color: #555; + color: $font_color_darker; } .contact-entry-checkbox { margin-top: -20px; @@ -2195,7 +2215,7 @@ ul.viewcontact_wrapper > li { .contact-wrapper .contact-action-link:hover, .textcomplete-item .contact-wrapper .contact-action-link { padding: 0 5px; - color: #555; + color: $font_color_darker; border: 0; } .contact-wrapper .contact-action-link { @@ -2228,7 +2248,7 @@ ul li:hover .contact-wrapper .contact-action-link:hover { } #contact-edit-status-wrapper { border: none; - background-color: #E1F5FE; + background-color: rgba(225, 245, 254, $contentbg_transp); margin: 15px -15px; } #contact-edit-settings { @@ -2425,7 +2445,7 @@ ul li:hover .contact-wrapper .contact-action-link:hover { padding-top: 15px; } #event-nav a { - color: #555; + color: $font_color_darker; } #event-edit-form-wrapper #event-edit-time { padding: 10px 0; @@ -2482,7 +2502,7 @@ ul li:hover .contact-wrapper .contact-action-link:hover { width: 100%; padding: 0 5px 0 15px; box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset; - color: #777; + color: $font_color; position: relative; } .event-card .event-card-content .event-map-btn { @@ -2493,7 +2513,7 @@ ul li:hover .contact-wrapper .contact-action-link:hover { } .event-card .event-card-title { font-size: 14px; - color: #555; + color: $font_color_darker; line-height: 15px; font-weight: bold; margin: 0; @@ -2573,7 +2593,7 @@ ul li:hover .contact-wrapper .contact-action-link:hover { position: relative; } .photo-comment-wrapper .wall-item-content { - color: #555; + color: $font_color_darker; font-size: 13px; } .photo-comment-wrapper .comment-wwedit-wrapper, @@ -2640,7 +2660,7 @@ details.profile-jot-net[open] summary:before { /* Emulates Bootstrap display */ .settings-block { margin: 0 0 5px; - background-color: rgba(255,255,255,0.95); + background-color: rgba(255, 255, 255, $contentbg_transp); border-radius: 4px; padding: 10px 15px; box-shadow: 0 0 3px #dadada; @@ -2725,7 +2745,7 @@ ul.notif-network-list > li { .intro-wrapper button.intro-action-link:hover { padding-right: 5px; padding-left: 5px; - color: #555; + color: $font_color_darker; } ul li:hover .intro-wrapper button.intro-action-link { opacity: 0.8; @@ -2772,7 +2792,7 @@ ul.notif-network-list li.unseen { .notif-item .notif-desc-wrapper a { height: 100%; display: block; - color: #555; + color: $font_color_darker; font-size: 13px; font-weight: 600; } @@ -2793,7 +2813,7 @@ little modifications to emulate a standard page template */ background-color: rgba(255,255,255,$contentbg_transp); border-radius: 4px; position: relative; - color: #555; + color: $font_color_darker; box-shadow: 0 0 3px #dadada; -webkit-box-shadow: 0 0 3px #dadada; -moz-box-shadow: 0 0 3px #dadada; @@ -2867,7 +2887,7 @@ section.help-content-wrapper li { margin-top: 2px; border: 1px solid #cccccc; border-radius: 3px; - background-color: #fff; + background-color: $background_color; -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out; transition: border 0.15s ease-in-out, color 0.15s ease-in-out; @@ -2886,14 +2906,14 @@ section.help-content-wrapper li { padding-left: 3px; padding-top: 1px; font-size: 11px; - color: #555555; + color: $link_color; } #adminpage .addon .desc { padding-left: 10px; } .adminpage .admin-settings-action-link, .adminpage .admin-settings-action-link:hover { - color: #555; + color: $font_color_darker; } .adminpage .admin-settings-action-link:hover { opacity: 1; @@ -3066,6 +3086,11 @@ body .tread-wrapper .hovercard:hover .hover-card-content a { display: none; } +.pagination li > a, +.pager li > a { + background-color: rgba(255, 255, 255, $contentbg_transp); +} + /* * some temporary workarounds until this will solved * elsewhere (e.g. new templates) @@ -3256,7 +3281,7 @@ section .profile-match-wrapper { .fc .fc-event { background-color: #E3F2FD; border: 1px solid #BBDEFB; - color: #555; + color: $font_color_darker; } .fc .fc-month-view .fc-time, .fc .fc-listMonth-view .fc-list-item-time, diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index be814f0839..b7f222c0a2 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -702,7 +702,7 @@ function scrollToItem(elementId) { scrollTop: itemPos }, 400).promise().done( function() { // Highlight post/commenent with ID (GUID) - $el.animate(colWhite, 1000).animate(colShiny).animate(colWhite, 600); + $el.animate(colWhite, 1000).animate(colShiny).animate({backgroundColor: 'transparent'}, 600); }); } diff --git a/view/theme/frio/style.php b/view/theme/frio/style.php index 0309daf94a..dadd045805 100644 --- a/view/theme/frio/style.php +++ b/view/theme/frio/style.php @@ -123,7 +123,7 @@ if (!isset($nav_icon_hover_color)) { if ($nihc->isLight()) { $nav_icon_hover_color = '#' . $nihc->darken(10); } else { - $nav_icon_hover_color = '#' . $nihc->lighten(10); + $nav_icon_hover_color = '#' . $nihc->lighten(20); } } if (!isset($link_hover_color)) { @@ -184,7 +184,9 @@ $options = [ '$background_size_img' => $background_size_img, '$background_repeat' => $background_repeat, '$login_bg_image' => $login_bg_image, - '$login_bg_color' => $login_bg_color + '$login_bg_color' => $login_bg_color, + '$font_color_darker' => $font_color_darker ?? '#555', + '$font_color' => $font_color ?? '#777', ]; $css_tpl = file_get_contents('view/theme/frio/css/style.css'); From 998c83eacbbf96e1aebe8bae225738fd2b8d6a71 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 03:55:27 +0000 Subject: [PATCH 08/44] Avoid loop situations and connection timeouts --- src/Model/Contact/Relation.php | 2 +- src/Network/HTTPRequest.php | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Model/Contact/Relation.php b/src/Model/Contact/Relation.php index d1e51811ff..80092e0388 100644 --- a/src/Model/Contact/Relation.php +++ b/src/Model/Contact/Relation.php @@ -166,7 +166,7 @@ class Relation } if (empty($contact)) { - $contact = Contact::getByURL($url); + $contact = Contact::getByURL($url, false); } if (empty($contact)) { diff --git a/src/Network/HTTPRequest.php b/src/Network/HTTPRequest.php index 6fcd610aad..79419d38e2 100644 --- a/src/Network/HTTPRequest.php +++ b/src/Network/HTTPRequest.php @@ -137,6 +137,8 @@ class HTTPRequest implements IHTTPRequest @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']); } + @curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); + if (!empty($opts['timeout'])) { @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']); } else { @@ -238,6 +240,8 @@ class HTTPRequest implements IHTTPRequest curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); } + @curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); + if (intval($timeout)) { curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); } else { @@ -331,6 +335,7 @@ class HTTPRequest implements IHTTPRequest curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERAGENT, $this->getUserAgent()); @@ -375,6 +380,7 @@ class HTTPRequest implements IHTTPRequest curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_NOBODY, 0); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERAGENT, $this->getUserAgent()); From b5cca1ab93bfaaa15a86c05fea64a74a8e0bd834 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 18 Aug 2020 12:50:18 +0200 Subject: [PATCH 09/44] Some small performance tweaks (indexes) --- database.sql | 14 ++++++++------ src/Core/Worker.php | 2 +- src/Worker/ClearCache.php | 3 ++- static/dbstructure.config.php | 12 +++++++----- 4 files changed, 18 insertions(+), 13 deletions(-) diff --git a/database.sql b/database.sql index 5387d14c6c..e1a8f7fe7c 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2020.09-dev (Red Hot Poker) --- DB_UPDATE_VERSION 1360 +-- DB_UPDATE_VERSION 1361 -- ------------------------------------------ @@ -132,18 +132,19 @@ CREATE TABLE IF NOT EXISTS `contact` ( PRIMARY KEY(`id`), INDEX `uid_name` (`uid`,`name`(190)), INDEX `self_uid` (`self`,`uid`), - INDEX `alias_uid` (`alias`(32),`uid`), + INDEX `alias_uid` (`alias`(96),`uid`), INDEX `pending_uid` (`pending`,`uid`), INDEX `blocked_uid` (`blocked`,`uid`), INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`), INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)), - INDEX `addr_uid` (`addr`(32),`uid`), - INDEX `nurl_uid` (`nurl`(32),`uid`), + INDEX `addr_uid` (`addr`(96),`uid`), + INDEX `nurl_uid` (`nurl`(96),`uid`), INDEX `nick_uid` (`nick`(32),`uid`), - INDEX `attag_uid` (`attag`(32),`uid`), + INDEX `attag_uid` (`attag`(96),`uid`), INDEX `dfrn-id` (`dfrn-id`(64)), INDEX `issued-id` (`issued-id`(64)), INDEX `network_uid_lastupdate` (`network`,`uid`,`last-update`), + INDEX `uid_network_self_lastupdate` (`uid`,`network`,`self`,`last-update`), INDEX `uid_lastitem` (`uid`,`last-item`), INDEX `gsid` (`gsid`), FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT @@ -644,6 +645,7 @@ CREATE TABLE IF NOT EXISTS `item` ( INDEX `resource-id` (`resource-id`), INDEX `deleted_changed` (`deleted`,`changed`), INDEX `uid_wall_changed` (`uid`,`wall`,`changed`), + INDEX `uid_unseen_wall` (`uid`,`unseen`,`wall`), INDEX `mention_uid_id` (`mention`,`uid`,`id`), INDEX `uid_eventid` (`uid`,`event-id`), INDEX `icid` (`icid`), @@ -1350,6 +1352,7 @@ CREATE TABLE IF NOT EXISTS `workerqueue` ( INDEX `done_priority_created` (`done`,`priority`,`created`), INDEX `done_priority_next_try` (`done`,`priority`,`next_try`), INDEX `done_pid_next_try` (`done`,`pid`,`next_try`), + INDEX `done_pid_retrial` (`done`,`pid`,`retrial`), INDEX `done_pid_priority_created` (`done`,`pid`,`priority`,`created`) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries'; @@ -1513,7 +1516,6 @@ CREATE VIEW `owner-view` AS SELECT `contact`.`archive` AS `archive`, `contact`.`pending` AS `pending`, `contact`.`deleted` AS `deleted`, - `contact`.`rating` AS `rating`, `contact`.`unsearchable` AS `unsearchable`, `contact`.`sensitive` AS `sensitive`, `contact`.`baseurl` AS `baseurl`, diff --git a/src/Core/Worker.php b/src/Core/Worker.php index 48984f6d82..c9a8bcbdda 100644 --- a/src/Core/Worker.php +++ b/src/Core/Worker.php @@ -733,7 +733,7 @@ class Worker } } - Logger::log("Load: " . $load ."/" . $maxsysload . " - processes: " . $deferred . "/" . $active . "/" . $waiting_processes . $processlist . " - maximum: " . $queues . "/" . $maxqueues, Logger::DEBUG); + Logger::notice("Load: " . $load ."/" . $maxsysload . " - processes: " . $deferred . "/" . $active . "/" . $waiting_processes . $processlist . " - maximum: " . $queues . "/" . $maxqueues); // Are there fewer workers running as possible? Then fork a new one. if (!DI::config()->get("system", "worker_dont_fork", false) && ($queues > ($active + 1)) && self::entriesExists()) { diff --git a/src/Worker/ClearCache.php b/src/Worker/ClearCache.php index 692a462a77..d87fd46cce 100644 --- a/src/Worker/ClearCache.php +++ b/src/Worker/ClearCache.php @@ -91,7 +91,8 @@ class ClearCache DBA::e("OPTIMIZE TABLE `profile_check`"); DBA::e("OPTIMIZE TABLE `session`"); DBA::e("OPTIMIZE TABLE `tokens`"); - Logger::info('Optimize finished'); + DBA::e("OPTIMIZE TABLE `process`"); + Logger::info('Optimize finished'); } DI::config()->set('system', 'cache_last_cleared', time()); diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index b040e66ee3..b5849fb7fc 100755 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -54,7 +54,7 @@ use Friendica\Database\DBA; if (!defined('DB_UPDATE_VERSION')) { - define('DB_UPDATE_VERSION', 1360); + define('DB_UPDATE_VERSION', 1361); } return [ @@ -190,18 +190,19 @@ return [ "PRIMARY" => ["id"], "uid_name" => ["uid", "name(190)"], "self_uid" => ["self", "uid"], - "alias_uid" => ["alias(32)", "uid"], + "alias_uid" => ["alias(96)", "uid"], "pending_uid" => ["pending", "uid"], "blocked_uid" => ["blocked", "uid"], "uid_rel_network_poll" => ["uid", "rel", "network", "poll(64)", "archive"], "uid_network_batch" => ["uid", "network", "batch(64)"], - "addr_uid" => ["addr(32)", "uid"], - "nurl_uid" => ["nurl(32)", "uid"], + "addr_uid" => ["addr(96)", "uid"], + "nurl_uid" => ["nurl(96)", "uid"], "nick_uid" => ["nick(32)", "uid"], - "attag_uid" => ["attag(32)", "uid"], + "attag_uid" => ["attag(96)", "uid"], "dfrn-id" => ["dfrn-id(64)"], "issued-id" => ["issued-id(64)"], "network_uid_lastupdate" => ["network", "uid", "last-update"], + "uid_network_self_lastupdate" => ["uid", "network", "self", "last-update"], "uid_lastitem" => ["uid", "last-item"], "gsid" => ["gsid"] ] @@ -1462,6 +1463,7 @@ return [ "done_priority_created" => ["done", "priority", "created"], "done_priority_next_try" => ["done", "priority", "next_try"], "done_pid_next_try" => ["done", "pid", "next_try"], + "done_pid_retrial" => ["done", "pid", "retrial"], "done_pid_priority_created" => ["done", "pid", "priority", "created"] ] ], From 37d41323b81c0df8ade58b866ed86165957efe99 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:27:38 +0200 Subject: [PATCH 10/44] DE translation update --- view/lang/de/messages.po | 16076 ++++++++++++++++++------------------- view/lang/de/strings.php | 2881 ++++--- 2 files changed, 9463 insertions(+), 9494 deletions(-) diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index d8c14141ee..712ba2cf92 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -21,6 +21,7 @@ # hoergen , 2018-2019 # hoergen , 2018 # Hauke , 2011-2012 +# joe slam , 2020 # Johannes Schwab , 2015 # leberwurscht , 2012 # marmor , 2012 @@ -48,8 +49,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-06-15 04:06+0000\n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-18 15:25+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -58,433 +59,801 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "Standard" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Senden" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Theme-Einstellungen" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Variationen" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Ausrichtung" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Mitte" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Farbschema" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Komma-separierte Liste der Helfer-Foren" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "nicht zeigen" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "zeigen" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Stil auswählen" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Foren" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Kontakte finden" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Leute finden" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Finde" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Foren" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "Externer Link zum Forum" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "mehr anzeigen" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Schnell-Start" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Hilfe" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Hinweis" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "Farbschema auswählen" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "Farbschema kopieren oder einfügen" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "Du kannst den String mit den Farbschema Informationen mit anderen Teilen. Wenn du einen neuen Farbschema-String hier einfügst wird er für deine Einstellungen übernommen." + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Hintergrundfarbe der Navigationsleiste" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Icon Farbe in der Navigationsleiste" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Linkfarbe" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Hintergrundfarbe festlegen" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "Opazität des Hintergrunds von Beiträgen" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Hintergrundbild festlegen" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "Stil des Hintergrundbildes" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "Hintergrundbild der Login-Seite" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "Hintergrundfarbe der Login-Seite" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "Wenn die Theme-Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer." + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Gast" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Besucher" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Status" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Profil" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Bilder" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "Deine Fotos" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Videos" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "Deine Videos" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Veranstaltungen" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Netzwerk" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Nachrichten" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Private E-Mail" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Einstellungen" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Kontakte" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/bearbeiten" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "Zum Inhalt der Seite gehen" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Top Banner" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Skaliere das Hintergrundbild so, dass es die Breite der Seite einnimmt, und fülle den Rest der Seite mit der Hintergrundfarbe bei langen Seiten." + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Vollbildmodus" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Skaliere das Bild so, dass es den gesamten Bildschirm füllt. Hierfür wird entweder die Breite oder die Höhe des Bildes automatisch abgeschnitten." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Mosaik in einer Zeile" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Skaliere das Bild so, dass es in einer einzelnen Reihe, entweder horizontal oder vertikal, wiederholt wird." + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Mosaik" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Wiederhole das Bild, um den Bildschirm zu füllen." + +#: update.php:195 #, php-format -msgid "Daily posting limit of %d post reached. The post was rejected." -msgid_plural "Daily posting limit of %d posts reached. The post was rejected." -msgstr[0] "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." -msgstr[1] "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "%s: Aktualisiere die author-id und owner-id in der Thread Tabelle" -#: include/api.php:1137 +#: update.php:250 #, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." -msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." +msgid "%s: Updating post-type." +msgstr "%s: Aktualisiere Beitrags-Typ" -#: include/api.php:1151 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." - -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 -#: src/Module/Settings/Profile/Photo/Crop.php:113 -#: src/Module/Settings/Profile/Photo/Crop.php:129 -#: src/Module/Settings/Profile/Photo/Crop.php:178 -#: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: include/conversation.php:189 +#: include/conversation.php:188 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s" -#: include/conversation.php:221 src/Model/Item.php:3444 +#: include/conversation.php:220 src/Model/Item.php:3330 msgid "event" msgstr "Veranstaltung" -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 msgid "status" msgstr "Status" -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 msgid "photo" msgstr "Foto" -#: include/conversation.php:243 mod/tagger.php:121 +#: include/conversation.php:242 mod/tagger.php:122 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 msgid "Select" msgstr "Auswählen" -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 msgid "Delete" msgstr "Löschen" -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: include/conversation.php:603 src/Object/Post.php:426 +#: include/conversation.php:602 src/Object/Post.php:428 msgid "Categories:" msgstr "Kategorien:" -#: include/conversation.php:604 src/Object/Post.php:427 +#: include/conversation.php:603 src/Object/Post.php:429 msgid "Filed under:" msgstr "Abgelegt unter:" -#: include/conversation.php:611 src/Object/Post.php:452 +#: include/conversation.php:610 src/Object/Post.php:454 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: include/conversation.php:626 +#: include/conversation.php:625 msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 msgid "Please wait" msgstr "Bitte warten" -#: include/conversation.php:692 +#: include/conversation.php:691 msgid "remove" msgstr "löschen" -#: include/conversation.php:696 +#: include/conversation.php:695 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:858 src/Model/Contact.php:1277 +#: include/conversation.php:876 src/Model/Contact.php:1170 msgid "View Status" msgstr "Status anschauen" -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 msgid "View Profile" msgstr "Profil anschauen" -#: include/conversation.php:860 src/Model/Contact.php:1279 +#: include/conversation.php:878 src/Model/Contact.php:1172 msgid "View Photos" msgstr "Bilder anschauen" -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 msgid "View Contact" msgstr "Kontakt anzeigen" -#: include/conversation.php:863 src/Model/Contact.php:1283 +#: include/conversation.php:881 src/Model/Contact.php:1176 msgid "Send PM" msgstr "Private Nachricht senden" -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 msgid "Block" msgstr "Sperren" -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 #: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 msgid "Ignore" msgstr "Ignorieren" -#: include/conversation.php:869 src/Model/Contact.php:1284 +#: include/conversation.php:887 src/Model/Contact.php:1177 msgid "Poke" msgstr "Anstupsen" -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: include/conversation.php:1000 +#: include/conversation.php:1018 #, php-format msgid "%s likes this." msgstr "%s mag das." -#: include/conversation.php:1003 +#: include/conversation.php:1021 #, php-format msgid "%s doesn't like this." msgstr "%s mag das nicht." -#: include/conversation.php:1006 +#: include/conversation.php:1024 #, php-format msgid "%s attends." msgstr "%s nimmt teil." -#: include/conversation.php:1009 +#: include/conversation.php:1027 #, php-format msgid "%s doesn't attend." msgstr "%s nimmt nicht teil." -#: include/conversation.php:1012 +#: include/conversation.php:1030 #, php-format msgid "%s attends maybe." msgstr "%s nimmt eventuell teil." -#: include/conversation.php:1015 include/conversation.php:1058 +#: include/conversation.php:1033 include/conversation.php:1076 #, php-format msgid "%s reshared this." msgstr "%s hat dies geteilt" -#: include/conversation.php:1023 +#: include/conversation.php:1041 msgid "and" msgstr "und" -#: include/conversation.php:1029 +#: include/conversation.php:1047 #, php-format msgid "and %d other people" msgstr "und %dandere" -#: include/conversation.php:1037 +#: include/conversation.php:1055 #, php-format msgid "%2$d people like this" msgstr "%2$d Personen mögen das" -#: include/conversation.php:1038 +#: include/conversation.php:1056 #, php-format msgid "%s like this." msgstr "%s mögen das." -#: include/conversation.php:1041 +#: include/conversation.php:1059 #, php-format msgid "%2$d people don't like this" msgstr "%2$d Personen mögen das nicht" -#: include/conversation.php:1042 +#: include/conversation.php:1060 #, php-format msgid "%s don't like this." msgstr "%s mögen dies nicht." -#: include/conversation.php:1045 +#: include/conversation.php:1063 #, php-format msgid "%2$d people attend" msgstr "%2$d Personen nehmen teil" -#: include/conversation.php:1046 +#: include/conversation.php:1064 #, php-format msgid "%s attend." msgstr "%s nehmen teil." -#: include/conversation.php:1049 +#: include/conversation.php:1067 #, php-format msgid "%2$d people don't attend" msgstr "%2$d Personen nehmen nicht teil" -#: include/conversation.php:1050 +#: include/conversation.php:1068 #, php-format msgid "%s don't attend." msgstr "%s nehmen nicht teil." -#: include/conversation.php:1053 +#: include/conversation.php:1071 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d Personen nehmen eventuell teil" -#: include/conversation.php:1054 +#: include/conversation.php:1072 #, php-format msgid "%s attend maybe." msgstr "%s nimmt eventuell teil." -#: include/conversation.php:1057 +#: include/conversation.php:1075 #, php-format msgid "%2$d people reshared this" msgstr "%2$d Personen haben dies geteilt" -#: include/conversation.php:1087 +#: include/conversation.php:1105 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:" -#: include/conversation.php:1089 +#: include/conversation.php:1107 msgid "Tag term:" msgstr "Tag:" -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" -#: include/conversation.php:1091 +#: include/conversation.php:1109 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: include/conversation.php:1092 +#: include/conversation.php:1110 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: include/conversation.php:1124 +#: include/conversation.php:1142 msgid "New Post" msgstr "Neuer Beitrag" -#: include/conversation.php:1127 +#: include/conversation.php:1145 msgid "Share" msgstr "Teilen" -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 msgid "Loading..." msgstr "lädt..." -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 msgid "Upload photo" msgstr "Foto hochladen" -#: include/conversation.php:1130 mod/editpost.php:91 +#: include/conversation.php:1148 mod/editpost.php:91 msgid "upload photo" msgstr "Bild hochladen" -#: include/conversation.php:1131 mod/editpost.php:92 +#: include/conversation.php:1149 mod/editpost.php:92 msgid "Attach file" msgstr "Datei anhängen" -#: include/conversation.php:1132 mod/editpost.php:93 +#: include/conversation.php:1150 mod/editpost.php:93 msgid "attach file" msgstr "Datei anhängen" -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 msgid "Bold" msgstr "Fett" -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 msgid "Italic" msgstr "Kursiv" -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 msgid "Underline" msgstr "Unterstrichen" -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 msgid "Quote" msgstr "Zitat" -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 msgid "Code" msgstr "Code" -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 msgid "Image" msgstr "Bild" -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 msgid "Link" msgstr "Link" -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 msgid "Link or Media" msgstr "Link oder Mediendatei" -#: include/conversation.php:1141 mod/editpost.php:100 +#: include/conversation.php:1159 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: include/conversation.php:1142 mod/editpost.php:101 +#: include/conversation.php:1160 mod/editpost.php:101 msgid "set location" msgstr "Ort setzen" -#: include/conversation.php:1143 mod/editpost.php:102 +#: include/conversation.php:1161 mod/editpost.php:102 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: include/conversation.php:1144 mod/editpost.php:103 +#: include/conversation.php:1162 mod/editpost.php:103 msgid "clear location" msgstr "Ort löschen" -#: include/conversation.php:1146 mod/editpost.php:117 +#: include/conversation.php:1164 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "Titel setzen" -#: include/conversation.php:1148 mod/editpost.php:119 +#: include/conversation.php:1166 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: include/conversation.php:1150 mod/editpost.php:105 +#: include/conversation.php:1168 mod/editpost.php:105 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: include/conversation.php:1151 mod/editpost.php:134 +#: include/conversation.php:1169 mod/editpost.php:134 msgid "permissions" msgstr "Zugriffsrechte" -#: include/conversation.php:1160 mod/editpost.php:114 +#: include/conversation.php:1178 mod/editpost.php:114 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 msgid "Preview" msgstr "Vorschau" -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "Abbrechen" -#: include/conversation.php:1173 +#: include/conversation.php:1191 msgid "Post to Groups" msgstr "Poste an Gruppe" -#: include/conversation.php:1174 +#: include/conversation.php:1192 msgid "Post to Contacts" msgstr "Poste an Kontakte" -#: include/conversation.php:1175 +#: include/conversation.php:1193 msgid "Private post" msgstr "Privater Beitrag" -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 msgid "Message" msgstr "Nachricht" -#: include/conversation.php:1181 mod/editpost.php:133 +#: include/conversation.php:1199 mod/editpost.php:133 msgid "Browser" msgstr "Browser" -#: include/conversation.php:1183 mod/editpost.php:136 +#: include/conversation.php:1201 mod/editpost.php:136 msgid "Open Compose page" msgstr "Composer Seite öffnen" @@ -492,262 +861,262 @@ msgstr "Composer Seite öffnen" msgid "[Friendica:Notify]" msgstr "[Friendica Meldung]" -#: include/enotify.php:128 +#: include/enotify.php:140 #, php-format msgid "%s New mail received at %s" msgstr "%sNeue Nachricht auf %s empfangen" -#: include/enotify.php:130 +#: include/enotify.php:142 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat dir eine neue, private Nachricht auf %2$s geschickt." -#: include/enotify.php:131 +#: include/enotify.php:143 msgid "a private message" msgstr "eine private Nachricht" -#: include/enotify.php:131 +#: include/enotify.php:143 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte dir %2$s." -#: include/enotify.php:133 +#: include/enotify.php:145 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: include/enotify.php:177 +#: include/enotify.php:189 #, php-format msgid "%1$s replied to you on %2$s's %3$s %4$s" msgstr "%1$s hat dir auf %2$s's %3$s%4$s geantwortet" -#: include/enotify.php:179 +#: include/enotify.php:191 #, php-format msgid "%1$s tagged you on %2$s's %3$s %4$s" msgstr "%1$s hat dich auf %2$s's %3$s %4$s erwähnt" -#: include/enotify.php:181 +#: include/enotify.php:193 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s kommentierte %2$s's %3$s%4$s" -#: include/enotify.php:191 +#: include/enotify.php:203 #, php-format msgid "%1$s replied to you on your %2$s %3$s" msgstr "%1$s hat dir auf dein %2$s %3$s geantwortet" -#: include/enotify.php:193 +#: include/enotify.php:205 #, php-format msgid "%1$s tagged you on your %2$s %3$s" msgstr "%1$s erwähnte dich auf deinem %2$s %3$s" -#: include/enotify.php:195 +#: include/enotify.php:207 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s kommentierte auf deinen %2$s %3$s" -#: include/enotify.php:202 +#: include/enotify.php:214 #, php-format msgid "%1$s replied to you on their %2$s %3$s" msgstr "%1$s hat dir auf dem eigenen %2$s %3$s geantwortet" -#: include/enotify.php:204 +#: include/enotify.php:216 #, php-format msgid "%1$s tagged you on their %2$s %3$s" msgstr "%1$s hat dich auf dem eigenen %2$s %3$s erwähnt" -#: include/enotify.php:206 +#: include/enotify.php:218 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hat den eigenen %2$s %3$s kommentiert" -#: include/enotify.php:217 +#: include/enotify.php:229 #, php-format msgid "%s %s tagged you" msgstr "%s %s hat dich erwähnt" -#: include/enotify.php:219 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s erwähnte dich auf %2$s" -#: include/enotify.php:221 +#: include/enotify.php:233 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$sKommentar von %3$s auf Unterhaltung %2$d" -#: include/enotify.php:223 +#: include/enotify.php:235 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem du folgst." -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: include/enotify.php:235 +#: include/enotify.php:247 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s%s hat auf deine Pinnwand gepostet" -#: include/enotify.php:237 +#: include/enotify.php:249 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb um %2$s auf Deine Pinnwand" -#: include/enotify.php:238 +#: include/enotify.php:250 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: include/enotify.php:250 +#: include/enotify.php:262 #, php-format msgid "%s %s shared a new post" msgstr "%s%shat einen Beitrag geteilt" -#: include/enotify.php:252 +#: include/enotify.php:264 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" -#: include/enotify.php:253 +#: include/enotify.php:265 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." -#: include/enotify.php:265 +#: include/enotify.php:277 #, php-format msgid "%1$s %2$s poked you" msgstr "%1$s%2$shat dich angestubst" -#: include/enotify.php:267 +#: include/enotify.php:279 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s hat dich auf %2$s angestupst" -#: include/enotify.php:268 +#: include/enotify.php:280 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]hat dich angestupst[/url]." -#: include/enotify.php:285 +#: include/enotify.php:297 #, php-format msgid "%s %s tagged your post" msgstr "%s%s hat deinen Beitrag verschlagwortet" -#: include/enotify.php:287 +#: include/enotify.php:299 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" -#: include/enotify.php:288 +#: include/enotify.php:300 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" -#: include/enotify.php:300 +#: include/enotify.php:312 #, php-format msgid "%s Introduction received" msgstr "%sVorstellung erhalten" -#: include/enotify.php:302 +#: include/enotify.php:314 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: include/enotify.php:303 +#: include/enotify.php:315 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: include/enotify.php:308 include/enotify.php:354 +#: include/enotify.php:320 include/enotify.php:366 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst du das Profil betrachten: %s" -#: include/enotify.php:310 +#: include/enotify.php:322 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: include/enotify.php:317 +#: include/enotify.php:329 #, php-format msgid "%s A new person is sharing with you" msgstr "%sEine neue Person teilt nun mit dir" -#: include/enotify.php:319 include/enotify.php:320 +#: include/enotify.php:331 include/enotify.php:332 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit dir auf %2$s" -#: include/enotify.php:327 +#: include/enotify.php:339 #, php-format msgid "%s You have a new follower" msgstr "%sDu hast einen neuen Kontakt" -#: include/enotify.php:329 include/enotify.php:330 +#: include/enotify.php:341 include/enotify.php:342 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: include/enotify.php:343 +#: include/enotify.php:355 #, php-format msgid "%s Friend suggestion received" msgstr "%sKontaktvorschlag erhalten" -#: include/enotify.php:345 +#: include/enotify.php:357 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten" -#: include/enotify.php:346 +#: include/enotify.php:358 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten." -#: include/enotify.php:352 +#: include/enotify.php:364 msgid "Name:" msgstr "Name:" -#: include/enotify.php:353 +#: include/enotify.php:365 msgid "Photo:" msgstr "Foto:" -#: include/enotify.php:356 +#: include/enotify.php:368 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: include/enotify.php:364 include/enotify.php:379 +#: include/enotify.php:376 include/enotify.php:391 #, php-format msgid "%s Connection accepted" msgstr "%sKontaktanfrage bestätigt" -#: include/enotify.php:366 include/enotify.php:381 +#: include/enotify.php:378 include/enotify.php:393 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: include/enotify.php:367 include/enotify.php:382 +#: include/enotify.php:379 include/enotify.php:394 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: include/enotify.php:372 +#: include/enotify.php:384 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und E-Mails ohne Einschränkungen austauschen." -#: include/enotify.php:374 +#: include/enotify.php:386 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: include/enotify.php:387 +#: include/enotify.php:399 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -756,37 +1125,37 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: include/enotify.php:389 +#: include/enotify.php:401 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: include/enotify.php:391 +#: include/enotify.php:403 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: include/enotify.php:401 mod/removeme.php:63 +#: include/enotify.php:413 mod/removeme.php:63 msgid "[Friendica System Notify]" msgstr "[Friendica-Systembenachrichtigung]" -#: include/enotify.php:401 +#: include/enotify.php:413 msgid "registration request" msgstr "Registrierungsanfrage" -#: include/enotify.php:403 +#: include/enotify.php:415 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: include/enotify.php:404 +#: include/enotify.php:416 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: include/enotify.php:409 +#: include/enotify.php:421 #, php-format msgid "" "Full Name:\t%s\n" @@ -794,665 +1163,1390 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Kompletter Name: %s\nURL der Seite: %s\nLogin Name: %s(%s)" -#: include/enotify.php:415 +#: include/enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." +#: include/api.php:1127 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." +msgstr[1] "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "Möchtest du wirklich dieses Item löschen?" +#: include/api.php:1141 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." +msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "Ja" +#: include/api.php:1155 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "Zugriff verweigert." +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 +#: src/Module/Settings/Profile/Photo/Crop.php:113 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 +msgid "Profile Photos" +msgstr "Profilbilder" -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" - -#: mod/api.php:101 -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:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Bitte melde dich an, um fortzufahren." - -#: mod/api.php:124 -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/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "Nein" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Zugriff verweigert." -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "Ungültige Anfrage." -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "Veranstaltungen" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "Ansehen" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "Vorherige" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "Nächste" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "Heute" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "Monat" - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "Woche" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "Tag" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "Liste" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "Nutzer nicht gefunden" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "Dieses Kalenderformat wird nicht unterstützt." - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "Keine exportierbaren Daten gefunden" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "Kalender" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "Gemeinsame Kontakte" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Kontakt nicht gefunden." -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Zugriff verweigert." + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, 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:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "Kein Empfänger." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." + +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "An:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: mod/dfrn_confirm.php:140 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:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "Antwort der Gegenstelle unverständlich." -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Unerwartete Antwort der Gegenstelle: " -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Bestätigung erfolgreich abgeschlossen." -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 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:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "Gegenstelle meldet: " -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "Für '%s' wurde kein Nutzer gefunden" -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 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:410 +#: mod/dfrn_confirm.php:409 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:426 +#: mod/dfrn_confirm.php:425 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:440 +#: mod/dfrn_confirm.php:439 #, 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:456 +#: mod/dfrn_confirm.php:455 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:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 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:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "Video ansehen" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu." + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "erste" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "nächste" + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Aktualisierungen" + +#: mod/settings.php:200 +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:229 +msgid "Contact CSV file upload error" +msgstr "Fehler beim Hochladen der Kontakt CSV Datei" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "Kontakte wurden importiert." + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "Die Passwörter stimmen nicht überein." + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Passwort geändert." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "Passwort unverändert." + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "Falsches Passwort" + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "Ungültige E-Mail-Adresse." + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " + +#: mod/settings.php:422 +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:425 +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:442 +msgid "Settings were not updated." +msgstr "Einstellungen nicht aktualisiert" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Programm hinzufügen" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Name" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Umleiten" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "Du kannst dieses Programm nicht bearbeiten." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Bearbeiten" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Anwenderschlüssel beginnt mit" + +#: mod/settings.php:562 +msgid "No name" +msgstr "Kein Name" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "Keine Addon-Einstellungen konfiguriert" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "Addon Einstellungen" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "eingeschaltet" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "ausgeschaltet" + +#: mod/settings.php:629 mod/settings.php:630 +#, 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:630 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "Keine" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Soziale Netzwerke" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "Ausschließlich Unterhaltungen von meinen Kontakten anzeigen" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "Wenn neue Kommentare empfangen werden führt das System eine Vervollständigung der Unterhaltung durch. Die hat den Nebeneffekt, dass Unterhaltungen in denen einer deiner Kontakte kommentiert haben, die aber nicht von einem deiner Kontakte begonnen wurden in deinem Netzwerk-Stream angezeigt werden können. Diese Option unterbindet dieses Verhalten. Ist sie aktiviert, wirst du ausschließlich die Unterhaltungen angezeigt bekommen, die von deinen Kontakten begonnen wurden." + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "Inhaltswarnung ausschalten" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Benutzer in Netzwerken wie Mastodon oder Pleroma können ein Inhaltswarnfeld einstellen, das ihren Beitrag standardmäßig ausblendet. Dies deaktiviert das automatische Zusammenklappen und setzt die Inhaltswarnung als Beitragstitel. Beeinflusst keine anderen Inhaltsfilterungen, die du eventuell eingerichtet hast." + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Intelligentes Link-Kürzen ausschalten" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zu gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "Link Titel hinzufügen" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Wenn du eine Nachricht eines unbekannten OStatus-Nutzers bekommst, entscheidet diese Option, wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Voreingestellte Gruppe für OStatus-Kontakte" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Dein alter GNU Social-Account" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Wenn du deinen alten GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "OStatus-Abonnements reparieren" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" + +#: mod/settings.php:692 +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:693 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail-Check" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "IMAP-Port:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Sicherheit:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Als gelesen markieren" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Kontenarten" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Unterarten der persönlichen Seite" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Unterarten des Gemeinschaftsforums" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Persönliche Seite" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Konto für ein persönliches Profil." + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Organisationsseite" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "Nachrichtenseite" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Gemeinschaftsforum" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Konto für Diskussionsforen. " + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Öffentliches Forum" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Bestätigt alle Kontaktanfragen automatisch." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde-Seite" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Privates Forum [Versuchsstadium]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Kontaktanfragen müssen manuell bestätigt werden." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +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:814 +msgid "Publish your profile in your local site directory?" +msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein." + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden." + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Erlaubte Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen, Doppelpunkten (:) und akzentuierten Buchstaben." + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Aktuelles Passwort:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Passwort:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "OpenID URL löschen" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "E-Mail-Adresse:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Deine Zeitzone:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Deine Sprache:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken" + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Privatsphäre-Einstellungen" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "(um SPAM zu vermeiden)" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dei Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest." + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Deine öffentlichen Beiträge und Kommentare werden weiterhin sichtbar sein." + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "Öffentliche Beiträge nicht listen" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen." + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "Alle geposteten Bilder zugreifbar machen" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Diese Option macht jedes veröffentlichte Bild über den direkten Link zugänglich. Dies ist eine Problemumgehung für das Problem, dass die meisten anderen Netzwerke keine Berechtigungen für Bilder verarbeiten können. Nicht öffentliche Bilder sind in Ihren Fotoalben jedoch immer noch nicht für die Öffentlichkeit sichtbar." + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt." + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen." + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind." + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Standard-Zugriffsrechte für Beiträge" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "Verfalls-Einstellungen" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" + +#: mod/settings.php:901 +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:902 +msgid "Expire posts" +msgstr "Beiträge verfallen lassen" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "Persönliche Notizen verfallen lassen" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen." + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "Markierte Beiträge verfallen lassen" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen." + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "Fotos verfallen lassen" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "Wenn aktiviert, verfallen Fotos." + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "Nur Beiträge anderer verfallen lassen." + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts." + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Benachrichtigungs-E-Mail senden, wenn:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "– du eine Kontaktanfrage erhältst" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "– jemand etwas auf Deine Pinnwand schreibt" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "– jemand auch einen Kommentar verfasst" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "– du eine private Nachricht erhältst" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "– du eine Empfehlung erhältst" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "– du in einem Beitrag erwähnt wirst" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Desktop-Benachrichtigungen einschalten" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Desktop-Benachrichtigungen einschalten" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs-E-Mail als Rein-Text." + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Detaillierte Benachrichtigungen anzeigen" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt." + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Verhalten dieses Kontos in bestimmten Situationen:" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "Kontakte Importieren" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "Datei hochladen" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Umziehen" + +#: mod/settings.php:939 +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:940 +msgid "Resend relocate message to contacts" +msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit dir in Kontakt treten" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Gemeinsame Kontakte" + +#: mod/network.php:304 +msgid "No items found" +msgstr "Keine Einträge gefunden" + +#: mod/network.php:547 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Gruppe: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "Neueste Aktivität" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "Sortiere nach neueste Aktivität" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "Neueste Beiträge" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "Nach Empfangsdatum der Beiträge sortiert" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Persönlich" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um dich geht" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Erneuern der OStatus-Abonements" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Fehler" +msgstr[1] "Fehler" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "Erledigt" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "Du folgst diesem Kontakt." + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt." + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Verbindung lösen/Nicht mehr folgen" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "Profil URL" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "Neue Nachricht" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "Möchtest du diese Nachricht wirklich löschen?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Ja" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "Unterhaltung nicht gefunden." + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "Nachricht wurde nicht gelöscht" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "Unterhaltung wurde nicht entfernt" + +#: mod/message.php:300 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - H:i" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:426 +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:430 +msgid "Send Reply" +msgstr "Antwort senden" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Unbekannter Absender - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s und du" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "OStatus-Kontakten folgen" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "Keine Kontakte gefunden." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "Konnte die Kontaktinformationen nicht einholen." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "Erfolg" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "Fehlgeschlagen" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "Ignoriert" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s heißt %2$s herzlich willkommen" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "Gelöschter Nutzeraccount" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -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:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers an der angegebenen Profiladresse gefunden werden." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild an der angegebenen Profiladresse." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, 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:180 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Kontaktanfragen erhalten." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: mod/dfrn_request.php:266 -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:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Du hast dich hier bereits vorgestellt." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob du bereits mit %s in Kontakt stehst." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "Blockierte Domain" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. " +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden." -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "Die ID des Users lautet %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: mod/removeme.php:100 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." +"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/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Bestätigen" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Bitte gib dein Passwort zur Verifikation ein:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Entfernen" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "Kontaktanfrage" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Gib entweder deinen Webfinger (user@domain.tld) oder deine Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird (z.B. von Diaspora*) musst du von deinem System aus %s folgen " +"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/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten." - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "Deine Webfinger Adresse oder Profil-URL" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "%skennt dich" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." msgstr "Der Feed für diesen Beitrag ist nicht verfügbar." -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Ungültige Anfrage" -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Beitrag bearbeiten" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "Speichern" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "Einen Link einfügen" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" -#: mod/editpost.php:95 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:523 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "Ort:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Senden" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "Allgemein" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "Erweitert" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "Entfernen der Veranstaltung fehlgeschlagen" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "Veranstaltung enfternt" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "Hochladen" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "Dateien" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Der Kontakt konnte nicht hinzugefügt werden." - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "Tags:" - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "Beitrag aktualisiert." - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "Eintrag wurde nicht gespeichert" - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "Eintrag konnte nicht geholt werden." - -#: mod/item.php:831 -msgid "Post published." -msgstr "Beitrag veröffentlicht." - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "Folgende" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "Beidseitige Freundschaft" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1554,6 +2648,10 @@ msgid "" "successful login." msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "Dein Passwort wurde zurück gesetzt." + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1584,1400 +2682,227 @@ msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin msgid "Your password has been changed at %s" msgstr "Auf %s wurde dein Passwort geändert" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu." +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "Verbinden" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +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/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "erste" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers an der angegebenen Profiladresse gefunden werden." -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "nächste" +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild an der angegebenen Profiladresse." -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: mod/match.php:149 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "Neue Nachricht" - -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "Nachrichten" - -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "Möchtest du diese Nachricht wirklich löschen?" - -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "Unterhaltung nicht gefunden." - -#: mod/message.php:186 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "An:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:367 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:421 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - H:i" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:440 -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:444 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/message.php:527 +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 #, php-format -msgid "Unknown sender - %s" -msgstr "Unbekannter Absender - %s" +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/message.php:529 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: mod/dfrn_request.php:264 #, php-format -msgid "You and %s" -msgstr "Du und %s" +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Kontaktanfragen erhalten." -#: mod/message.php:531 +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: mod/dfrn_request.php:266 +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:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "Du hast dich hier bereits vorgestellt." + +#: mod/dfrn_request.php:329 #, php-format -msgid "%s and You" -msgstr "%s und du" +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob du bereits mit %s in Kontakt stehst." -#: mod/message.php:558 +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Blockierte Domain" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. " + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." + +#: mod/dfrn_request.php:504 +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:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:531 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." -#: mod/network.php:568 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/network.php:593 +#: mod/dfrn_request.php:532 #, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Kontaktanfrage" -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "Neueste Aktivität" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "Sortiere nach neueste Aktivität" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "Neueste Beiträge" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "Nach Empfangsdatum der Beiträge sortiert" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "Persönlich" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um dich geht" - -#: mod/network.php:930 -msgid "New" -msgstr "Neue" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:951 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "OStatus-Kontakten folgen" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Keine Kontakte gefunden." - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Konnte die Kontaktinformationen nicht einholen." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Erledigt" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "Erfolg" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "Fehlgeschlagen" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "Ignoriert" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "jeder" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "Album wurde erfolgreich gelöscht." - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "Album ist leer." - -#: mod/photos.php:591 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:591 -#, 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:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut." - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "Bilddatei konnte nicht gefunden werden." - -#: mod/photos.php:700 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." - -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "oder wähle ein bestehendes Album:" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/photos.php:1050 -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:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "Album löschen" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1145 -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:1147 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest du wirklich dieses Foto löschen?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "Foto löschen" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "[Zu entfernende Tags auswählen]" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "Das bist du" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "Kommentar" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "Karte" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit dir in Kontakt treten" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "Anstupsen" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "Empfänger" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst du mit dem Empfänger machen:" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Gelöschter Nutzeraccount" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "Die ID des Users lautet %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: mod/removeme.php:100 -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:101 -msgid "Please enter your password for verification:" -msgstr "Bitte gib dein Passwort zur Verifikation ein:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Erneuern der OStatus-Abonements" - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Fehler" -msgstr[1] "Fehler" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "Aktualisierungen" - -#: mod/settings.php:201 -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:206 -msgid "Email settings updated." -msgstr "E-Mail Einstellungen bearbeitet." - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "Features aktualisiert" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "Fehler beim Hochladen der Kontakt CSV Datei" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "Kontakte wurden importiert." - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "Die Passwörter stimmen nicht überein." - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "Passwort geändert." - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "Passwort unverändert." - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "Falsches Passwort" - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: mod/settings.php:427 -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:430 -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:447 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "Name" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "Umleiten" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "Bearbeiten" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: mod/settings.php:570 -msgid "No name" -msgstr "Kein Name" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "Keine Addon-Einstellungen konfiguriert" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "Addon Einstellungen" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:637 mod/settings.php:638 -#, 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:638 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "Ausschließlich Unterhaltungen von meinen Kontakten anzeigen" - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "Wenn neue Kommentare empfangen werden führt das System eine Vervollständigung der Unterhaltung durch. Die hat den Nebeneffekt, dass Unterhaltungen in denen einer deiner Kontakte kommentiert haben, die aber nicht von einem deiner Kontakte begonnen wurden in deinem Netzwerk-Stream angezeigt werden können. Diese Option unterbindet dieses Verhalten. Ist sie aktiviert, wirst du ausschließlich die Unterhaltungen angezeigt bekommen, die von deinen Kontakten begonnen wurden." - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "Inhaltswarnung ausschalten" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Benutzer in Netzwerken wie Mastodon oder Pleroma können ein Inhaltswarnfeld einstellen, das ihren Beitrag standardmäßig ausblendet. Dies deaktiviert das automatische Zusammenklappen und setzt die Inhaltswarnung als Beitragstitel. Beeinflusst keine anderen Inhaltsfilterungen, die du eventuell eingerichtet hast." - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "Intelligentes Link-Kürzen ausschalten" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zu gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "Link Titel hinzufügen" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Wenn du eine Nachricht eines unbekannten OStatus-Nutzers bekommst, entscheidet diese Option, wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "Voreingestellte Gruppe für OStatus-Kontakte" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "Dein alter GNU Social-Account" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Wenn du deinen alten GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "OStatus-Abonnements reparieren" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:700 -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:701 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail-Check" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "Kontenarten" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "Unterarten der persönlichen Seite" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "Unterarten des Gemeinschaftsforums" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Persönliche Seite" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "Konto für ein persönliches Profil." - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Organisationsseite" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt." - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "Nachrichtenseite" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt." - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Gemeinschaftsforum" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "Konto für Diskussionsforen. " - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden." - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt." - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Öffentliches Forum" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "Bestätigt alle Kontaktanfragen automatisch." - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde-Seite" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt." - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "Kontaktanfragen müssen manuell bestätigt werden." - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -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:822 -msgid "Publish your profile in your local site directory?" -msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:643 #, php-format msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein." +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Gib entweder deinen Webfinger (user@domain.tld) oder deine Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird (z.B. von Diaspora*) musst du von deinem System aus %s folgen " -#: mod/settings.php:828 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden." +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." +msgstr "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten." -#: mod/settings.php:834 +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "Deine Webfinger Adresse oder Profil-URL" + +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." +msgid "%s knows you" +msgstr "%skennt dich" -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "Kontoeinstellungen" +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "Neues Passwort:" +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" -#: mod/settings.php:874 +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Bitte melde dich an, um fortzufahren." + +#: mod/api.php:124 msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Erlaubte Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen, Doppelpunkten (:) und akzentuierten Buchstaben." - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "Passwort:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "OpenID URL löschen" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "Deine Sprache:" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken" - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" -msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" - -#: mod/settings.php:894 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dei Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." - -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" - -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest." - -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Deine öffentlichen Beiträge und Kommentare werden weiterhin sichtbar sein." - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "Öffentliche Beiträge nicht listen" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen." - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "Alle geposteten Bilder zugreifbar machen" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Diese Option macht jedes veröffentlichte Bild über den direkten Link zugänglich. Dies ist eine Problemumgehung für das Problem, dass die meisten anderen Netzwerke keine Berechtigungen für Bilder verarbeiten können. Nicht öffentliche Bilder sind in Ihren Fotoalben jedoch immer noch nicht für die Öffentlichkeit sichtbar." - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt." - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen." - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind." - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "Verfalls-Einstellungen" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: mod/settings.php:909 -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:910 -msgid "Expire posts" -msgstr "Beiträge verfallen lassen" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "Persönliche Notizen verfallen lassen" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen." - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "Markierte Beiträge verfallen lassen" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen." - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "Fotos verfallen lassen" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "Wenn aktiviert, verfallen Fotos." - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "Nur Beiträge anderer verfallen lassen." - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts." - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden, wenn:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "– du eine Kontaktanfrage erhältst" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "– du eine private Nachricht erhältst" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "– du eine Empfehlung erhältst" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "– du in einem Beitrag erwähnt wirst" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst" - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "Desktop-Benachrichtigungen einschalten" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "Desktop-Benachrichtigungen einschalten" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs-E-Mail als Rein-Text." - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "Detaillierte Benachrichtigungen anzeigen" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt." - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "Kontakte Importieren" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "Datei hochladen" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "Umziehen" - -#: mod/settings.php:947 -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:948 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "Kontaktvorschlag erfolgreich ignoriert." - -#: mod/suggest.php:67 -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/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "Tag(s) entfernt" - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "Entfernen" +"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/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "Nein" + +#: mod/wall_attach.php:105 +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:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast du versucht, eine leere Datei hochzuladen?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Die Datei ist größer als das erlaubte Limit von %s" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:710 +msgid "Post updated." +msgstr "Beitrag aktualisiert." + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "Eintrag wurde nicht gespeichert" + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "Eintrag konnte nicht geholt werden." + +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "Möchtest du wirklich dieses Item löschen?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." @@ -3024,96 +2949,471 @@ msgid "" "select \"Export account\"" msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." -msgstr "Du folgst diesem Kontakt." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "Benutzer nicht gefunden." -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt." +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "Ansehen" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "Kontakt wird nicht mehr gefolgt" +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Vorherige" -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "Verbindung lösen/Nicht mehr folgen" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Nächste" -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "Heute" -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "Video ansehen" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "Monat" -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Neueste Videos" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "Woche" -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "Tag" -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "Liste" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "Nutzer nicht gefunden" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "Dieses Kalenderformat wird nicht unterstützt." + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "Keine exportierbaren Daten gefunden" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "Kalender" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Beitrag bearbeiten" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Speichern" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "Weblink" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "Video-Link" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "Audio-Link" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Benötigt" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Ort:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Allgemein" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Erweitert" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Entfernen der Veranstaltung fehlgeschlagen" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "Der Kontakt konnte nicht hinzugefügt werden." + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Tags:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Hochladen" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Dateien" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "jeder" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "Album wurde erfolgreich gelöscht." + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "Album ist leer." + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "Das Foto konnte nicht gelöscht werden." + +#: mod/photos.php:583 +msgid "a photo" +msgstr "einem Foto" + +#: mod/photos.php:583 #, 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." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut." -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "Kein Empfänger." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "Bilddatei konnte nicht gefunden werden." -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 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." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "Ungültige Anfrage" +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: mod/wall_attach.php:105 -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/photos.php:848 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast du versucht, eine leere Datei hochzuladen?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Bilder hochladen" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Die Datei ist größer als das erlaubte Limit von %s" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "Name des neuen Albums: " -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "oder wähle ein bestehendes Album:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/photos.php:1042 +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:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Album löschen" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "Album löschen" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1137 +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:1139 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest du wirklich dieses Foto löschen?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "Foto löschen" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[Zu entfernende Tags auswählen]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "Das bist du" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Kommentar" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Karte" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "Du musst angemeldet sein, um Addons benutzen zu können." + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Diesen Beitrag löschen?" + +#: src/App/Page.php:298 +msgid "toggle mobile" +msgstr "mobile Ansicht umschalten" #: src/App/Authentication.php:210 src/App/Authentication.php:262 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 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." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" @@ -3130,850 +3430,114 @@ msgstr "Willkommen %s" msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "Willkommen zurück %s" - -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "Du musst angemeldet sein, um Addons benutzen zu können." - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Diesen Beitrag löschen?" - -#: src/App/Page.php:298 -msgid "toggle mobile" -msgstr "mobile Ansicht umschalten" - -#: src/App/Router.php:209 +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Diese Methode ist in diesem Modul nicht erlaubt. Erlaubte Methoden sind: %s" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Seite nicht gefunden." -#: src/App.php:326 -msgid "No system theme config value set." -msgstr "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt." +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "Es gibt keine MyISAM oder InnoDB Tabellem mit dem Antelope Dateiformat." -#: src/BaseModule.php:150 +#: src/Database/DBStructure.php:93 +#, php-format 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)." +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" -#: src/Console/ArchiveContact.php:105 +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Fehler beim Ändern der Datenbank aufgetreten" + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." +msgstr "Es läuft bereits ein anderes Datenbank Update" + +#: src/Database/DBStructure.php:300 #, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Für die URL (%s) konnte kein nicht-archivierter Kontakt gefunden werden" +msgid "%s: Database update" +msgstr "%s: Datenbank Aktualisierung" -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "Die Kontakteinträge wurden archiviert." - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Database/DBStructure.php:600 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden" +msgid "%s: updating %s table." +msgstr "%s: aktualisiere Tabelle %s" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "Der Kontakt wurde von diesem Knoten geblockt" - -#: src/Console/PostUpdate.php:87 +#: src/Database/Database.php:659 src/Database/Database.php:762 #, php-format -msgid "Post update version number has been set to %s." -msgstr "Die Post-Update-Versionsnummer wurde auf %s gesetzt." +msgid "Database error %d \"%s\" at \"%s\"" +msgstr "Datenbank Fehler %d \"%s\" auf \"%s\"" -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Überprüfe ausstehende Update-Aktionen" - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Erledigt." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Ausstehende Post-Updates ausführen" - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Alle ausstehenden Post-Updates wurden ausgeführt." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Neues Passwort eingeben:" - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Nutzername angeben" - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "Spitzname angeben:" - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "E-Mail Adresse angeben:" - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Sprache angeben (optional):" - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "Benutzer wartet nicht." - -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "\"yes\" eingeben um %s zu löschen" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "neuer" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "älter" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "immer wieder" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "Stündlich" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "Täglich" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "Wöchentlich" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "Monatlich" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "E-Mail" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "Diaspora" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zott" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" -msgstr "Discourse" - -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "Diaspora Connector" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "GNU Social Connector" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" -msgstr "%s (via %s)" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "Allgemeine Features" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Aufnahmeort" - -#: src/Content/Feature.php:98 +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "Öffentlichen Kalender exportieren" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "Die Template Engine kann nicht ohne einen Namen registriert werden." -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "Möglichkeit für Besucher, den öffentlichen Kalender herunter zu laden" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "Template Engine wurde nicht registriert!" -#: src/Content/Feature.php:100 -msgid "Trending Tags" -msgstr "Trending Tags" +#: src/Core/Update.php:215 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: src/Content/Feature.php:100 +#: src/Core/Update.php:280 +#, php-format msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Auf der Gemeinschaftsseite ein Widget mit den meist benutzten Tags in öffentlichen Beiträgen anzeigen." +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "Beitragserstellung-Features" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" - -#: src/Content/Feature.php:106 +#: src/Core/Update.php:286 +#, php-format msgid "" -"Add/remove mention when a forum 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." +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" -msgstr "Explizite Erwähnungen" +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "[Friendica-Benachrichtigung]: Datenbank Update" -#: src/Content/Feature.php:107 +#: src/Core/Update.php:320 +#, php-format msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Füge Erwähnungen zum Kommentarfeld hinzu, um manuell über die explizite Erwähnung von Gesprächsteilnehmern zu entscheiden." - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "Netzwerk-Seitenleiste" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "Archiv" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, die Beiträge nach Datumsbereichen zu sortieren" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" -msgstr "Protokoll-Filter" - -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Aktiviere Widget, um Netzwerkbeiträge nur von ausgesuchten Protokollen anzuzeigen" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "Netzwerk-Reiter" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" - -#: src/Content/Feature.php:120 -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" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" - -#: src/Content/Feature.php:121 -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" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "Beitragskategorien" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "Erweiterte Profil-Einstellungen" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "Zeige Foren" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite" - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "Schlagwortwolke" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "Mitgliedschaftsdatum anzeigen" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "Das Datum der Registrierung deines Accounts im Profil anzeigen" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "Foren" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "Externer Link zum Forum" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "mehr anzeigen" - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "Geh zurück" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "Abmelden" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "Anmeldung" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "Anmelden" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "Status" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "Profil" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "Deine Fotos" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "Videos" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "Deine Videos" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "Pinnwand" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "Homepage" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "Registrieren" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "Hilfe" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "Apps" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "Zusätzliche Anwendungen, Dienstprogramme, Spiele" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "Suche" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "Volltext" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "Tags" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "Kontakte" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "Gemeinschaft" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "Unterhaltungen auf diesem und anderen Servern" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "Verzeichnis" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "Information" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica-Instanz" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "Netzwerk" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "Private E-Mail" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "Eingang" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "Ausgang" - -#: src/Content/Nav.php:274 -msgid "Accounts" -msgstr "Nutzerkonten" - -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "Einstellungen" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/bearbeiten" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "Administration" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "Navigation" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "Sitemap" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "vorige" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "letzte" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: src/Content/Text/BBCode.php:1047 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s%3$s" - -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "Zum Öffnen/Schließen klicken" - -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "Ungültiges Quell-Protokoll" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "Ungültiges Link-Protokoll" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "lade weitere Einträge..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "Das Ende" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "Folge" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "Exportieren" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "Kalender als ical exportieren" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "Kalender als csv exportieren" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "Keine Kontakte" - -#: src/Content/Widget/ContactBlock.php:104 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" - -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "Begriff entfernen" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Trending Tags (%d Stunde)" -msgstr[1] "Trending Tags (%d Stunden)" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "mehr Trending Tags" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: src/Content/Widget.php:72 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "Leute finden" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "Finde" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Gruppen" - -#: src/Content/Widget.php:220 -msgid "Everyone" -msgstr "Jeder" - -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "Gefolgte" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "Beidseitige Freundschaft" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "Beziehungen" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "Alle Kontakte" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "Protokolle" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "Alle Protokolle" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "Alles" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "Kategorien" - -#: src/Content/Widget.php:449 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n \t\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert." #: src/Core/ACL.php:155 msgid "Yourself" msgstr "Du selbst" +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "Folgende" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "Beidseitige Freundschaft" + #: src/Core/ACL.php:281 msgid "Post to Email" msgstr "An E-Mail senden" @@ -4011,409 +3575,409 @@ msgstr "Ausgenommen:" msgid "Connectors" msgstr "Connectoren" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Die Datenbankkonfigurationsdatei \"config/local.config.php\" konnte nicht erstellt werden. Um eine Konfigurationsdatei in Ihrem Webserver-Verzeichnis zu erstellen, gehe wie folgt vor." -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 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." -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "Lies bitte die \"INSTALL.txt\"." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 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." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" -msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker-Setup'" +msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker-Setup'" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "Pfad zu PHP" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 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." -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "Kommandozeilen-PHP" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 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)" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "Gefundene PHP Version:" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "PHP CLI Binary" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 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." -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 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" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 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." -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "Schlüssel erzeugen" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 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." -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert." -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "PDO oder MySQLi PHP Modul" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert." -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "XML PHP Modul" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "PHP: libCurl-Modul" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "PHP: GD-Grafikmodul" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 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." -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "PHP: OpenSSL-Modul" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "PHP: mb_string-Modul" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: mb_string PHP Module wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "PHP iconv Modul" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "PHP POSIX Modul" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "Fehler POSIX PHP Modul erforderlich, aber nicht installiert." -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "PHP JASON Modul" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "Fehler: Das JSON PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" msgstr "PHP Datei Informations-Modul" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "Fehler: Das Datei Informations PHP Modul ist nicht installiert." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Das Installationsprogramm muss in der Lage sein, eine Datei namens \"local.config.php\" im Ordner \"config\" Ihres Webservers zu erstellen, ist aber nicht in der Lage dazu." -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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." -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Am Ende dieser Prozedur bekommst du einen Text, der in der local.config.php im Friendica \"config\" Ordner gespeichert werden muss." -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 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." -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" msgstr "config/local.config.php ist schreibbar" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 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." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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." -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 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." -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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 für die darin enthaltenen Template-Dateien (.tpl)." -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "view/smarty3 ist schreibbar" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Vergewissere dich, dass du .htaccess-dist nach.htaccess kopiert hast." -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" msgstr "Fehlermeldung von Curl während des Ladens" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "URL rewrite funktioniert" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagicx PHP Erweiterung ist nicht installiert." -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP Erweiterung ist installiert" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick unterstützt GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "Die Datenbank wird bereits verwendet." -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "Verbindung zur Datenbank gescheitert." -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "Montag" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "Dienstag" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "Mittwoch" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "Donnerstag" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "Freitag" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "Samstag" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "Sonntag" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "Januar" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "Februar" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "März" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "April" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "August" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "September" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "November" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "Dezember" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "Mo" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "Di" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "Mi" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "Do" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "Fr" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "Sa" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "So" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "März" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "Juli" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "Aug" @@ -4421,15 +3985,15 @@ msgstr "Aug" msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "Dez" @@ -4481,39 +4045,6 @@ msgstr "eine Abfuhr erteilen" msgid "rebuffed" msgstr "abfuhrerteilte" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "[Friendica-Benachrichtigung]: Datenbank Update" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n \t\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert." - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Fehler beim Verarbeiten der Account-Datei" @@ -4546,41 +4077,405 @@ msgstr "Fehler beim Anlegen des Nutzer-Profils" msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "Es gibt keine MyISAM oder InnoDB Tabellem mit dem Antelope Dateiformat." +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Legacy-Moduldatei nicht gefunden: %s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "Fehler beim Ändern der Datenbank aufgetreten" - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" -msgstr "%s: Datenbank Aktualisierung" +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" -#: src/Database/DBStructure.php:546 +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." + +#: src/Object/EMail/ItemCCEMail.php:46 #, php-format -msgid "%s: updating %s table." -msgstr "%s: aktualisiere Tabelle %s" +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Private Nachricht" + +#: src/Object/Post.php:213 +msgid "pinned item" +msgstr "Angehefteter Beitrag" + +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "Lokal löschen" + +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "Global löschen" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "Lokal entfernen" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "Ich werde eventuell teilnehmen" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "Thread ignorieren" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "anheften" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "losmachen" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "Angeheftet Status ändern" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "angeheftet" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "markieren" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "Markierung entfernen" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "markiert" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "mag ich" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "mag ich nicht" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Weitersagen" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "Teilen" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "%s (Empfangen %s)" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "Kommentiere diesen Beitrag von deinem System aus" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "Entfernter Kommentar" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "Pushed" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "Pulled" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "zu" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "via" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "Antworte %s" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "Mehr" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "Die Benachrichtigungsaufgabe ist ausstehend" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "Die Auslieferung an Remote-Server steht noch aus" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "Die Auslieferung an Remote-Server ist unterwegs" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "Die Zustellung an Remote-Server ist fast erledigt" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "Die Zustellung an die Remote-Server ist erledigt" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "Zeige mehr" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "Zeige weniger" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Für die URL (%s) konnte kein nicht-archivierter Kontakt gefunden werden" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "Die Kontakteinträge wurden archiviert." + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "Der Kontakt wurde von diesem Knoten geblockt" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "Neues Passwort eingeben:" + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "Nutzername angeben" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "Spitzname angeben:" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "E-Mail Adresse angeben:" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "Sprache angeben (optional):" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "Benutzer wartet nicht." + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "User wurde bereits zum Löschen ausgewählt" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "\"yes\" eingeben um %s zu löschen" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "Löschvorgang abgebrochen." + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Die Post-Update-Versionsnummer wurde auf %s gesetzt." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Überprüfe ausstehende Update-Aktionen" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Erledigt." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Ausstehende Post-Updates ausführen" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Alle ausstehenden Post-Updates wurden ausgeführt." + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "Das Verzeichnis view/smarty3/ muss für den Web-Server beschreibbar sein." + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Heimatort:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "Familienstand:" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "Mit:" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "Seit:" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Likes:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Zusammenfassung" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Fernsehen" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt." + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "Kontaktvorschlag" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "Kontakt-/Freundschaftsanfrage" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "Neuer Bewunderer" @@ -4625,3262 +4520,260 @@ msgstr "%s nimmt eventuell an %s's Veranstaltung teil" msgid "%s is now friends with %s" msgstr "%s ist jetzt mit %s befreundet" -#: src/LegacyModule.php:49 +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Netzwerkbenachrichtigungen" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Pinnwandbenachrichtigungen" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Legacy-Moduldatei nicht gefunden: %s" +msgid "No more %s notifications." +msgstr "Keine weiteren %s-Benachrichtigungen" -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" -msgstr "Entfolgen" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Ungelesene anzeigen" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "Kontakt löschen" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Alle anzeigen" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "Du musst eingeloggt sein damit diese Seite angezeigt werden kann." + +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "Art der Benachrichtigung:" + +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" +msgstr "Vorgeschlagen von:" + +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor Anderen" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 #: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "Organisation" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Behauptet, dich zu kennen: " -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "Nachrichten" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "Soll die Verbindung beidseitig sein oder nicht?" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" - -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" - -#: src/Model/Contact.php:2336 -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." - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." - -#: src/Model/Contact.php:2359 -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." - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." - -#: src/Model/Contact.php:2366 -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." - -#: src/Model/Contact.php:2371 -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." - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "Beginnt:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "Endet:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "ganztägig" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "Sep" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "Keine Veranstaltung zum Anzeigen" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "Veranstaltung kopieren" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "Veranstaltung löschen" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "D H:i" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "H:i" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "Karte anzeigen" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "Karte verbergen" - -#: src/Model/Event.php:1042 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch, %s" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "Beitrag abgelegt" - -#: src/Model/Group.php:92 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 "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." +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s." -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "bearbeiten" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "hinzufügen" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Gruppen bearbeiten" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "Aktivität" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "Beitrag" - -#: src/Model/Item.php:3576 +#: src/Module/Notifications/Introductions.php:127 #, php-format -msgid "Content warning: %s" -msgstr "Inhaltswarnung: %s" +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "Byte" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Kontakt" -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "Auf separater Seite ansehen" +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Abonnent" -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "auf separater Seite ansehen" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[kein Betreff]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "Homepage:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 msgid "About:" msgstr "Über:" -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "Entfolgen" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Atom-Feed" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 msgid "Network:" msgstr "Netzwerk:" -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "d. F" +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" +msgstr "Ein dezentrales Soziales Netzwerk" -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[heute]" +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Abgemeldet." -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Ungültiger Code, bitte erneut versuchen." -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "Veranstaltungen der nächsten 7 Tage:" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Datenbankspeicher konnte nicht aktualisiert werden %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Der Datenbankspeicher konnte keine Daten einfügen" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Dateisystemspeicher konnte nicht erstellt werden \"%s\". Überprüfe, ob du Schreibberechtigungen hast." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Der Dateisystemspeicher konnte die Daten nicht in \"%s\" speichern. Überprüfe Deine Schreibberechtigungen" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Dateipfad zum Speicher" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Verzeichnis, in das Dateien hochgeladen werden. Für maximale Sicherheit sollte dies ein Pfad außerhalb der Webserver-Verzeichnisstruktur sein" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Gib einen gültigen, existierenden Ordner ein" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "Anmeldung fehlgeschlagen" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "Nicht genügend Informationen für die Authentifizierung" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "Das Passwort kann nicht leer sein" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "Leere Passwörter sind nicht erlaubt." - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort." - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "system.username_min_length (%s) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus." - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." -msgstr[1] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "Der Benutzername sollte aus maximal %s Zeichen bestehen." -msgstr[1] "Der Benutzername sollte aus maximal %s Zeichen bestehen." - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." - -#: src/Model/User.php:701 -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." - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "Der Admin des Knotens hat den Spitznamen für die Registrierung gesperrt." - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: src/Model/User.php:806 -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." - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut." - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "Kontakte" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut." - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nHallo %1$s\nein Admin von %2$s hat dir ein Nutzerkonto angelegt." - -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "\nNachfolgend die Anmeldedetails:\n\nAdresse der Seite: %1$s\nBenutzername: %2$s\nPasswort: %3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet hast.Bitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser Seite zu kontrollieren.Eventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können.Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).Wir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.Außerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter angibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.Wir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDu kannst dein Nutzerkonto jederzeit unter %1$s/removeme wieder löschen.\n\nDanke und willkommen auf %4$s." - -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tdanke für deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens freigeschaltet werden.\n\n\t\t\tDeine Zugangsdaten lauten wie folgt:\n\n\t\t\tSeitenadresse:\t%3$s\n\t\t\tAnmeldename:\t\t%4$s\n\t\t\tPasswort:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "Registrierung als %s" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tHallo %1$s,\n\t\t\t\tDanke für die Registrierung auf %2$s. Dein Account wurde angelegt.\n\t\t\t" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "Addon nicht gefunden." - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "Addon %s ausgeschaltet." - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "Addon %s eingeschaltet." - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "Ausschalten" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "Einschalten" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "Administration" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Addons" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "Umschalten" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "Autor:" - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "Addon %s konnte nicht installiert werden" - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Aktivierte Addons neu laden" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s." - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%sKontakt wieder freigegeben" -msgstr[1] "%sKontakte wieder freigegeben" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Blockliste entfernter Kontakte" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Blockiere entfernten Kontakt" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "Alle auswählen" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "Auswahl aufheben" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "Entsperren" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Blockierte Kontakte von anderen Knoten" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Blockieren von weiteren Kontakten" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Foto:" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Grund" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Insgesamt %s blockierter Kontakt" -msgstr[1] "Insgesamt %s blockierte Kontakte" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "Die URL des entfernten Kontakts, der blockiert werden soll." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Sperrgrund" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Server Domain Muster zur Blockliste hinzugefügt" - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "Blockliste aktualisiert." - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "Blockierte Server Domain Muster" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "Begründung für die Blockierung" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "Server Domain Muster löschen" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "Server Domain Muster Blockliste" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast." - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können." - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "

Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:

\n
    \n\t
  • *: Beliebige Anzahl von Zeichen
  • \n\t
  • ?: Ein einzelnes beliebiges Zeichen
  • \n\t
  • [<Zeichen1><Zeichen2>...]:Zeichen1 oder Zeichen2
  • \n
" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "Neuen Eintrag in die Blockliste" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "Server Domain Muster" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "Das Muster für Server Domains die geblockt werden sollen. Gib das Protokoll nicht mit an!" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "Begründung der Blockierung" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "Die Begründung, warum du dieses Domain Muster blockiert hast." - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "Eintrag hinzufügen" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "Änderungen der Blockliste speichern" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "Aktuelle Einträge der Blockliste" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "Eintrag von der Blockliste entfernen" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "Eintrag von der Blockliste entfernen?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s war erfolgreich." - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Updates." - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "Datenbankstruktur überprüfen" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Updates" - -#: src/Module/Admin/DBSync.php:116 -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." - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "Versuchen, diesen Schritt automatisch auszuführen" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Feature festlegen: %s" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Zusätzliche Features Verwalten" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "Andere" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "Unbekannt" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt." - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "Die Funktion \"Regelmäßig globale Kontakte überprüfen\" ist nicht aktiv. Sie wird die hier angezeigten Daten verbessern." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Föderation Statistik" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Eintrag wurden zur Löschung markiert" - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Eintrag löschen" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Diesen Eintrag löschen" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "Die GUID des zu löschenden Eintrags" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "Beitrags-Guid" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich." - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "PHP Protokollierung ist derzeit aktiviert." - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "PHP Protokollierung ist derzeit nicht aktiviert." - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "Protokolle" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "löschen" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "Protokoll führen" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Protokolldatei" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "Protokoll-Level" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "PHP Protokollieren" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "Um die Protokollierung von PHP-Fehlern und Warnungen vorübergehend zu aktivieren, kannst du der Datei index.php deiner Installation Folgendes voranstellen. Der in der Datei 'error_log' angegebene Dateiname ist relativ zum obersten Verzeichnis von Friendica und muss vom Webserver beschreibbar sein. Die Option '1' für 'log_errors' und 'display_errors' aktiviert diese Optionen, ersetze die '1' durch eine '0', um sie zu deaktivieren." - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Fehler beim Öffnen der Logdatei %1$s.\\r\\n
Bitte überprüfe ob die Datei %1$s existiert und gelesen werden kann." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Konnte die Logdatei %1$s nicht öffnen.\\r\\n
Bitte stelle sicher, dass die Datei %1$s lesbar ist." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "Protokolle anzeigen" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Verzögerte Worker-Warteschlange inspizieren" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten." - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Worker-Warteschlange inspizieren" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Parameter der Aufgabe" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Erstellt" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Priorität" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "Ungültige Einstellung für das Datenspeicher-Backend" - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimentell)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "Keine Gemeinschaftsseite für lokale Nutzer" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "Keine Gemeinschaftsseite" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk" - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "Deaktiviert" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "Nutzer" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "Nutzer, globale Kontakte" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "Nutzer, globale Kontakte / Fallback" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "ein Monat" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "drei Monate" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "ein halbes Jahr" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "ein Jahr" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "Mehrbenutzer-Instanz" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "Geschlossen" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "Bedarf der Zustimmung" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "Offen" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "Keine SSL-Richtlinie, Links werden das verwendete Protokoll beibehalten" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "Nicht überprüfen" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "überprüfe die stabile Version" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "überprüfe die Entwicklungsversion" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "keine" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "Direkte Kontakte" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "Kontakte deiner Kontakte" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "Datenbank (legacy)" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Seite" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "Registrierung" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "Datei hochladen" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "Regeln" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "Automatisch ein Kontaktverzeichnis erstellen" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "Performance" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "Worker" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "Nachrichten-Relais" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "Instanz Umziehen" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Achtung Funktionen für Fortgeschrittene. Könnte diesen Server unerreichbar machen." - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "Seitenname" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "Absender für Emails" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll." - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "E-Mail Banner / Logo" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "Shortcut Icon" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "Link zu einem Icon, das Browser verwenden werden." - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "Touch Icon" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen." - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "Zusätzliche Informationen" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden." - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "Systemsprache" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "Systemweites Theme" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Ändere Einstellung des Standard-Themes" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "Systemweites mobiles Theme" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "Erzwinge SSL" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "Verberge den Hilfe-Eintrag im Navigationsmenü" - -#: src/Module/Admin/Site.php:632 -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." - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "Ein-Nutzer Instanz" - -#: src/Module/Admin/Site.php:633 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt." - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "Datenspeicher-Backend" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "Das zu verwendende Datenspeicher-Backend, wenn Dateien hochgeladen werden. Wenn du das Datenspeicher-Backend änderst, kannst du die bestehenden Dateien zum neuen Backend verschieben. Machst du dies nicht, verbleiben sie im alten Backend und werden weiterhin von dort geladen. Für weitere Informationen zu den verfügbaren Alternativen und der Prozedur zum Verschieben der Daten schaue bitte in die Dokumentation zu den Einstellungen." - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: src/Module/Admin/Site.php:637 -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." - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "Maximale Bildlänge" - -#: src/Module/Admin/Site.php:638 -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 hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet." - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "Qualität des JPEG Bildes" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "Registrierungsmethode" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "Maximum täglicher Registrierungen" - -#: src/Module/Admin/Site.php:642 -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." - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "Registrierungstext" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden." - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "Verbotene Spitznamen" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142." - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" - -#: src/Module/Admin/Site.php:645 -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." - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: src/Module/Admin/Site.php:646 -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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: src/Module/Admin/Site.php:647 -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." - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "OEmbed nicht verwenden" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden." - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "Erlaubte OEmbed-Domänen" - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Durch Kommas getrennte Liste von Domänen, für die das Einbetten reichhaltiger Inhalte erlaubt ist. Platzhalter können verwendet werden." - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: src/Module/Admin/Site.php:650 -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." - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "Erzwinge Veröffentlichung" - -#: src/Module/Admin/Site.php:651 -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." - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO." - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "URL des weltweiten Verzeichnisses" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "Private Beiträge als Standard für neue Nutzer" - -#: src/Module/Admin/Site.php:653 -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." - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" - -#: src/Module/Admin/Site.php:654 -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." - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." - -#: src/Module/Admin/Site.php:655 -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." - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "Private Bilder nicht in Beiträgen einbetten." - -#: src/Module/Admin/Site.php:656 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Ersetze lokal gehostete, private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten, sich zunächst auf den jeweiligen Servern authentifizieren müssen, bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "Sensibler Inhalt" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Wähle dies, um anzuzeigen, dass dein Knoten hauptsächlich für explizite Inhalte verwendet wird, die möglicherweise nicht für Minderjährige geeignet sind. Diese Info wird in der Knoteninformation veröffentlicht und kann durch das Globale Verzeichnis genutzt werden, um deinen Knoten von den Auflistungen auszuschließen. Zusätzlich wird auf der Registrierungsseite ein Hinweis darüber angezeigt." - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "Nutzern erlauben, das remote_self Flag zu setzen" - -#: src/Module/Admin/Site.php:658 -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 \"Erweitert\"-Reiter der Kontaktansicht markieren. Nach dem Setzen dieses Flags werden alle Top-Level-Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet (gespiegelt)." - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "Unterbinde Mehrfachregistrierung" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Benutzern nicht erlauben, weitere Konten für Organisationsseiten o. ä. mit der gleichen E-Mail-Adresse anzulegen." - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "OpenID deaktivieren" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "OpenID-Unterstützung für Registrierung und Login." - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "Namen nicht auf Vollständigkeit überprüfen" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Erlaubt Nutzern, Konten zu registrieren, bei denen im Namensfeld kein Leerzeichen zur Trennung von Vor- und Nachnamen verwendet wird." - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "Für Besucher verfügbare Gemeinschaftsseite" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden." - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die 'Globale Gemeinschaftsseite')" - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "OStatus-Unterstützung deaktivieren" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Die eingebaute OStatus-Unterstützung (StatusNet, GNU Social, etc.) deaktivieren. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre-Warnungen werden nur bei Bedarf angezeigt." - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus Unterstützung kann nur aktiviert werden, wenn \"Threading\" aktiviert ist. " - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist." - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "Diaspora-Unterstützung aktivieren" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Verwende die eingebaute Diaspora-Verknüpfung." - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "Nur Friendica-Kontakte erlauben" - -#: src/Module/Admin/Site.php:669 -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." - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "SSL Überprüfen" - -#: src/Module/Admin/Site.php:670 -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 Zertifikatskontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL-Zertifikat eine Verbindung herstellen kann." - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "Proxy-Nutzer" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "Netzwerk-Wartezeit" - -#: src/Module/Admin/Site.php:673 -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)." - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "Maximum Load Average" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Load Average (Frontend)" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximale Systemlast, bevor Vordergrundprozesse pausiert werden - Standard 50." - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "Minimaler Speicher" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)" - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "Maximale Tabellengröße zur Optimierung" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Gib -1 für Deaktivierung ein." - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "Minimaler Fragmentationsgrad" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Minimaler Fragmentationsgrad von Datenbanktabellen, um die automatische Optimierung einzuleiten - Standardwert ist 30%" - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "Regelmäßig globale Kontakte überprüfen" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "Neue Kontakte von den globalen Kontakten entdecken" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "Wenn dies aktiviert ist werden globale Kontakte regelmäßig auf neue Kontakte unter deren Kontakten und den Kontakten der Kontakte untersucht. Diese Option wird eine sehr große Zahl von Jobs für den Hintergrundprozess generieren und sollte deshalb nur auf leistungsstarken Servern aktiviert werden." - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "Tage zwischen erneuten Abfragen" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Legt das Abfrageintervall fest, nach dem ein Server erneut nach Kontakten abgefragt werden soll." - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "Neue Kontakte auf anderen Servern entdecken" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', also den tatsächlichen Nutzern des anderen Systems, und 'globalen Kontakten', also aktiven Kontakten, die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica- und Redmatrix-Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallback-Modus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "Zeitfenster für globale Kontakte" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum, in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "Lokales Verzeichnis durchsuchen" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt, um die Suchresultate zu verbessern, wenn die Suche wiederholt wird." - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "Server-Informationen veröffentlichen" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Personen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Konnektoren. Für Details bitte the-federation.info aufrufen." - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "Suche nach Updates" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Wenn diese Option aktiviert ist, wird regelmäßig nach neuen Friendica-Versionen auf github gesucht. Wenn es eine neue Version gibt, wird dies auf der Übersichtsseite im Admin-Panel angezeigt." - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "Tags unterdrücken" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "Datenbank aufräumen" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen." - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "Lebensdauer von Beiträgen anderer Knoten" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl in Tagen, nach der Beiträge, die auf anderen Knoten des Netzwerks verfasst wurden, gelöscht werden sollen. Eigene Beiträge sowie markierte oder abgespeicherte Beiträge werden nicht gelöscht. Ein Wert von 0 deaktiviert das automatische Löschen von Beiträgen." - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "Lebensdauer nicht angeforderter Beiträge" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl von Tagen, nach denen nicht angeforderte Beiträge (hauptsächlich solche, die über das Relais eintreffen) gelöscht werden. Der Standardwert beträgt 90 Tage. Wird dieser Wert auf 0 gesetzt, wird die Lebensdauer von Beiträgen anderer Knoten verwendet." - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "Lebensdauer der Beiträge" - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage." - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "Pfad zum Item-Cache" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "Cache-Dauer in Sekunden" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Wie lange sollen die zwischengespeicherten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item-Cache zu deaktivieren, setze diesen Wert auf -1." - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "Maximale Anzahl von Kommentaren pro Beitrag" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "Temp-Pfad" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "Bilder-Proxy deaktivieren" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "Nur in Tags suchen" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "Neue Basis-URL" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica- und Diaspora*-Kontakte deiner NutzerInnen." - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "RINO-Verschlüsselung" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "Verschlüsselung zwischen Friendica-Instanzen" - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "Aktiv" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "Maximale Anzahl parallel laufender Worker" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setze diesen Wert auf %d. Auf größeren Systemen funktioniert ein Wert von %d recht gut. Standardeinstellung sind %d." - -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "\"proc_open\" nicht für die Worker verwenden" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der worker-Aufrufe in deiner crontab erhöhen." - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "Aktiviere Fastlane" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten, wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden." - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "Aktiviere den Frontend-Worker" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest diese Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst." - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "Relais abonnieren" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Aktiviert den Empfang von öffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein." - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "Relais-Server" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Adresse des Relais-Servers, an den die öffentlichen Beiträge gesendet werden sollen. Zum Beispiel https://relay.diasp.org" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "Direkte Relais-Übertragung" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird." - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "Geltungsbereich des Relais" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle öffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten." - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "Alle" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "Schlagwörter" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "Server-Schlagworte" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt." - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "Verwende Schlagworte der Nutzer" - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert." - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "Umsiedlung starten" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen." - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s." - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen." - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "Das letzte Update ist fehlgeschlagen. Bitte führe \"php bin/console.php dbstructure update\" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)" - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur." - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen." - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.ini.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems." - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "Friendica's system.basepath würde aktualisiert '%s' von '%s'. Bitte entfernen Sie system.basepath aus der Datenbank um Unterschiede zu vermeiden." - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt." - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigieren Sie Ihre Konfiguration." - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "Normales Konto" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "Automatisch folgendes Konto (Marktschreier)" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "Öffentliches Forum-Konto" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "Automatische Freunde-Seite" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "Blog-Konto" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "Privates Forum-Konto" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "Servereinstellungen" - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Zusammenfassung" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "Registrierte Personen" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "Version" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "Aktivierte Addons" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "Themeneinstellungen aktualisiert." - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "Theme %s deaktiviert." - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Theme %s erfolgreich aktiviert." - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "Theme %s konnte nicht aktiviert werden." - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "Themen" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "Unbekanntes Theme" - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Aktives Theme neu laden" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden." - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "Die Einstellungen zur Nutzungsbedingung wurden aktualisiert" - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "Nutzungsbedingungen anzeigen" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt." - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "Datenschutzerklärung anzeigen" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt." - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "Vorschau: Datenschutzerklärung" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "Die Nutzungsbedingungen" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein." - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s Nutzer blockiert" -msgstr[1] "%s Nutzer blockiert" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s Nutzer freigeschaltet" -msgstr[1] "%s Nutzer freigeschaltet" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "Du kannst dich nicht selbst löschen!" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%sNutzer zugelassen" -msgstr[1] "%sNutzer zugelassen" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%sRegistration zurückgezogen" -msgstr[1] "%sRegistrierungen zurückgezogen" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "Nutzer \"%s\" gelöscht" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Nutzer \"%s\" blockiert" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Nutzer \"%s\" frei geschaltet" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Konto freigegeben." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "Registrierung zurückgezogen" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Privates Forum" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "Relais" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Anmeldedatum" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "Letzter öffentliche Beitrag" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "Typ" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Nutzer hinzufügen" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Anfragedatum" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "Keine Neuanmeldungen." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Hinweis vom Nutzer" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Verwehren" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "Nutzer blockiert." - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Seitenadministrator" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Account ist abgelaufen" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "Neuer Nutzer" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "Permanent löschen" - -#: src/Module/Admin/Users.php:267 -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?" - -#: src/Module/Admin/Users.php:268 -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?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Spitzname" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "Keine Kontakte zum Anzeigen." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Anwendungen" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto." - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Übersicht" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Konfiguration" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "Datenbank" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "DB Updates" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Verzögerte Worker inspizieren" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Worker Warteschlange inspizieren" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Werkzeuge" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Kontakt Blockliste" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Server Blockliste" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Diagnostik" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "PHP-Info" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "Adresse untersuchen" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "Webfinger überprüfen" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "Beitrags Quelle" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "Babel" - -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "Addon Features" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "Nutzeranmeldungen, die auf Bestätigung warten" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "Profildetails" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Nur du kannst das sehen" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "Personensuche - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "Forensuche - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Nutzerkonto" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 #: src/Module/Settings/TwoFactor/Index.php:105 msgid "Two-factor authentication" msgstr "Zwei-Faktor Authentifizierung" -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Anzeige" - -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" -msgstr "Acconts Verwalten" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Verbundene Programme" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Konto löschen" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "Der Seite fehlt ein URL Parameter." - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: src/Module/Contact/Advanced.php:113 +#: src/Module/Security/TwoFactor/Verify.php:81 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." +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Öffnen Sie die Zwei-Faktor-Authentifizierungs-App auf Ihrem Gerät, um einen Authentifizierungscode abzurufen und Ihre Identität zu überprüfen.

" -#: src/Module/Contact/Advanced.php:114 -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." - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "Kein Spiegeln" - -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" - -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" - -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "Kontaktdaten neu laden" - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "Entfernte Konten" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" - -#: src/Module/Contact/Advanced.php:148 -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 (spiegeln)." - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "Konto-Spitzname" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "Konto-URL" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" -msgstr "Konto URL Alias" - -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "URL für Kontaktschaftsanfragen" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Kontaktanfragen" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" - -#: src/Module/Contact.php:88 +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d Kontakt bearbeitet." -msgstr[1] "%d Kontakte bearbeitet." +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Hast du dein Handy nicht? Geben Sie einen Zwei-Faktor-Wiederherstellungscode ein" -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "Konnte nicht auf die Kontaktdaten zugreifen." +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Bitte geben Sie einen Code aus Ihrer Authentifizierungs-App ein" -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "Kontakt aktualisiert." +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "Code überprüfen und Anmeldung abschließen" -#: src/Module/Contact.php:385 -msgid "Contact not found" -msgstr "Kontakt nicht gefunden" - -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "Kontakt wurde blockiert" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "Kontakt wurde wieder freigegeben" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "Kontakt wurde ignoriert" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "Kontakt wird nicht mehr ignoriert" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "Kontakt wurde archiviert" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "Kontakt wurde aus dem Archiv geholt" - -#: src/Module/Contact.php:448 -msgid "Drop contact" -msgstr "Kontakt löschen" - -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "Möchtest Du wirklich diesen Kontakt löschen?" - -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "Kontakt wurde entfernt." - -#: src/Module/Contact.php:495 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format -msgid "You are mutual friends with %s" -msgstr "Du hast mit %s eine beidseitige Freundschaft" +msgid "Remaining recovery codes: %d" +msgstr "Verbleibende Wiederherstellungscodes: %d" -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "Du teilst mit %s" +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Zwei-Faktor-Wiederherstellung" -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s teilt mit dir" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "Niemals" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(Aktualisierung war erfolgreich)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(Aktualisierung war nicht erfolgreich)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "Kontakte vorschlagen" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Netzwerktyp: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "Verbindungen mit diesem Kontakt verloren!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "Weitere Informationen zu Feeds holen" - -#: src/Module/Contact.php:553 +#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet." +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" +msgstr "

Sie können einen Ihrer einmaligen Wiederherstellungscodes eingeben, falls Sie den Zugriff auf Ihr Mobilgerät verloren haben.

" -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "Beziehe Information" +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Bitte geben Sie einen Wiederherstellungscode ein" -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "Schlüsselwörter abrufen" +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Senden Sie den Wiederherstellungscode und schließen Sie die Anmeldung ab" -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "Beziehe Information und Schlüsselworte" +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Neues Konto erstellen" -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "Kontakt-Informationen / -Notizen" +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Registrieren" -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "Kontakteinstellungen" +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "Deine OpenID:" -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "Kontakt" - -#: src/Module/Contact.php:585 -msgid "Their personal note" -msgstr "Die persönliche Mitteilung" - -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "Notizen zum Kontakt bearbeiten" - -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" - -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freischalten" - -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "Ignoriere den Kontakt" - -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "Letzte Aktualisierung: " - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "Ignorieren aufheben" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "Derzeit geblockt" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "Bedarf der Bestätigung des Kontakts" - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt vor Anderen" - -#: src/Module/Contact.php:613 +#: src/Module/Security/Login.php:129 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Bitte gib seinen Nutzernamen und das Passwort ein um die OpenID zu deinem bestehenden Nutzerkonto hinzufügen zu können." -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "Benachrichtigung bei neuen Beiträgen" +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "Oder melde dich mit deiner OpenID an: " -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Abmelden" -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "Unterdrückte Schlüsselworte " +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Anmeldung" -#: src/Module/Contact.php:616 +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Passwort: " + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Website-Nutzungsbedingungen" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "Nutzungsbedingungen" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Website-Datenschutzerklärung" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "Datenschutzerklärung" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: src/Module/Security/OpenID.php:92 msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Nutzerkonto nicht gefunden. Bitte melde dich an und füge die OpenID zu deinem Konto hinzu." -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "Aktionen" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "Alle Kontakte anzeigen" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "Ausstehend" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "Zeige nur noch ausstehende Kontakte." - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "Geblockt" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "Nur blockierte Kontakte anzeigen" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "Ignoriert" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "Nur ignorierte Kontakte anzeigen" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "Archiviert" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "Nur archivierte Kontakte anzeigen" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "Verborgen" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "Nur verborgene Kontakte anzeigen" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "Verwalte deine Kontaktgruppen" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "Suche in deinen Kontakten" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 -#, php-format -msgid "Results for: %s" -msgstr "Ergebnisse für: %s" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "Archivieren" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "Stapelverarbeitung" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "Unterhaltungen, die von diesem Kontakt begonnen wurden" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "Statusnachrichten und Kommentare" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "Alle Kontakte anzeigen" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "Beidseitige Freundschaft" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "ist ein Fan von dir" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "Du bist Fan von" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "Ausstehende ausgehende Kontaktanfrage" - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "Ausstehende eingehende Kontaktanfrage" - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "Lösche den Kontakt" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Lokale Gemeinschaft" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Beiträge von Nutzern dieses Servers" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Globale Gemeinschaft" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: src/Module/Conversation/Community.php:125 +#: src/Module/Security/OpenID.php:94 msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers." +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Nutzerkonto nicht gefunden. Bitte registriere ein neues Konto oder melde dich mit einem existierendem Konto an um diene OpenID hinzuzufügen." -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar." - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Credits" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" - -#: src/Module/Debug/Babel.php:49 -msgid "Source input" -msgstr "Originaltext:" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (pures HTML)" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "BBCode::toMarkdown => Markdown::convert (rohes HTML)" - -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "Beitragskörper" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "Tags des Beitrags" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "Originaltext (Diaspora Format): " - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "Originaltext (Markdown)" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (pures HTML)" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "Reine HTML Eingabe" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "HTML Eingabe" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (pures HTML)" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "HTML::toBBCode => BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "HTML::toPlaintext (kompakt)" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "Quelltext" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "URL der Quelle" +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7911,94 +4804,549 @@ msgstr "Umgerechnete lokale Zeit: %s" msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "Originaltext:" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode::convert (pures HTML)" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "BBCode::convert" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "BBCode::toMarkdown => Markdown::convert (rohes HTML)" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::convert" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "Beitragskörper" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "Tags des Beitrags" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "PageInfo::appendToBody" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "PageInfo::appendToBody => BBCode::convert (pures HTML)" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "PageInfo::appendToBody => BBCode::convert" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "Originaltext (Diaspora Format): " + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "Originaltext (Markdown)" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (pures HTML)" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "Markdown::convert" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "Reine HTML Eingabe" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "HTML Eingabe" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "HTML::toBBCode => BBCode::convert" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "HTML::toBBCode => BBCode::convert (pures HTML)" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "HTML::toBBCode => BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "HTML::toMarkdown" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "HTML::toPlaintext (kompakt)" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "Dekodierter Beitrag" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "Konvertierter Beitrag" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "Konvertierter Beitragskörper" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "Das Twitter-Addon konnte nicht im addpn/ Verzeichnis gefunden werden." + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "Quelltext" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "BBCode" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "Twitter Quelle" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet." +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "Formatiert" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "Quelle" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "Aktivität" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "Objekt Daten" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "Resultierender Eintrag" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "Quelle der Aktivität" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "URL der Quelle" + #: src/Module/Debug/Probe.php:54 msgid "Lookup address" msgstr "Adresse nachschlagen" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: src/Module/Delegation.php:148 -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." - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "Ergebnisse für:" - -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" -msgstr "Tag %s für den Eintrag gespeichert" +msgid "%s's timeline" +msgstr "Timeline von %s" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "- auswählen -" - -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "Installierte Apps und Addons" - -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "Es sind keine Addons oder Apps installiert" - -#: src/Module/Friendica.php:68 +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 #, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens." +msgid "%s's posts" +msgstr "Beiträge von %s" -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert." +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "Kommentare von %s" -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Folgende (%s)" +msgstr[1] "Folgende (%s)" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Gefolgte (%s)" +msgstr[1] "Gefolgte (%s)" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Beidseitige Freundschafte (%s)" +msgstr[1] "Beidseitige Freundschaften (%s)" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Kontakt (%s)" +msgstr[1] "Kontakte (%s)" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "Alle Kontakte" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "Gefolgte" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "Beidseitige Freundschaft" + +#: src/Module/Profile/Profile.php:135 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s." +"You're currently viewing your profile as %s Cancel" +msgstr "Du betrachtest dein Profil gerade als %s Abbrechen" -#: src/Module/Friendica.php:98 +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Mitglied seit:" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Alter: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d Jahr alt" +msgstr[1] "%d Jahre alt" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Homepage:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Foren:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "Das Profil aus der Sicht von jemandem anderen betrachten:" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "Betrachten als" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden." + +#: src/Module/Register.php:101 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren." +"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." -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: src/Module/Register.php:102 +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." -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "den Bugtracker auf github" +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"" +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Hinweis für den Admin" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest." + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "Dein Ein­la­dungs­code" + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Registrierung" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):" + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "Bitte wiederhole deine E-Mail Adresse" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen, um das Passwort automatisch zu generieren." + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@%s' sein." + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Importiere dein Profil auf diese Friendica-Instanz" + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Passwort des Verwalters" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen." + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "Das Passwort stimmt nicht." + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "Bitte gib dein Passwort an." + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "Du hast zu viele Informationen eingegeben." + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "Bitte gib die gleiche E-Mail Adresse noch einmal an." + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "Das zusätzliche Nutzerkonto wurde angelegt." + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account-Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Registrierung erfolgreich." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen." + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Ungültige Anfrage" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Nicht autorisiert" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Verboten" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "Interner Serverfehler" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "Dienst nicht verfügbar" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "Aufgrund eines offensichtlichen Fehlers auf der Seite des Clients kann oder wird der Server die Anfrage nicht bearbeiten." + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "Die erforderliche Authentifizierung ist fehlgeschlagen oder noch nicht erfolgt." + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "Die Anfrage war gültig, aber der Server verweigert die Ausführung. Der Benutzer verfügt möglicherweise nicht über die erforderlichen Berechtigungen oder benötigt ein Nutzerkonto." + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "Die angeforderte Ressource konnte nicht gefunden werden, sie könnte allerdings zu einem späteren Zeitpunkt verfügbar sein." + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "Eine unerwartete Situation ist eingetreten, zu der keine detailliertere Nachricht vorliegt." + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "Der Server ist derzeit nicht verfügbar (wegen Überlastung oder Wartungsarbeiten). Bitte versuche es später noch einmal." + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "Geh zurück" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "Keine Kontakte zum Anzeigen." #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." @@ -8017,114 +5365,16 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "Gruppe erstellt." +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Credits" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "Unbekannte Gruppe" - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Kontakt wurde gelöscht" - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Konnte den Kontakt nicht zur Gruppe hinzufügen" - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Kontakt zur Gruppe hinzugefügt" - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Konnte den Kontakt nicht aus der Gruppe entfernen" - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Kontakt aus Gruppe entfernt" - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "Unbekannter Gruppen Befehl" - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Ungültige Anfrage." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filter" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Eine Kontaktgruppe anlegen." - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "Gruppe löschen" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "Gruppen Name bearbeiten" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "Mitglieder" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "Entferne den Kontakt aus der Gruppe" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "Füge den Kontakt zur Gruppe hinzu" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Hilfe:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Kein Profil" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "Methode nicht erlaubt." +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8138,10 +5388,30 @@ msgstr "Systemtest" msgid "Check again" msgstr "Noch einmal testen" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "Keine SSL-Richtlinie, Links werden das verwendete Protokoll beibehalten" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "SSL für alle Links erzwingen" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" + #: src/Module/Install.php:208 msgid "Base settings" msgstr "Grundeinstellungen" +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "Regeln für SSL Links" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" + #: src/Module/Install.php:215 msgid "Host name" msgstr "Host Name" @@ -8270,6 +5540,811 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst." +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- auswählen -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "Item wurde nicht entfernt" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "Item wurde nicht gelöscht" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "Falscher Typ \"%s\", hatte einen der Folgenden erwartet: %s" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "Model nicht gefunden" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: src/Module/Delegation.php:148 +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." + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "Lokale Gemeinschaft" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "Beiträge von Nutzern dieses Servers" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "Globale Gemeinschaft" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers." + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar." + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" + +#: src/Module/Welcome.php:46 +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." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Einstieg" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" + +#: src/Module/Welcome.php:50 +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." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" + +#: src/Module/Welcome.php:54 +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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.." + +#: src/Module/Welcome.php:55 +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 Kontakte und potentiellen Kontakte wissen genau, wie sie dich finden können." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + +#: src/Module/Welcome.php:59 +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 Kontakte zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" + +#: src/Module/Welcome.php:61 +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 Kontaktliste vor unbekannten Betrachtern des Profils." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Profil-Schlüsselbegriffe" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your 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 Profil 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." + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Verbindungen knüpfen" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Emails Importieren" + +#: src/Module/Welcome.php:68 +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 Kontakten und Mailinglisten interagieren willst." + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" + +#: src/Module/Welcome.php:70 +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 Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis Deiner Friendica-Instanz" + +#: src/Module/Welcome.php:72 +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." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" + +#: src/Module/Welcome.php:74 +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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Gruppen" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" + +#: src/Module/Welcome.php:78 +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 Kontakte 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." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" + +#: src/Module/Welcome.php:81 +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." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Hilfe bekommen" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" + +#: src/Module/Welcome.php:85 +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 anderen Programm-Features zu erhalten." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "Der Seite fehlt ein URL Parameter." + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Information" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Übersicht" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Föderation Statistik" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Konfiguration" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Seite" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Nutzer" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Addons" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Themen" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Zusätzliche Features" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "Datenbank" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "DB Updates" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "Verzögerte Worker inspizieren" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "Worker Warteschlange inspizieren" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Werkzeuge" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Kontakt Blockliste" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Server Blockliste" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Eintrag löschen" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Protokolle" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "Protokolle anzeigen" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Diagnostik" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "PHP-Info" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "Adresse untersuchen" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "Webfinger überprüfen" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "Beitrags Quelle" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "Babel" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Administration" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "Addon Features" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "Nutzeranmeldungen, die auf Bestätigung warten" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d Kontakt bearbeitet." +msgstr[1] "%d Kontakte bearbeitet." + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "Konnte nicht auf die Kontaktdaten zugreifen." + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "Folge" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "Entfolgen" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "Kontakt nicht gefunden" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "Kontakt wurde blockiert" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "Kontakt wurde wieder freigegeben" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "Kontakt wurde ignoriert" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "Kontakt wird nicht mehr ignoriert" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "Kontakt wurde archiviert" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "Kontakt wurde aus dem Archiv geholt" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Kontakt löschen" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "Möchtest Du wirklich diesen Kontakt löschen?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "Kontakt wurde entfernt." + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du hast mit %s eine beidseitige Freundschaft" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "Du teilst mit %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s teilt mit dir" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Niemals" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(Aktualisierung war erfolgreich)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(Aktualisierung war nicht erfolgreich)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Kontakte vorschlagen" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Netzwerktyp: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "Verbindungen mit diesem Kontakt verloren!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Weitere Informationen zu Feeds holen" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet." + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Deaktiviert" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Beziehe Information" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "Schlüsselwörter abrufen" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Beziehe Information und Schlüsselworte" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Kontakt-Informationen / -Notizen" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Kontakteinstellungen" + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Kontakt" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Die persönliche Mitteilung" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Notizen zum Kontakt bearbeiten" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freischalten" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Ignoriere den Kontakt" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Letzte Aktualisierung: " + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Entsperren" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "Derzeit geblockt" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "Momentan archiviert" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "Bedarf der Bestätigung des Kontakts" + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Benachrichtigung bei neuen Beiträgen" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Aktionen" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "Alle Kontakte" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Alle Kontakte anzeigen" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "Ausstehend" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "Zeige nur noch ausstehende Kontakte." + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Geblockt" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Nur blockierte Kontakte anzeigen" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Ignoriert" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Nur ignorierte Kontakte anzeigen" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Archiviert" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Nur archivierte Kontakte anzeigen" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Verborgen" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Nur verborgene Kontakte anzeigen" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "Verwalte deine Kontaktgruppen" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Suche in deinen Kontakten" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Ergebnisse für: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Archivieren" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Stapelverarbeitung" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "Unterhaltungen, die von diesem Kontakt begonnen wurden" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "Statusnachrichten und Kommentare" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Profildetails" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "Alle Kontakte anzeigen" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Beidseitige Freundschaft" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "ist ein Fan von dir" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "Du bist Fan von" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "Ausstehende ausgehende Kontaktanfrage" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "Ausstehende eingehende Kontaktanfrage" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Lösche den Kontakt" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig." + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können." + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert." + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "Datenschutzerklärung" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Hilfe:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "Methode nicht erlaubt." + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "Limit für Einladungen erreicht." @@ -8374,6 +6449,1844 @@ msgid "" "important, please visit http://friendi.ca" msgstr "Für weitere Informationen über das Friendica-Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca." +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "Personensuche - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Forensuche - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Ausschalten" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Einschalten" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Theme %s deaktiviert." + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Theme %s erfolgreich aktiviert." + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "Theme %s konnte nicht aktiviert werden." + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Administration" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Umschalten" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Autor:" + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "Unbekanntes Theme" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Aktives Theme neu laden" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden." + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Feature festlegen: %s" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Zusätzliche Features Verwalten" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s Nutzer blockiert" +msgstr[1] "%s Nutzer blockiert" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s Nutzer freigeschaltet" +msgstr[1] "%s Nutzer freigeschaltet" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "Du kannst dich nicht selbst löschen!" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%sNutzer zugelassen" +msgstr[1] "%sNutzer zugelassen" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%sRegistration zurückgezogen" +msgstr[1] "%sRegistrierungen zurückgezogen" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Nutzer \"%s\" gelöscht" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Nutzer \"%s\" blockiert" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Nutzer \"%s\" frei geschaltet" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "Registrierung zurückgezogen" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "Privates Forum" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "Relais" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "E-Mail" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Anmeldedatum" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "Letzter öffentliche Beitrag" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "Typ" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Nutzer hinzufügen" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "Alle auswählen" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Anfragedatum" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Hinweis vom Nutzer" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Verwehren" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "Nutzer blockiert." + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "Neuer Nutzer" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "Permanent löschen" + +#: src/Module/Admin/Users.php:267 +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?" + +#: src/Module/Admin/Users.php:268 +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?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Spitzname" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "Verzögerte Worker-Warteschlange inspizieren" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten." + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "Worker-Warteschlange inspizieren" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast." + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "Parameter der Aufgabe" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Erstellt" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "Priorität" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s war erfolgreich." + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Updates." + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Datenbankstruktur überprüfen" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Updates" + +#: src/Module/Admin/DBSync.php:117 +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." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Versuchen, diesen Schritt automatisch auszuführen" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Andere" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "Unbekannt" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt." + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Fehler beim Öffnen der Logdatei %1$s.\\r\\n
Bitte überprüfe ob die Datei %1$s existiert und gelesen werden kann." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Konnte die Logdatei %1$s nicht öffnen.\\r\\n
Bitte stelle sicher, dass die Datei %1$s lesbar ist." + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich." + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "PHP Protokollierung ist derzeit aktiviert." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "PHP Protokollierung ist derzeit nicht aktiviert." + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "löschen" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Protokoll führen" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Protokolldatei" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Protokoll-Level" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP Protokollieren" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "Um die Protokollierung von PHP-Fehlern und Warnungen vorübergehend zu aktivieren, kannst du der Datei index.php deiner Installation Folgendes voranstellen. Der in der Datei 'error_log' angegebene Dateiname ist relativ zum obersten Verzeichnis von Friendica und muss vom Webserver beschreibbar sein. Die Option '1' für 'log_errors' und 'display_errors' aktiviert diese Optionen, ersetze die '1' durch eine '0', um sie zu deaktivieren." + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "Ungültige Einstellung für das Datenspeicher-Backend" + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimentell)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "Keine Gemeinschaftsseite für lokale Nutzer" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "Keine Gemeinschaftsseite" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Mehrbenutzer-Instanz" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Geschlossen" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Bedarf der Zustimmung" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Offen" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "Nicht überprüfen" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "überprüfe die stabile Version" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "überprüfe die Entwicklungsversion" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "keine" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "Datenbank (legacy)" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "Datei hochladen" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Regeln" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch ein Kontaktverzeichnis erstellen" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Performance" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "Nachrichten-Relais" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "Instanz Umziehen" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "Achtung Funktionen für Fortgeschrittene. Könnte diesen Server unerreichbar machen." + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Seitenname" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "Absender für Emails" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "E-Mail Banner / Logo" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Shortcut Icon" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Link zu einem Icon, das Browser verwenden werden." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Touch Icon" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden." + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "Systemsprache" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "Systemweites Theme" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Ändere Einstellung des Standard-Themes" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Systemweites mobiles Theme" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "Erzwinge SSL" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Verberge den Hilfe-Eintrag im Navigationsmenü" + +#: src/Module/Admin/Site.php:613 +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." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Ein-Nutzer Instanz" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt." + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "Datenspeicher-Backend" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "Das zu verwendende Datenspeicher-Backend, wenn Dateien hochgeladen werden. Wenn du das Datenspeicher-Backend änderst, kannst du die bestehenden Dateien zum neuen Backend verschieben. Machst du dies nicht, verbleiben sie im alten Backend und werden weiterhin von dort geladen. Für weitere Informationen zu den verfügbaren Alternativen und der Prozedur zum Verschieben der Daten schaue bitte in die Dokumentation zu den Einstellungen." + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: src/Module/Admin/Site.php:618 +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." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Maximale Bildlänge" + +#: src/Module/Admin/Site.php:619 +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 hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "Qualität des JPEG Bildes" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Registrierungsmethode" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maximum täglicher Registrierungen" + +#: src/Module/Admin/Site.php:623 +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." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Registrierungstext" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden." + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "Verbotene Spitznamen" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142." + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" + +#: src/Module/Admin/Site.php:626 +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." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: src/Module/Admin/Site.php:627 +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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: src/Module/Admin/Site.php:628 +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." + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "OEmbed nicht verwenden" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden." + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "Erlaubte OEmbed-Domänen" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "Durch Kommas getrennte Liste von Domänen, für die das Einbetten reichhaltiger Inhalte erlaubt ist. Platzhalter können verwendet werden." + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: src/Module/Admin/Site.php:631 +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." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Erzwinge Veröffentlichung" + +#: src/Module/Admin/Site.php:632 +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." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO." + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "URL des weltweiten Verzeichnisses" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" + +#: src/Module/Admin/Site.php:634 +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." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" + +#: src/Module/Admin/Site.php:635 +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." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." + +#: src/Module/Admin/Site.php:636 +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." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "Private Bilder nicht in Beiträgen einbetten." + +#: src/Module/Admin/Site.php:637 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Ersetze lokal gehostete, private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten, sich zunächst auf den jeweiligen Servern authentifizieren müssen, bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "Sensibler Inhalt" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Wähle dies, um anzuzeigen, dass dein Knoten hauptsächlich für explizite Inhalte verwendet wird, die möglicherweise nicht für Minderjährige geeignet sind. Diese Info wird in der Knoteninformation veröffentlicht und kann durch das Globale Verzeichnis genutzt werden, um deinen Knoten von den Auflistungen auszuschließen. Zusätzlich wird auf der Registrierungsseite ein Hinweis darüber angezeigt." + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben, das remote_self Flag zu setzen" + +#: src/Module/Admin/Site.php:639 +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 \"Erweitert\"-Reiter der Kontaktansicht markieren. Nach dem Setzen dieses Flags werden alle Top-Level-Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet (gespiegelt)." + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Unterbinde Mehrfachregistrierung" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Benutzern nicht erlauben, weitere Konten für Organisationsseiten o. ä. mit der gleichen E-Mail-Adresse anzulegen." + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "OpenID deaktivieren" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "OpenID-Unterstützung für Registrierung und Login." + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "Namen nicht auf Vollständigkeit überprüfen" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "Erlaubt Nutzern, Konten zu registrieren, bei denen im Namensfeld kein Leerzeichen zur Trennung von Vor- und Nachnamen verwendet wird." + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "Für Besucher verfügbare Gemeinschaftsseite" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden." + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die 'Globale Gemeinschaftsseite')" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "OStatus-Unterstützung deaktivieren" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Die eingebaute OStatus-Unterstützung (StatusNet, GNU Social, etc.) deaktivieren. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre-Warnungen werden nur bei Bedarf angezeigt." + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus Unterstützung kann nur aktiviert werden, wenn \"Threading\" aktiviert ist. " + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Diaspora-Unterstützung aktivieren" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Verwende die eingebaute Diaspora-Verknüpfung." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Nur Friendica-Kontakte erlauben" + +#: src/Module/Admin/Site.php:650 +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." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "SSL Überprüfen" + +#: src/Module/Admin/Site.php:651 +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 Zertifikatskontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL-Zertifikat eine Verbindung herstellen kann." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Proxy-Nutzer" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Netzwerk-Wartezeit" + +#: src/Module/Admin/Site.php:654 +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)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Maximum Load Average" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Load Average (Frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximale Systemlast, bevor Vordergrundprozesse pausiert werden - Standard 50." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Minimaler Speicher" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "Gleiche die Kontakte mit dem Directory-Server ab" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Tage zwischen erneuten Abfragen" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Legt das Abfrageintervall fest, nach dem ein Server erneut nach Kontakten abgefragt werden soll." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Neue Kontakte auf anderen Servern entdecken" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Lokales Verzeichnis durchsuchen" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt, um die Suchresultate zu verbessern, wenn die Suche wiederholt wird." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Server-Informationen veröffentlichen" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Personen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Konnektoren. Für Details bitte the-federation.info aufrufen." + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Suche nach Updates" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Wenn diese Option aktiviert ist, wird regelmäßig nach neuen Friendica-Versionen auf github gesucht. Wenn es eine neue Version gibt, wird dies auf der Übersichtsseite im Admin-Panel angezeigt." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Tags unterdrücken" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "Datenbank aufräumen" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "Lebensdauer von Beiträgen anderer Knoten" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl in Tagen, nach der Beiträge, die auf anderen Knoten des Netzwerks verfasst wurden, gelöscht werden sollen. Eigene Beiträge sowie markierte oder abgespeicherte Beiträge werden nicht gelöscht. Ein Wert von 0 deaktiviert das automatische Löschen von Beiträgen." + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "Lebensdauer nicht angeforderter Beiträge" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl von Tagen, nach denen nicht angeforderte Beiträge (hauptsächlich solche, die über das Relais eintreffen) gelöscht werden. Der Standardwert beträgt 90 Tage. Wird dieser Wert auf 0 gesetzt, wird die Lebensdauer von Beiträgen anderer Knoten verwendet." + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "Lebensdauer der Beiträge" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage." + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Pfad zum Item-Cache" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Cache-Dauer in Sekunden" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Wie lange sollen die zwischengespeicherten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item-Cache zu deaktivieren, setze diesen Wert auf -1." + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Maximale Anzahl von Kommentaren pro Beitrag" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Temp-Pfad" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Bilder-Proxy deaktivieren" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Nur in Tags suchen" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "Neue Basis-URL" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica- und Diaspora*-Kontakte deiner NutzerInnen." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "RINO-Verschlüsselung" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Verschlüsselung zwischen Friendica-Instanzen" + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "Aktiv" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Maximale Anzahl parallel laufender Worker" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setze diesen Wert auf %d. Auf größeren Systemen funktioniert ein Wert von %d recht gut. Standardeinstellung sind %d." + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "\"proc_open\" nicht für die Worker verwenden" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der worker-Aufrufe in deiner crontab erhöhen." + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Aktiviere Fastlane" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten, wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden." + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Aktiviere den Frontend-Worker" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest diese Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst." + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "Relais abonnieren" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "Aktiviert den Empfang von öffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein." + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "Relais-Server" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "Adresse des Relais-Servers, an den die öffentlichen Beiträge gesendet werden sollen. Zum Beispiel https://relay.diasp.org" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "Direkte Relais-Übertragung" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird." + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "Geltungsbereich des Relais" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle öffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten." + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "Alle" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "Schlagwörter" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "Server-Schlagworte" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt." + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "Verwende Schlagworte der Nutzer" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert." + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "Umsiedlung starten" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen." + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s." + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen." + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "Das letzte Update ist fehlgeschlagen. Bitte führe \"php bin/console.php dbstructure update\" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)" + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur." + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.ini.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems." + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "Friendica's system.basepath würde aktualisiert '%s' von '%s'. Bitte entfernen Sie system.basepath aus der Datenbank um Unterschiede zu vermeiden." + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt." + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigieren Sie Ihre Konfiguration." + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Normales Konto" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "Automatisch folgendes Konto (Marktschreier)" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Öffentliches Forum-Konto" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "Automatische Freunde-Seite" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Blog-Konto" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Privates Forum-Konto" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "Servereinstellungen" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Registrierte Personen" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Version" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "Aktivierte Addons" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Nutzungsbedingungen anzeigen" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Datenschutzerklärung anzeigen" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt." + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Vorschau: Datenschutzerklärung" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "Die Nutzungsbedingungen" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "Server Domain Muster zur Blockliste hinzugefügt" + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "Blockierte Server Domain Muster" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Begründung für die Blockierung" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "Server Domain Muster löschen" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "Server Domain Muster Blockliste" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast." + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können." + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "

Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:

\n
    \n\t
  • *: Beliebige Anzahl von Zeichen
  • \n\t
  • ?: Ein einzelnes beliebiges Zeichen
  • \n\t
  • [<Zeichen1><Zeichen2>...]:Zeichen1 oder Zeichen2
  • \n
" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Neuen Eintrag in die Blockliste" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "Server Domain Muster" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "Das Muster für Server Domains die geblockt werden sollen. Gib das Protokoll nicht mit an!" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Begründung der Blockierung" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "Die Begründung, warum du dieses Domain Muster blockiert hast." + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Eintrag hinzufügen" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Änderungen der Blockliste speichern" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Aktuelle Einträge der Blockliste" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Eintrag von der Blockliste entfernen" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Eintrag von der Blockliste entfernen?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%sKontakt wieder freigegeben" +msgstr[1] "%sKontakte wieder freigegeben" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Blockliste entfernter Kontakte" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Blockiere entfernten Kontakt" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "Auswahl aufheben" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Blockierte Kontakte von anderen Knoten" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Blockieren von weiteren Kontakten" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Foto:" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "Grund" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Insgesamt %s blockierter Kontakt" +msgstr[1] "Insgesamt %s blockierte Kontakte" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "Die URL des entfernten Kontakts, der blockiert werden soll." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "Sperrgrund" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "Beitrags-Guid" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Eintrag wurden zur Löschung markiert" + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Diesen Eintrag löschen" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "Die GUID des zu löschenden Eintrags" + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "Addon nicht gefunden." + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Addon %s ausgeschaltet." + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Addon %s eingeschaltet." + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Addon %s konnte nicht installiert werden" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Aktivierte Addons neu laden" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s." + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Ergebnisse für:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "Bitte gibt den Text des Beitrags an" @@ -8408,98 +8321,55 @@ msgid "" "your device" msgstr "Ortungsdienste sind deaktiviert. Bitte überprüfen Sie die Berechtigungen der Website auf Ihrem Gerät" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "Installierte Apps und Addons" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "Ein dezentrales Soziales Netzwerk" +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "Es sind keine Addons oder Apps installiert" -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens." -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert." -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Art der Benachrichtigung:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "Vorgeschlagen von:" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Behauptet, dich zu kennen: " - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Soll die Verbindung beidseitig sein oder nicht?" - -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s." +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s." -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren." -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Kontakt" +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Abonnent" +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "den Bugtracker auf github" -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"" -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "Keine weiteren %s-Benachrichtigungen" +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Nur du kannst das sehen" -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "Du musst eingeloggt sein damit diese Seite angezeigt werden kann." - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Netzwerkbenachrichtigungen" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Pinnwandbenachrichtigungen" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Ungelesene anzeigen" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Alle anzeigen" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" #: src/Module/Photo.php:87 #, php-format @@ -8511,242 +8381,11 @@ msgstr "Das Bild mit ID %s ist nicht verfügbar." msgid "Invalid photo with id %s." msgstr "Fehlerhaftes Foto mit der ID %s." -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "Benutzer nicht gefunden." - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Folgende (%s)" -msgstr[1] "Folgende (%s)" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Gefolgte (%s)" -msgstr[1] "Gefolgte (%s)" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "Beidseitige Freundschafte (%s)" -msgstr[1] "Beidseitige Freundschaften (%s)" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Kontakt (%s)" -msgstr[1] "Kontakte (%s)" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "Alle Kontakte" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "Mitglied seit:" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "j F" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "Alter: " - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%dJahr alt" -msgstr[1] "%dJahre alt" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "Foren:" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "Das Profil aus der Sicht von jemandem anderen betrachten:" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "Timeline von %s" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "Beiträge von %s" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "Kommentare von %s" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden." - -#: src/Module/Register.php:101 -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." - -#: src/Module/Register.php:102 -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." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Hinweis für den Admin" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest." - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Dein Ein­la­dungs­code" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Bitte wiederhole deine E-Mail Adresse" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Leer lassen, um das Passwort automatisch zu generieren." - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@%s' sein." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Importiere dein Profil auf diese Friendica-Instanz" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "Passwort des Verwalters" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "Das Passwort stimmt nicht." - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "Bitte gib dein Passwort an." - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "Du hast zu viele Informationen eingegeben." - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "Bitte gib die gleiche E-Mail Adresse noch einmal an." - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "Das zusätzliche Nutzerkonto wurde angelegt." - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account-Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Registrierung erfolgreich." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen." - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" msgstr "Der angegebene Profil-Link scheint nicht gültig zu sein." -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8754,465 +8393,387 @@ msgid "" " or %s directly on your system." msgstr "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. " -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." -msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Nutzerkonto" -#: src/Module/Search/Index.php:52 +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Anzeige" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "Acconts Verwalten" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Verbundene Programme" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Konto löschen" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "" + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Unbekannte Gruppe" + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "Kontakt wurde gelöscht" + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Konnte den Kontakt nicht zur Gruppe hinzufügen" + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "Kontakt zur Gruppe hinzugefügt" + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Konnte den Kontakt nicht aus der Gruppe entfernen" + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "Kontakt aus Gruppe entfernt" + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Unbekannter Gruppen Befehl" + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Ungültige Anfrage." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "Filter" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Eine Kontaktgruppe anlegen." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Gruppe löschen" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Gruppen Name bearbeiten" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Mitglieder" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Entferne den Kontakt aus der Gruppe" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "Füge den Kontakt zur Gruppe hinzu" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Suche" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge, die mit %s getaggt sind" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." -msgstr "Suche erfolgreich abgespeichert." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." msgstr "Suche ist bereits gespeichert." -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." -msgstr "Suche wurde entfernt." +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." +msgstr "" -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "Kein Profil" -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Deine OpenID:" +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." +msgstr "" -#: src/Module/Security/Login.php:129 +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Anstupsen" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst du mit dem Empfänger machen:" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Bitte gib seinen Nutzernamen und das Passwort ein um die OpenID zu deinem bestehenden Nutzerkonto hinzufügen zu können." +"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." -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Oder melde dich mit deiner OpenID an: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Passwort: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Anmeldedaten merken" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Website-Nutzungsbedingungen" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "Nutzungsbedingungen" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Website-Datenschutzerklärung" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "Datenschutzerklärung" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Abgemeldet." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: src/Module/Security/OpenID.php:92 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Nutzerkonto nicht gefunden. Bitte melde dich an und füge die OpenID zu deinem Konto hinzu." +"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." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: src/Module/Contact/Advanced.php:146 msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Nutzerkonto nicht gefunden. Bitte registriere ein neues Konto oder melde dich mit einem existierendem Konto an um diene OpenID hinzuzufügen." +"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 (spiegeln)." -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "Verbleibende Wiederherstellungscodes: %d" +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Konto-Spitzname" -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "Ungültiger Code, bitte erneut versuchen." +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Zwei-Faktor-Wiederherstellung" +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "Konto-URL" -#: src/Module/Security/TwoFactor/Recovery.php:84 -msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "

Sie können einen Ihrer einmaligen Wiederherstellungscodes eingeben, falls Sie den Zugriff auf Ihr Mobilgerät verloren haben.

" +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" +msgstr "Konto URL Alias" -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Hast du dein Handy nicht? Geben Sie einen Zwei-Faktor-Wiederherstellungscode ein" +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "URL für Kontaktschaftsanfragen" -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Bitte geben Sie einen Wiederherstellungscode ein" +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Kontaktanfragen" -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Senden Sie den Wiederherstellungscode und schließen Sie die Anmeldung ab" +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" -#: src/Module/Security/TwoFactor/Verify.php:81 -msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "

Öffnen Sie die Zwei-Faktor-Authentifizierungs-App auf Ihrem Gerät, um einen Authentifizierungscode abzurufen und Ihre Identität zu überprüfen.

" +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Bitte geben Sie einen Code aus Ihrer Authentifizierungs-App ein" +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "Code überprüfen und Anmeldung abschließen" +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Delegierung erfolgreich eingerichtet." +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Anwendungen" -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "Delegation erfolgreich aufgehoben." - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Delegierter Nutzer nicht gefunden" - -#: src/Module/Settings/Delegation.php:142 -msgid "No parent user" -msgstr "Kein Verwalter" - -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 -msgid "Parent User" -msgstr "Verwalter" - -#: src/Module/Settings/Delegation.php:161 -msgid "Additional Accounts" -msgstr "Zusätzliche Accounts" - -#: src/Module/Settings/Delegation.php:162 -msgid "" -"Register additional accounts that are automatically connected to your " -"existing account so you can manage them from this account." -msgstr "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst." - -#: src/Module/Settings/Delegation.php:163 -msgid "Register an additional account" -msgstr "Einen zusätzlichen Account registrieren" - -#: src/Module/Settings/Delegation.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern." - -#: src/Module/Settings/Delegation.php:171 -msgid "Delegates" -msgstr "Bevollmächtigte" - -#: src/Module/Settings/Delegation.php:173 -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!" - -#: src/Module/Settings/Delegation.php:174 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: src/Module/Settings/Delegation.php:176 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "Hinzufügen" - -#: src/Module/Settings/Delegation.php:180 -msgid "No entries." -msgstr "Keine Einträge." - -#: src/Module/Settings/Display.php:101 -msgid "The theme you chose isn't available." -msgstr "Das gewählte Theme ist nicht verfügbar" - -#: src/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Nicht unterstützt)" - -#: src/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: src/Module/Settings/Display.php:183 -msgid "General Theme Settings" -msgstr "Allgemeine Theme-Einstellungen" - -#: src/Module/Settings/Display.php:184 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Theme-Einstellungen" - -#: src/Module/Settings/Display.php:185 -msgid "Content Settings" -msgstr "Einstellungen zum Inhalt" - -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Theme-Einstellungen" - -#: src/Module/Settings/Display.php:187 -msgid "Calendar" -msgstr "Kalender" - -#: src/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "Theme:" - -#: src/Module/Settings/Display.php:194 -msgid "Mobile Theme:" -msgstr "Mobiles Theme" - -#: src/Module/Settings/Display.php:197 -msgid "Number of items to display per page:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " - -#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 -msgid "Maximum of 100 items" -msgstr "Maximal 100 Beiträge" - -#: src/Module/Settings/Display.php:198 -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:" - -#: src/Module/Settings/Display.php:199 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: src/Module/Settings/Display.php:199 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten." - -#: src/Module/Settings/Display.php:200 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatische Updates nur, wenn du oben auf den Beitragsstream-Seiten bist." - -#: src/Module/Settings/Display.php:200 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." -msgstr "Das automatische Aktualisieren des Streams kann neue Beiträge am Anfang des Stream einfügen. Dies kann die angezeigte Position im Stream beeinflussen, wenn du gerade nicht den Anfang des Streams betrachtest." - -#: src/Module/Settings/Display.php:201 -msgid "Don't show emoticons" -msgstr "Keine Smileys anzeigen" - -#: src/Module/Settings/Display.php:201 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "Normalerweise werden Smileys / Emoticons durch die passenden Symbolen ersetzt. Mit dieser Einstellung wird dieses Verhalten verhindert." - -#: src/Module/Settings/Display.php:202 -msgid "Infinite scroll" -msgstr "Endloses Scrollen" - -#: src/Module/Settings/Display.php:202 -msgid "Automatic fetch new items when reaching the page end." -msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist." - -#: src/Module/Settings/Display.php:203 -msgid "Disable Smart Threading" -msgstr "Intelligentes Threading deaktivieren" - -#: src/Module/Settings/Display.php:203 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen aus." - -#: src/Module/Settings/Display.php:204 -msgid "Hide the Dislike feature" -msgstr "Das \"Nicht mögen\" Feature verbergen" - -#: src/Module/Settings/Display.php:204 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "Verbirgt den \"Ich mag das nicht\" Button und die dislike Reaktionen auf Beiträge und Kommentare." - -#: src/Module/Settings/Display.php:206 -msgid "Beginning of week:" -msgstr "Wochenbeginn:" - -#: src/Module/Settings/Profile/Index.php:86 +#: src/Module/Settings/Profile/Index.php:85 msgid "Profile Name is required." msgstr "Profilname ist erforderlich." -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: src/Module/Settings/Profile/Index.php:140 +#: src/Module/Settings/Profile/Index.php:137 msgid "Profile couldn't be updated." msgstr "Das Profil konnte nicht aktualisiert werden." -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "Label:" msgstr "Bezeichnung:" -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 msgid "Value:" msgstr "Wert:" -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 msgid "Field Permissions" msgstr "Berechtigungen des Felds" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 msgid "(click to open/close)" msgstr "(klicke zum Öffnen/Schließen)" -#: src/Module/Settings/Profile/Index.php:211 +#: src/Module/Settings/Profile/Index.php:205 msgid "Add a new profile field" msgstr "Neues Profilfeld hinzufügen" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:235 msgid "Profile Actions" msgstr "Profilaktionen" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:236 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:238 msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:243 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:244 msgid "Location" msgstr "Wohnort" -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 #: src/Util/Temporal.php:95 msgid "Miscellaneous" msgstr "Verschiedenes" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:246 msgid "Custom Profile Fields" msgstr "Benutzerdefinierte Profilfelder" -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" - -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:252 msgid "Display name:" msgstr "Anzeigename:" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:255 msgid "Street Address:" msgstr "Adresse:" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:256 msgid "Locality/City:" msgstr "Wohnort:" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:257 msgid "Region/State:" msgstr "Region/Bundesstaat:" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:258 msgid "Postal/Zip Code:" msgstr "Postleitzahl:" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:259 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) Adresse" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können." -#: src/Module/Settings/Profile/Index.php:268 +#: src/Module/Settings/Profile/Index.php:262 msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "Public Keywords:" msgstr "Öffentliche Schlüsselwörter:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "(Used for searching profiles, never shown to others)" msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:265 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9225,7 +8786,7 @@ msgstr "

Die benutzerdefinierten Felder erscheinen auf deiner P #: src/Module/Settings/Profile/Photo/Crop.php:102 #: src/Module/Settings/Profile/Photo/Crop.php:118 #: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] scheiterte." @@ -9265,115 +8826,111 @@ msgstr "Bild wie es ist verwenden" msgid "Missing uploaded image." msgstr "Hochgeladenes Bild nicht gefunden." -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Profile Picture Settings" msgstr "Einstellungen zum Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Current Profile Picture" msgstr "Aktuelles Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:130 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Profile Picture" msgstr "Profilbild aktualisieren" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:129 msgid "Upload Picture:" msgstr "Bild hochladen" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "or" msgstr "oder" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "skip this step" msgstr "diesen Schritt überspringen" -#: src/Module/Settings/Profile/Photo/Index.php:140 +#: src/Module/Settings/Profile/Photo/Index.php:138 msgid "select a photo from your photo albums" msgstr "wähle ein Foto aus deinen Fotoalben" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "Bitte geben Sie Ihr Passwort ein, um auf diese Seite zuzugreifen." +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "Delegierung erfolgreich eingerichtet." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer." +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "Delegation erfolgreich aufgehoben." + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 msgid "" -"App-specific password generation failed: This description already exists." -msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits." +"Delegated administrators can view but not change delegation permissions." +msgstr "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "Neues App spezifisches Passwort erzeugt." +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "Delegierter Nutzer nicht gefunden" -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "App spezifische Passwörter erfolgreich widerrufen." +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "Kein Verwalter" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "App spezifisches Passwort erfolgreich widerrufen." +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "Verwalter" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Zwei-Faktor App spezifische Passwörter." +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "Zusätzliche Accounts" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/Delegation.php:163 msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "

App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst." -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "Einen zusätzlichen Account registrieren" + +#: src/Module/Settings/Delegation.php:168 msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern." -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Beschreibung" +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "Bevollmächtigte" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Zuletzt verwendet" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Widerrufen" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Alle widerrufen" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/Delegation.php:174 msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt." +"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!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "Neues App spezifisches Passwort erstellen" +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "Friendiqa auf meinem Fairphone 2" +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "Erstellen" +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "Hinzufügen" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "Keine Einträge." #: src/Module/Settings/TwoFactor/Index.php:67 msgid "Two-factor authentication successfully disabled." @@ -9467,36 +9024,11 @@ msgstr "App spezifische Passwörter verwalten" msgid "Finish app configuration" msgstr "Beenden Sie die App-Konfiguration" -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "Neue Wiederherstellungscodes erfolgreich generiert." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Zwei-Faktor-Wiederherstellungscodes" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "

Wiederherstellungscodes können verwendet werden, um auf Ihr Konto zuzugreifen, falls Sie den Zugriff auf Ihr Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten können.

Bewahren Sie diese an einem sicheren Ort auf! Wenn Sie Ihr Gerät verlieren und nicht über die Wiederherstellungscodes verfügen, verlieren Sie den Zugriff auf Ihr Konto.

" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "Wenn Sie neue Wiederherstellungscodes generieren, müssen Sie die neuen Codes kopieren. Ihre alten Codes funktionieren nicht mehr." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Generieren Sie neue Wiederherstellungscodes" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Weiter: Überprüfung" +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "Bitte geben Sie Ihr Passwort ein, um auf diese Seite zuzugreifen." #: src/Module/Settings/TwoFactor/Verify.php:78 msgid "Two-factor authentication successfully activated." @@ -9543,6 +9075,215 @@ msgstr "

Oder Sie können die folgende URL in Ihrem Mobilgerät öffnen:

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "

Wiederherstellungscodes können verwendet werden, um auf Ihr Konto zuzugreifen, falls Sie den Zugriff auf Ihr Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten können.

Bewahren Sie diese an einem sicheren Ort auf! Wenn Sie Ihr Gerät verlieren und nicht über die Wiederherstellungscodes verfügen, verlieren Sie den Zugriff auf Ihr Konto.

" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "Wenn Sie neue Wiederherstellungscodes generieren, müssen Sie die neuen Codes kopieren. Ihre alten Codes funktionieren nicht mehr." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Generieren Sie neue Wiederherstellungscodes" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Weiter: Überprüfung" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "Neues App spezifisches Passwort erzeugt." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "App spezifische Passwörter erfolgreich widerrufen." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "App spezifisches Passwort erfolgreich widerrufen." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "Zwei-Faktor App spezifische Passwörter." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "

App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "Beschreibung" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "Zuletzt verwendet" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "Widerrufen" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "Alle widerrufen" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "Neues App spezifisches Passwort erstellen" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa auf meinem Fairphone 2" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "Erstellen" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "Das gewählte Theme ist nicht verfügbar" + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Nicht unterstützt)" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "Allgemeine Theme-Einstellungen" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "Einstellungen zum Inhalt" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "Kalender" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "Theme:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" + +#: src/Module/Settings/Display.php:198 +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:" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten." + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "Automatische Updates nur, wenn du oben auf den Beitragsstream-Seiten bist." + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "Das automatische Aktualisieren des Streams kann neue Beiträge am Anfang des Stream einfügen. Dies kann die angezeigte Position im Stream beeinflussen, wenn du gerade nicht den Anfang des Streams betrachtest." + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "Keine Smileys anzeigen" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "Normalerweise werden Smileys / Emoticons durch die passenden Symbolen ersetzt. Mit dieser Einstellung wird dieses Verhalten verhindert." + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist." + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "Intelligentes Threading deaktivieren" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen aus." + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "Das \"Nicht mögen\" Feature verbergen" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "Verbirgt den \"Ich mag das nicht\" Button und die dislike Reaktionen auf Beiträge und Kommentare." + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "Wochenbeginn:" + #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "Account exportieren" @@ -9574,574 +9315,31 @@ msgid "" " e.g. Mastodon." msgstr "Exportiert die Liste der Nutzerkonten denen du folgst in eine CSV Datei. Das Format ist z.B. zu Mastodon kompatibel." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Ungültige Anfrage" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Nicht autorisiert" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Verboten" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "Interner Serverfehler" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Dienst nicht verfügbar" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "Aufgrund eines offensichtlichen Fehlers auf der Seite des Clients kann oder wird der Server die Anfrage nicht bearbeiten." - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Die erforderliche Authentifizierung ist fehlgeschlagen oder noch nicht erfolgt." - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "Die Anfrage war gültig, aber der Server verweigert die Ausführung. Der Benutzer verfügt möglicherweise nicht über die erforderlichen Berechtigungen oder benötigt ein Nutzerkonto." - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "Die angeforderte Ressource konnte nicht gefunden werden, sie könnte allerdings zu einem späteren Zeitpunkt verfügbar sein." - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "Eine unerwartete Situation ist eingetreten, zu der keine detailliertere Nachricht vorliegt." - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "Der Server ist derzeit nicht verfügbar (wegen Überlastung oder Wartungsarbeiten). Bitte versuche es später noch einmal." - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig." - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können." - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -"
account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert." - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "Datenschutzerklärung" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" - -#: src/Module/Welcome.php:46 -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." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Einstieg" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" - -#: src/Module/Welcome.php:50 -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." - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" - -#: src/Module/Welcome.php:54 -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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.." - -#: src/Module/Welcome.php:55 -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 Kontakte und potentiellen Kontakte wissen genau, wie sie dich finden können." - -#: src/Module/Welcome.php:59 -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 Kontakte zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" - -#: src/Module/Welcome.php:61 -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 Kontaktliste vor unbekannten Betrachtern des Profils." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Profil-Schlüsselbegriffe" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your 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 Profil 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." - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Verbindungen knüpfen" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "Emails Importieren" - -#: src/Module/Welcome.php:68 -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 Kontakten und Mailinglisten interagieren willst." - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" - -#: src/Module/Welcome.php:70 -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 Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis Deiner Friendica-Instanz" - -#: src/Module/Welcome.php:72 -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." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" - -#: src/Module/Welcome.php:74 -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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" - -#: src/Module/Welcome.php:78 -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 Kontakte 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." - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" - -#: src/Module/Welcome.php:81 -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." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Hilfe bekommen" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" - -#: src/Module/Welcome.php:85 -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 anderen Programm-Features zu erhalten." - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "Private Nachricht" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "Angehefteter Beitrag" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "Lokal löschen" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "Global löschen" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "Lokal entfernen" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "Ich werde teilnehmen" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "Ich werde eventuell teilnehmen" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "anheften" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "losmachen" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "Angeheftet Status ändern" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "angeheftet" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "markieren" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "Markierung entfernen" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "markiert" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "mag ich" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "mag ich nicht" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "Weitersagen" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "Teilen" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "%s (Empfangen %s)" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "Kommentiere diesen Beitrag von deinem System aus" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "Entfernter Kommentar" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "Pushed" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "Pulled" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "zu" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "via" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "Antworte %s" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "Mehr" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "Die Benachrichtigungsaufgabe ist ausstehend" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "Die Auslieferung an Remote-Server steht noch aus" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "Die Auslieferung an Remote-Server ist unterwegs" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "Die Zustellung an Remote-Server ist fast erledigt" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "Die Zustellung an die Remote-Server ist erledigt" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "Zeige mehr" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "Zeige weniger" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "Anhänge:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s folgt nun %s" -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "folgen" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s hat aufgehört %s, zu folgen" -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "wird nicht mehr gefolgt" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Heimatort:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "Familienstand:" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "Mit:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Seit:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Likes:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Fernsehen" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Friendica-Benachrichtigung" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Anhänge:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10162,6 +9360,10 @@ msgstr "der Administrator von %s" msgid "thanks" msgstr "danke" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Friendica-Benachrichtigung" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD oder MM-DD" @@ -10228,230 +9430,1004 @@ msgstr "in %1$d %2$s" msgid "%1$d %2$s ago" msgstr "vor %1$d %2$s" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: Aktualisiere die author-id und owner-id in der Thread Tabelle" +msgid "Database storage failed to update %s" +msgstr "Datenbankspeicher konnte nicht aktualisiert werden %s" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Der Datenbankspeicher konnte keine Daten einfügen" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." -msgstr "%s: Aktualisiere Beitrags-Typ" +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "Dateisystemspeicher konnte nicht erstellt werden \"%s\". Überprüfe, ob du Schreibberechtigungen hast." -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "Standard" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Variationen" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "Hinweis" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "Farbschema auswählen" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "Farbschema kopieren oder einfügen" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Du kannst den String mit den Farbschema Informationen mit anderen Teilen. Wenn du einen neuen Farbschema-String hier einfügst wird er für deine Einstellungen übernommen." +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "Der Dateisystemspeicher konnte die Daten nicht in \"%s\" speichern. Überprüfe Deine Schreibberechtigungen" -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Dateipfad zum Speicher" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "Icon Farbe in der Navigationsleiste" - -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "Linkfarbe" - -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "Hintergrundfarbe festlegen" - -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "Opazität des Hintergrunds von Beiträgen" - -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "Hintergrundbild festlegen" - -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "Stil des Hintergrundbildes" - -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "Hintergrundbild der Login-Seite" - -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "Hintergrundfarbe der Login-Seite" - -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "Wenn die Theme-Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer." - -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "Zum Inhalt der Seite gehen" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Top Banner" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Skaliere das Hintergrundbild so, dass es die Breite der Seite einnimmt, und fülle den Rest der Seite mit der Hintergrundfarbe bei langen Seiten." +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Verzeichnis, in das Dateien hochgeladen werden. Für maximale Sicherheit sollte dies ein Pfad außerhalb der Webserver-Verzeichnisstruktur sein" -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Vollbildmodus" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Gib einen gültigen, existierenden Ordner ein" -#: view/theme/frio/php/Image.php:41 +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "Aktivität" + +#: src/Model/Item.php:3339 +msgid "post" +msgstr "Beitrag" + +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "Inhaltswarnung: %s" + +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "Byte" + +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "Auf separater Seite ansehen" + +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "auf separater Seite ansehen" + +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[kein Betreff]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "Entfolgen" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Organisation" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "Nachrichten" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Forum" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: src/Model/Contact.php:2307 msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Skaliere das Bild so, dass es den gesamten Bildschirm füllt. Hierfür wird entweder die Breite oder die Höhe des Bildes automatisch abgeschnitten." +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Mosaik in einer Zeile" - -#: view/theme/frio/php/Image.php:42 +#: src/Model/Contact.php:2348 msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Skaliere das Bild so, dass es in einer einzelnen Reihe, entweder horizontal oder vertikal, wiederholt wird." +"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." -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mosaik" +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Wiederhole das Bild, um den Bildschirm zu füllen." +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "Gast" +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "Besucher" +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Ausrichtung" +#: src/Model/Contact.php:2371 +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." -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Links" +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Mitte" +#: src/Model/Contact.php:2378 +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." -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Farbschema" +#: src/Model/Contact.php:2383 +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." -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Beginnt:" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Komma-separierte Liste der Helfer-Foren" +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Endet:" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "nicht zeigen" +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "ganztägig" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "zeigen" +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Sep" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Stil auswählen" +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "Keine Veranstaltung zum Anzeigen" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Foren" +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, F j" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "Community-Profile" +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Veranstaltung kopieren" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "Verbinde Dienste" +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Veranstaltung löschen" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Kontakte finden" +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D H:i" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "Letzte Nutzer" +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "H:i" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "Schnell-Start" +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Karte anzeigen" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Karte verbergen" + +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" + +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch, %s" + +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "Anmeldung fehlgeschlagen" + +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "Nicht genügend Informationen für die Authentifizierung" + +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "Das Passwort kann nicht leer sein" + +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "Leere Passwörter sind nicht erlaubt." + +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort." + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "system.username_min_length (%s) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus." + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." +msgstr[1] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Der Benutzername sollte aus maximal %s Zeichen bestehen." +msgstr[1] "Der Benutzername sollte aus maximal %s Zeichen bestehen." + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." + +#: src/Model/User.php:703 +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." + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "Der Admin des Knotens hat den Spitznamen für die Registrierung gesperrt." + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: src/Model/User.php:808 +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." + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut." + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Kontakte" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut." + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nHallo %1$s\nein Admin von %2$s hat dir ein Nutzerkonto angelegt." + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "\nNachfolgend die Anmeldedetails:\n\nAdresse der Seite: %1$s\nBenutzername: %2$s\nPasswort: %3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet hast.Bitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser Seite zu kontrollieren.Eventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können.Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).Wir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.Außerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter angibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.Wir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDu kannst dein Nutzerkonto jederzeit unter %1$s/removeme wieder löschen.\n\nDanke und willkommen auf %4$s." + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: src/Model/User.php:1068 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tdanke für deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens freigeschaltet werden.\n\n\t\t\tDeine Zugangsdaten lauten wie folgt:\n\n\t\t\tSeitenadresse:\t%3$s\n\t\t\tAnmeldename:\t\t%4$s\n\t\t\tPasswort:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "Registrierung als %s" + +#: src/Model/User.php:1111 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tHallo %1$s,\n\t\t\t\tDanke für die Registrierung auf %2$s. Dein Account wurde angelegt.\n\t\t\t" + +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." + +#: src/Model/Group.php:92 +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 "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." + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Alle Kontakte" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "bearbeiten" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "hinzufügen" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Gruppen bearbeiten" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Profilbild ändern" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Atom-Feed" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "d. F" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[heute]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "Veranstaltungen der nächsten 7 Tage:" + +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" + +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Verbinden" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "Jeder" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "Beziehungen" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "Protokolle" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "Alle Protokolle" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Alles" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Kategorien" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gemeinsamer Kontakt" +msgstr[1] "%d gemeinsame Kontakte" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Archiv" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "immer wieder" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "Stündlich" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "Täglich" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "Wöchentlich" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "Monatlich" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zott" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "Diaspora Connector" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "GNU Social Connector" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "%s (via %s)" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Allgemeine Features" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Aufnahmeort" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Trending Tags" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Auf der Gemeinschaftsseite ein Widget mit den meist benutzten Tags in öffentlichen Beiträgen anzeigen." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Beitragserstellung-Features" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Foren automatisch erwähnen" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum 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." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Explizite Erwähnungen" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Füge Erwähnungen zum Kommentarfeld hinzu, um manuell über die explizite Erwähnung von Gesprächsteilnehmern zu entscheiden." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Beitragskategorien" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Erweiterte Profil-Einstellungen" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "Zeige Foren" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite" + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Schlagwortwolke" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Mitgliedschaftsdatum anzeigen" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Das Datum der Registrierung deines Accounts im Profil anzeigen" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Anmelden" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Pinnwand" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Homepage" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Apps" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Zusätzliche Anwendungen, Dienstprogramme, Spiele" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Volltext" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Tags" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Gemeinschaft" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "Unterhaltungen auf diesem und anderen Servern" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Verzeichnis" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica-Instanz" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Eingang" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Ausgang" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "Nutzerkonten" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Navigation" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Sitemap" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Exportieren" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Kalender als ical exportieren" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Kalender als csv exportieren" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Trending Tags (%d Stunde)" +msgstr[1] "Trending Tags (%d Stunden)" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "mehr Trending Tags" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "Keine Kontakte" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "neuer" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "älter" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "vorige" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "letzte" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "lade weitere Einträge..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "Das Ende" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "Zum Öffnen/Schließen klicken" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s%3$s" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Ungültiges Quell-Protokoll" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Ungültiges Link-Protokoll" + +#: src/BaseModule.php:150 +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)." diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index cfaf4da7f3..e1df9f0701 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -6,16 +6,97 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.", - 1 => "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.", - 1 => "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."; -$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["default"] = "Standard"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "Senden"; +$a->strings["Theme settings"] = "Theme-Einstellungen"; +$a->strings["Variations"] = "Variationen"; +$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["Comma separated list of helper forums"] = "Komma-separierte Liste der Helfer-Foren"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["show"] = "zeigen"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["Find Friends"] = "Kontakte finden"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Find"] = "Finde"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Forums"] = "Foren"; +$a->strings["External link to forum"] = "Externer Link zum Forum"; +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["Quick Start"] = "Schnell-Start"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Custom"] = "Benutzerdefiniert"; +$a->strings["Note"] = "Hinweis"; +$a->strings["Check image permissions if all users are allowed to see the image"] = "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"; +$a->strings["Select color scheme"] = "Farbschema auswählen"; +$a->strings["Copy or paste schemestring"] = "Farbschema kopieren oder einfügen"; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Du kannst den String mit den Farbschema Informationen mit anderen Teilen. Wenn du einen neuen Farbschema-String hier einfügst wird er für deine Einstellungen übernommen."; +$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; +$a->strings["Navigation bar icon color "] = "Icon Farbe in der Navigationsleiste"; +$a->strings["Link color"] = "Linkfarbe"; +$a->strings["Set the background color"] = "Hintergrundfarbe festlegen"; +$a->strings["Content background opacity"] = "Opazität des Hintergrunds von Beiträgen"; +$a->strings["Set the background image"] = "Hintergrundbild festlegen"; +$a->strings["Background image style"] = "Stil des Hintergrundbildes"; +$a->strings["Login page background image"] = "Hintergrundbild der Login-Seite"; +$a->strings["Login page background color"] = "Hintergrundfarbe der Login-Seite"; +$a->strings["Leave background image and color empty for theme defaults"] = "Wenn die Theme-Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer."; +$a->strings["Guest"] = "Gast"; +$a->strings["Visitor"] = "Besucher"; +$a->strings["Status"] = "Status"; +$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["Videos"] = "Videos"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Events"] = "Veranstaltungen"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Network"] = "Netzwerk"; +$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/bearbeiten"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["Skip to main content"] = "Zum Inhalt der Seite gehen"; +$a->strings["Top Banner"] = "Top Banner"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Skaliere das Hintergrundbild so, dass es die Breite der Seite einnimmt, und fülle den Rest der Seite mit der Hintergrundfarbe bei langen Seiten."; +$a->strings["Full screen"] = "Vollbildmodus"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Skaliere das Bild so, dass es den gesamten Bildschirm füllt. Hierfür wird entweder die Breite oder die Höhe des Bildes automatisch abgeschnitten."; +$a->strings["Single row mosaic"] = "Mosaik in einer Zeile"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Skaliere das Bild so, dass es in einer einzelnen Reihe, entweder horizontal oder vertikal, wiederholt wird."; +$a->strings["Mosaic"] = "Mosaik"; +$a->strings["Repeat image to fill the screen."] = "Wiederhole das Bild, um den Bildschirm zu füllen."; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualisiere die author-id und owner-id in der Thread Tabelle"; +$a->strings["%s: Updating post-type."] = "%s: Aktualisiere Beitrags-Typ"; $a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; $a->strings["event"] = "Veranstaltung"; $a->strings["status"] = "Status"; @@ -31,7 +112,6 @@ $a->strings["View in context"] = "Im Zusammenhang betrachten"; $a->strings["Please wait"] = "Bitte warten"; $a->strings["remove"] = "löschen"; $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; $a->strings["View Status"] = "Status anschauen"; $a->strings["View Profile"] = "Profil anschauen"; $a->strings["View Photos"] = "Bilder anschauen"; @@ -41,7 +121,6 @@ $a->strings["Send PM"] = "Private Nachricht senden"; $a->strings["Block"] = "Sperren"; $a->strings["Ignore"] = "Ignorieren"; $a->strings["Poke"] = "Anstupsen"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; $a->strings["%s likes this."] = "%s mag das."; $a->strings["%s doesn't like this."] = "%s mag das nicht."; $a->strings["%s attends."] = "%s nimmt teil."; @@ -160,34 +239,34 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Kompletter Name: %s\nURL der Seite: %s\nLogin Name: %s(%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s, um die Anfrage zu bearbeiten."; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; -$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["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"] = "Nein"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.", + 1 => "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.", + 1 => "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."; +$a->strings["Profile Photos"] = "Profilbilder"; $a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Events"] = "Veranstaltungen"; -$a->strings["View"] = "Ansehen"; -$a->strings["Previous"] = "Vorherige"; -$a->strings["Next"] = "Nächste"; -$a->strings["today"] = "Heute"; -$a->strings["month"] = "Monat"; -$a->strings["week"] = "Woche"; -$a->strings["day"] = "Tag"; -$a->strings["list"] = "Liste"; -$a->strings["User not found"] = "Nutzer nicht gefunden"; -$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt."; -$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden"; -$a->strings["calendar"] = "Kalender"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Common Friends"] = "Gemeinsame Kontakte"; -$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Bad Request."] = "Ungültige Anfrage."; $a->strings["Contact not found."] = "Kontakt nicht gefunden."; +$a->strings["Permission denied."] = "Zugriff verweigert."; +$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["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["Insert web link"] = "Einen Link einfügen"; +$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: "; @@ -204,265 +283,21 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "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["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers an der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild an der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = [ - 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 Kontaktanfragen 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["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 in Kontakt stehst."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Blocked domain"] = "Blockierte Domain"; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "; -$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["Confirm"] = "Bestätigen"; -$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["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Friend/Connection Request"] = "Kontaktanfrage"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Gib entweder deinen Webfinger (user@domain.tld) oder deine Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird (z.B. von Diaspora*) musst du von deinem System aus %s folgen "; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten."; -$a->strings["Your Webfinger address or profile URL:"] = "Deine Webfinger Adresse oder Profil-URL"; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; -$a->strings["%s knows you"] = "%skennt dich"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "Der angeforderte Beitrag existiert nicht oder wurde gelöscht."; -$a->strings["The feed for this item is unavailable."] = "Der Feed für diesen Beitrag ist nicht verfügbar."; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["Save"] = "Speichern"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden, bevor sie beginnt."; -$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; -$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; -$a->strings["Event details"] = "Veranstaltungsdetails"; -$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt 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["Submit"] = "Senden"; -$a->strings["Basic"] = "Allgemein"; -$a->strings["Advanced"] = "Erweitert"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen"; -$a->strings["Event removed"] = "Veranstaltung enfternt"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["Files"] = "Dateien"; -$a->strings["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden."; -$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."; -$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Profile URL"] = "Profil URL"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["Post updated."] = "Beitrag aktualisiert."; -$a->strings["Item wasn't stored."] = "Eintrag wurde nicht gespeichert"; -$a->strings["Item couldn't be fetched."] = "Eintrag konnte nicht geholt werden."; -$a->strings["Post published."] = "Beitrag veröffentlicht."; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["Followers"] = "Folgende"; -$a->strings["Mutuals"] = "Beidseitige Freundschaft"; -$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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gestellt haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren, folge bitte diesem Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$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["Request has expired, please make a new one."] = "Die Anfrage ist abgelaufen. Bitte stelle eine erneute."; -$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["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["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort in eines, das du dir leicht merken kannst)."; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["View Video"] = "Video ansehen"; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; $a->strings["No keywords to match. Please add keywords to your profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu."; -$a->strings["Connect"] = "Verbinden"; $a->strings["first"] = "erste"; $a->strings["next"] = "nächste"; $a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Profile Match"] = "Profilübereinstimmungen"; -$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["Discard"] = "Verwerfen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Do you really want to delete this message?"] = "Möchtest du diese Nachricht wirklich löschen?"; -$a->strings["Conversation not found."] = "Unterhaltung nicht gefunden."; -$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["No messages."] = "Keine Nachrichten."; -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - H:i"; -$a->strings["Delete conversation"] = "Unterhaltung 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["Unknown sender - %s"] = "Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und du"; -$a->strings["%d message"] = [ - 0 => "%d Nachricht", - 1 => "%d Nachrichten", -]; -$a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: %s"] = "Gruppe: %s"; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Latest Activity"] = "Neueste Aktivität"; -$a->strings["Sort by latest activity"] = "Sortiere nach neueste Aktivität"; -$a->strings["Latest Posts"] = "Neueste Beiträge"; -$a->strings["Sort by post received date"] = "Nach Empfangsdatum der Beiträge sortiert"; -$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["Personal Notes"] = "Persönliche Notizen"; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["Subscribing to OStatus contacts"] = "OStatus-Kontakten folgen"; -$a->strings["No contact provided."] = "Keine Kontakte gefunden."; -$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; -$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; -$a->strings["Done"] = "Erledigt"; -$a->strings["success"] = "Erfolg"; -$a->strings["failed"] = "Fehlgeschlagen"; -$a->strings["ignored"] = "Ignoriert"; -$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["everybody"] = "jeder"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Album successfully deleted"] = "Album wurde erfolgreich gelöscht."; -$a->strings["Album was empty."] = "Album ist leer."; -$a->strings["a photo"] = "einem Foto"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; -$a->strings["Image upload didn't complete, please try again"] = "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."; -$a->strings["Image file is missing"] = "Bilddatei konnte nicht gefunden werden."; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator."; -$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["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or select existing album:"] = "oder wähle ein bestehendes Album:"; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$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 Album"] = "Album löschen"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Drop Album"] = "Album löschen"; -$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["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Delete photo"] = "Foto löschen"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Select tags to remove]"] = "[Zu entfernende Tags auswählen]"; -$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["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; -$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; -$a->strings["This is you"] = "Das bist du"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["Map"] = "Karte"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$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["User deleted their account"] = "Gelöschter Nutzeraccount"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden."; -$a->strings["The user id is %d"] = "Die ID des Users lautet %d"; -$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["Resubscribing to OStatus contacts"] = "Erneuern der OStatus-Abonements"; -$a->strings["Error"] = [ - 0 => "Fehler", - 1 => "Fehler", -]; $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; $a->strings["Update"] = "Aktualisierungen"; $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; -$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; -$a->strings["Features updated"] = "Features aktualisiert"; $a->strings["Contact CSV file upload error"] = "Fehler beim Hochladen der Kontakt CSV Datei"; $a->strings["Importing Contacts done"] = "Kontakte wurden importiert."; $a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."; @@ -477,7 +312,7 @@ $a->strings["Invalid email."] = "Ungültige E-Mail-Adresse."; $a->strings["Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; -$a->strings["Settings updated."] = "Einstellungen aktualisiert."; +$a->strings["Settings were not updated."] = "Einstellungen nicht aktualisiert"; $a->strings["Add application"] = "Programm hinzufügen"; $a->strings["Save Settings"] = "Einstellungen speichern"; $a->strings["Name"] = "Name"; @@ -635,15 +470,158 @@ $a->strings["Upload File"] = "Datei hochladen"; $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["Contact suggestion successfully ignored."] = "Kontaktvorschlag erfolgreich ignoriert."; -$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["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["Tag(s) removed"] = "Tag(s) entfernt"; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["Common Friends"] = "Gemeinsame Kontakte"; +$a->strings["No items found"] = "Keine Einträge gefunden"; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Latest Activity"] = "Neueste Aktivität"; +$a->strings["Sort by latest activity"] = "Sortiere nach neueste Aktivität"; +$a->strings["Latest Posts"] = "Neueste Beiträge"; +$a->strings["Sort by post received date"] = "Nach Empfangsdatum der Beiträge sortiert"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus-Abonements"; +$a->strings["Error"] = [ + 0 => "Fehler", + 1 => "Fehler", +]; +$a->strings["Done"] = "Erledigt"; +$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; +$a->strings["You aren't following this contact."] = "Du folgst diesem Kontakt."; +$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."; +$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen"; +$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; +$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Profile URL"] = "Profil URL"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Do you really want to delete this message?"] = "Möchtest du diese Nachricht wirklich löschen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["Conversation not found."] = "Unterhaltung nicht gefunden."; +$a->strings["Message was not deleted."] = "Nachricht wurde nicht gelöscht"; +$a->strings["Conversation was not removed."] = "Unterhaltung wurde nicht entfernt"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - H:i"; +$a->strings["Delete conversation"] = "Unterhaltung 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["Unknown sender - %s"] = "Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und du"; +$a->strings["%d message"] = [ + 0 => "%d Nachricht", + 1 => "%d Nachrichten", +]; +$a->strings["Subscribing to OStatus contacts"] = "OStatus-Kontakten folgen"; +$a->strings["No contact provided."] = "Keine Kontakte gefunden."; +$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; +$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; +$a->strings["success"] = "Erfolg"; +$a->strings["failed"] = "Fehlgeschlagen"; +$a->strings["ignored"] = "Ignoriert"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["User deleted their account"] = "Gelöschter Nutzeraccount"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden."; +$a->strings["The user id is %d"] = "Die ID des Users lautet %d"; +$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["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["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["The requested item doesn't exist or has been deleted."] = "Der angeforderte Beitrag existiert nicht oder wurde gelöscht."; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["The feed for this item is unavailable."] = "Der Feed für diesen Beitrag ist nicht verfügbar."; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; +$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["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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gestellt haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren, folge bitte diesem Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$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["Request has expired, please make a new one."] = "Die Anfrage ist abgelaufen. Bitte stelle eine erneute."; +$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["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 reset."] = "Dein Passwort wurde zurück gesetzt."; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort in eines, das du dir leicht merken kannst)."; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; +$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 an der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild an der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = [ + 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 Kontaktanfragen 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["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 in Kontakt stehst."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Blocked domain"] = "Blockierte Domain"; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "; +$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["Confirm"] = "Bestätigen"; +$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["Friend/Connection Request"] = "Kontaktanfrage"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Gib entweder deinen Webfinger (user@domain.tld) oder deine Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird (z.B. von Diaspora*) musst du von deinem System aus %s folgen "; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten."; +$a->strings["Your Webfinger address or profile URL:"] = "Deine Webfinger Adresse oder Profil-URL"; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["%s knows you"] = "%skennt dich"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$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"] = "Nein"; +$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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; +$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; +$a->strings["Post updated."] = "Beitrag aktualisiert."; +$a->strings["Item wasn't stored."] = "Eintrag wurde nicht gespeichert"; +$a->strings["Item couldn't be fetched."] = "Eintrag konnte nicht geholt werden."; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; +$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?"; $a->strings["User imports on closed servers can only be done by an administrator."] = "Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren."; $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["Import"] = "Import"; @@ -653,236 +631,139 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) 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["You aren't following this contact."] = "Du folgst diesem Kontakt."; -$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."; -$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt"; -$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen"; -$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["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["Invalid request."] = "Ungültige Anfrage"; -$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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["User not found."] = "Benutzer nicht gefunden."; +$a->strings["View"] = "Ansehen"; +$a->strings["Previous"] = "Vorherige"; +$a->strings["Next"] = "Nächste"; +$a->strings["today"] = "Heute"; +$a->strings["month"] = "Monat"; +$a->strings["week"] = "Woche"; +$a->strings["day"] = "Tag"; +$a->strings["list"] = "Liste"; +$a->strings["User not found"] = "Nutzer nicht gefunden"; +$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt."; +$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden"; +$a->strings["calendar"] = "Kalender"; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["Save"] = "Speichern"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden, bevor sie beginnt."; +$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; +$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; +$a->strings["Event details"] = "Veranstaltungsdetails"; +$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt 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["Basic"] = "Allgemein"; +$a->strings["Advanced"] = "Erweitert"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen"; +$a->strings["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden."; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["Files"] = "Dateien"; +$a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["everybody"] = "jeder"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Album successfully deleted"] = "Album wurde erfolgreich gelöscht."; +$a->strings["Album was empty."] = "Album ist leer."; +$a->strings["Failed to delete the photo."] = "Das Foto konnte nicht gelöscht werden."; +$a->strings["a photo"] = "einem Foto"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["Image upload didn't complete, please try again"] = "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."; +$a->strings["Image file is missing"] = "Bilddatei konnte nicht gefunden werden."; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator."; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or select existing album:"] = "oder wähle ein bestehendes Album:"; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$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 Album"] = "Album löschen"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Drop Album"] = "Album löschen"; +$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["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Delete photo"] = "Foto löschen"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Select tags to remove]"] = "[Zu entfernende Tags auswählen]"; +$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["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$a->strings["This is you"] = "Das bist du"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Map"] = "Karte"; +$a->strings["You must be logged in to use addons. "] = "Du musst angemeldet sein, um Addons benutzen zu können."; +$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; +$a->strings["toggle mobile"] = "mobile Ansicht umschalten"; $a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch, dich mit der von dir angegebenen OpenID anzumelden, trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."; $a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; $a->strings["Login failed. Please check your credentials."] = "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben."; $a->strings["Welcome %s"] = "Willkommen %s"; $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back %s"] = "Willkommen zurück %s"; -$a->strings["You must be logged in to use addons. "] = "Du musst angemeldet sein, um Addons benutzen zu können."; -$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; -$a->strings["toggle mobile"] = "mobile Ansicht umschalten"; $a->strings["Method not allowed for this module. Allowed method(s): %s"] = "Diese Methode ist in diesem Modul nicht erlaubt. Erlaubte Methoden sind: %s"; $a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["No system theme config value set."] = "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt."; -$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["Could not find any unarchived contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein nicht-archivierter Kontakt gefunden werden"; -$a->strings["The contact entries have been archived"] = "Die Kontakteinträge wurden archiviert."; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein Kontakt gefunden werden"; -$a->strings["The contact has been blocked from the node"] = "Der Kontakt wurde von diesem Knoten geblockt"; -$a->strings["Post update version number has been set to %s."] = "Die Post-Update-Versionsnummer wurde auf %s gesetzt."; -$a->strings["Check for pending update actions."] = "Überprüfe ausstehende Update-Aktionen"; -$a->strings["Done."] = "Erledigt."; -$a->strings["Execute pending post updates."] = "Ausstehende Post-Updates ausführen"; -$a->strings["All pending post updates are done."] = "Alle ausstehenden Post-Updates wurden ausgeführt."; -$a->strings["Enter new password: "] = "Neues Passwort eingeben:"; -$a->strings["Enter user name: "] = "Nutzername angeben"; -$a->strings["Enter user nickname: "] = "Spitzname angeben:"; -$a->strings["Enter user email address: "] = "E-Mail Adresse angeben:"; -$a->strings["Enter a language (optional): "] = "Sprache angeben (optional):"; -$a->strings["User is not pending."] = "Benutzer wartet nicht."; -$a->strings["Type \"yes\" to delete %s"] = "\"yes\" eingeben um %s zu löschen"; -$a->strings["newer"] = "neuer"; -$a->strings["older"] = "älter"; -$a->strings["Frequently"] = "immer wieder"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zweimal täglich"; -$a->strings["Daily"] = "Täglich"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$a->strings["Diaspora"] = "Diaspora"; -$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["Discourse"] = "Discourse"; -$a->strings["Diaspora Connector"] = "Diaspora Connector"; -$a->strings["GNU Social Connector"] = "GNU Social Connector"; -$a->strings["ActivityPub"] = "ActivityPub"; -$a->strings["pnut"] = "pnut"; -$a->strings["%s (via %s)"] = "%s (via %s)"; -$a->strings["General Features"] = "Allgemeine Features"; -$a->strings["Photo Location"] = "Aufnahmeort"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."; -$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren"; -$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher, den öffentlichen Kalender herunter zu laden"; -$a->strings["Trending Tags"] = "Trending Tags"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Auf der Gemeinschaftsseite ein Widget mit den meist benutzten Tags in öffentlichen Beiträgen anzeigen."; -$a->strings["Post Composition Features"] = "Beitragserstellung-Features"; -$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; -$a->strings["Add/remove mention when a forum 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["Explicit Mentions"] = "Explizite Erwähnungen"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Füge Erwähnungen zum Kommentarfeld hinzu, um manuell über die explizite Erwähnung von Gesprächsteilnehmern zu entscheiden."; -$a->strings["Network Sidebar"] = "Netzwerk-Seitenleiste"; -$a->strings["Archives"] = "Archiv"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, die Beiträge nach Datumsbereichen zu sortieren"; -$a->strings["Protocol Filter"] = "Protokoll-Filter"; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "Aktiviere Widget, um Netzwerkbeiträge nur von ausgesuchten Protokollen anzuzeigen"; -$a->strings["Network Tabs"] = "Netzwerk-Reiter"; -$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["Post Categories"] = "Beitragskategorien"; -$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; -$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen"; -$a->strings["List Forums"] = "Zeige Foren"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"; -$a->strings["Tag Cloud"] = "Schlagwortwolke"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen"; -$a->strings["Display Membership Date"] = "Mitgliedschaftsdatum anzeigen"; -$a->strings["Display membership date in profile"] = "Das Datum der Registrierung deines Accounts im Profil anzeigen"; -$a->strings["Forums"] = "Foren"; -$a->strings["External link to forum"] = "Externer Link zum Forum"; -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Go back"] = "Geh zurück"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Home"] = "Pinnwand"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registrieren"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Zusätzliche Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search"] = "Suche"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Full Text"] = "Volltext"; -$a->strings["Tags"] = "Tags"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["Conversations on this and other servers"] = "Unterhaltungen auf diesem und anderen Servern"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$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["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["Terms of Service of this Friendica instance"] = "Die Nutzungsbedingungen dieser Friendica-Instanz"; -$a->strings["Network"] = "Netzwerk"; -$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; -$a->strings["Introductions"] = "Kontaktanfragen"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["Notifications"] = "Benachrichtigungen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Accounts"] = "Nutzerkonten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/bearbeiten"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["prev"] = "vorige"; -$a->strings["last"] = "letzte"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s%3\$s"; -$a->strings["Click to open/close"] = "Zum Öffnen/Schließen klicken"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll"; -$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll"; -$a->strings["Loading more entries..."] = "lade weitere Einträge..."; -$a->strings["The end"] = "Das Ende"; -$a->strings["Follow"] = "Folge"; -$a->strings["Export"] = "Exportieren"; -$a->strings["Export calendar as ical"] = "Kalender als ical exportieren"; -$a->strings["Export calendar as csv"] = "Kalender als csv exportieren"; -$a->strings["No contacts"] = "Keine Kontakte"; -$a->strings["%d Contact"] = [ - 0 => "%d Kontakt", - 1 => "%d Kontakte", -]; -$a->strings["View Contacts"] = "Kontakte anzeigen"; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "Trending Tags (%d Stunde)", - 1 => "Trending Tags (%d Stunden)", -]; -$a->strings["More Trending Tags"] = "mehr Trending Tags"; -$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"] = [ - 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["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Find"] = "Finde"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Everyone"] = "Jeder"; -$a->strings["Following"] = "Gefolgte"; -$a->strings["Mutual friends"] = "Beidseitige Freundschaft"; -$a->strings["Relationships"] = "Beziehungen"; -$a->strings["All Contacts"] = "Alle Kontakte"; -$a->strings["Protocols"] = "Protokolle"; -$a->strings["All Protocols"] = "Alle Protokolle"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["%d contact in common"] = [ - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -]; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "Es gibt keine MyISAM oder InnoDB Tabellem mit dem Antelope Dateiformat."; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten"; +$a->strings["Another database update is currently running."] = "Es läuft bereits ein anderes Datenbank Update"; +$a->strings["%s: Database update"] = "%s: Datenbank Aktualisierung"; +$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s"; +$a->strings["Database error %d \"%s\" at \"%s\""] = "Datenbank Fehler %d \"%s\" auf \"%s\""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = "Die Template Engine kann nicht ohne einen Namen registriert werden."; +$a->strings["template engine is not registered!"] = "Template Engine wurde nicht registriert!"; +$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = "[Friendica-Benachrichtigung]: Datenbank Update"; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n \t\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert."; $a->strings["Yourself"] = "Du selbst"; +$a->strings["Followers"] = "Folgende"; +$a->strings["Mutuals"] = "Beidseitige Freundschaft"; $a->strings["Post to Email"] = "An E-Mail senden"; $a->strings["Public"] = "Öffentlich"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "Dieser Inhalt wird all deine Abonenten sowie auf der Gemeinschaftsseite angezeigt. Außerdem kann ihn jeder sehen, der den Link kennt."; @@ -895,7 +776,7 @@ $a->strings["The database configuration file \"config/local.config.php\" could n $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["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 your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker-Setup'"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker-Setup'"; $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"; @@ -998,11 +879,6 @@ $a->strings["finger"] = "befummeln"; $a->strings["fingered"] = "befummelte"; $a->strings["rebuff"] = "eine Abfuhr erteilen"; $a->strings["rebuffed"] = "abfuhrerteilte"; -$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = "[Friendica-Benachrichtigung]: Datenbank Update"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n \t\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert."; $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["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; @@ -1013,11 +889,104 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzer-Profils"; $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["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "Es gibt keine MyISAM oder InnoDB Tabellem mit dem Antelope Dateiformat."; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten"; -$a->strings["%s: Database update"] = "%s: Datenbank Aktualisierung"; -$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s"; +$a->strings["Legacy module file not found: %s"] = "Legacy-Moduldatei nicht gefunden: %s"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; +$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."; +$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; +$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["pinned item"] = "Angehefteter Beitrag"; +$a->strings["Delete locally"] = "Lokal löschen"; +$a->strings["Delete globally"] = "Global löschen"; +$a->strings["Remove locally"] = "Lokal entfernen"; +$a->strings["save to folder"] = "In Ordner speichern"; +$a->strings["I will attend"] = "Ich werde teilnehmen"; +$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; +$a->strings["I might attend"] = "Ich werde eventuell teilnehmen"; +$a->strings["ignore thread"] = "Thread ignorieren"; +$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; +$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["pin"] = "anheften"; +$a->strings["unpin"] = "losmachen"; +$a->strings["toggle pin status"] = "Angeheftet Status ändern"; +$a->strings["pinned"] = "angeheftet"; +$a->strings["add star"] = "markieren"; +$a->strings["remove star"] = "Markierung entfernen"; +$a->strings["toggle star status"] = "Markierung umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["add tag"] = "Tag hinzufügen"; +$a->strings["like"] = "mag ich"; +$a->strings["dislike"] = "mag ich nicht"; +$a->strings["Share this"] = "Weitersagen"; +$a->strings["share"] = "Teilen"; +$a->strings["%s (Received %s)"] = "%s (Empfangen %s)"; +$a->strings["Comment this item on your system"] = "Kommentiere diesen Beitrag von deinem System aus"; +$a->strings["remote comment"] = "Entfernter Kommentar"; +$a->strings["Pushed"] = "Pushed"; +$a->strings["Pulled"] = "Pulled"; +$a->strings["to"] = "zu"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Reply to %s"] = "Antworte %s"; +$a->strings["More"] = "Mehr"; +$a->strings["Notifier task is pending"] = "Die Benachrichtigungsaufgabe ist ausstehend"; +$a->strings["Delivery to remote servers is pending"] = "Die Auslieferung an Remote-Server steht noch aus"; +$a->strings["Delivery to remote servers is underway"] = "Die Auslieferung an Remote-Server ist unterwegs"; +$a->strings["Delivery to remote servers is mostly done"] = "Die Zustellung an Remote-Server ist fast erledigt"; +$a->strings["Delivery to remote servers is done"] = "Die Zustellung an die Remote-Server ist erledigt"; +$a->strings["%d comment"] = [ + 0 => "%d Kommentar", + 1 => "%d Kommentare", +]; +$a->strings["Show more"] = "Zeige mehr"; +$a->strings["Show fewer"] = "Zeige weniger"; +$a->strings["comment"] = [ + 0 => "Kommentar", + 1 => "Kommentare", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein nicht-archivierter Kontakt gefunden werden"; +$a->strings["The contact entries have been archived"] = "Die Kontakteinträge wurden archiviert."; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein Kontakt gefunden werden"; +$a->strings["The contact has been blocked from the node"] = "Der Kontakt wurde von diesem Knoten geblockt"; +$a->strings["Enter new password: "] = "Neues Passwort eingeben:"; +$a->strings["Enter user name: "] = "Nutzername angeben"; +$a->strings["Enter user nickname: "] = "Spitzname angeben:"; +$a->strings["Enter user email address: "] = "E-Mail Adresse angeben:"; +$a->strings["Enter a language (optional): "] = "Sprache angeben (optional):"; +$a->strings["User is not pending."] = "Benutzer wartet nicht."; +$a->strings["User has already been marked for deletion."] = "User wurde bereits zum Löschen ausgewählt"; +$a->strings["Type \"yes\" to delete %s"] = "\"yes\" eingeben um %s zu löschen"; +$a->strings["Deletion aborted."] = "Löschvorgang abgebrochen."; +$a->strings["Post update version number has been set to %s."] = "Die Post-Update-Versionsnummer wurde auf %s gesetzt."; +$a->strings["Check for pending update actions."] = "Überprüfe ausstehende Update-Aktionen"; +$a->strings["Done."] = "Erledigt."; +$a->strings["Execute pending post updates."] = "Ausstehende Post-Updates ausführen"; +$a->strings["All pending post updates are done."] = "Alle ausstehenden Post-Updates wurden ausgeführt."; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = "Das Verzeichnis view/smarty3/ muss für den Web-Server beschreibbar sein."; +$a->strings["Hometown:"] = "Heimatort:"; +$a->strings["Marital Status:"] = "Familienstand:"; +$a->strings["With:"] = "Mit:"; +$a->strings["Since:"] = "Seit:"; +$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Title/Description:"] = "Titel/Beschreibung:"; +$a->strings["Summary"] = "Zusammenfassung"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; +$a->strings["No system theme config value set."] = "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt."; $a->strings["Friend Suggestion"] = "Kontaktvorschlag"; $a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; $a->strings["New Follower"] = "Neuer Bewunderer"; @@ -1029,182 +998,526 @@ $a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil"; $a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil"; $a->strings["%s may attending %s's event"] = "%s nimmt eventuell an %s's Veranstaltung teil"; $a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet"; -$a->strings["Legacy module file not found: %s"] = "Legacy-Moduldatei nicht gefunden: %s"; -$a->strings["UnFollow"] = "Entfolgen"; -$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Network Notifications"] = "Netzwerkbenachrichtigungen"; +$a->strings["System Notifications"] = "Systembenachrichtigungen"; +$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; +$a->strings["Home Notifications"] = "Pinnwandbenachrichtigungen"; +$a->strings["No more %s notifications."] = "Keine weiteren %s-Benachrichtigungen"; +$a->strings["Show unread"] = "Ungelesene anzeigen"; +$a->strings["Show all"] = "Alle anzeigen"; +$a->strings["You must be logged in to show this page."] = "Du musst eingeloggt sein damit diese Seite angezeigt werden kann."; +$a->strings["Notifications"] = "Benachrichtigungen"; +$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; +$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; +$a->strings["Notification type:"] = "Art der Benachrichtigung:"; +$a->strings["Suggested by:"] = "Vorgeschlagen von:"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen"; $a->strings["Approve"] = "Genehmigen"; -$a->strings["Organisation"] = "Organisation"; -$a->strings["News"] = "Nachrichten"; -$a->strings["Forum"] = "Forum"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke"; -$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 E-Mail-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["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["all-day"] = "ganztägig"; -$a->strings["Sept"] = "Sep"; -$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["Duplicate event"] = "Veranstaltung kopieren"; -$a->strings["Delete event"] = "Veranstaltung löschen"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["D g:i A"] = "D H:i"; -$a->strings["g:i A"] = "H:i"; -$a->strings["Show map"] = "Karte anzeigen"; -$a->strings["Hide map"] = "Karte verbergen"; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch, %s"; -$a->strings["Item filed"] = "Beitrag abgelegt"; -$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"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Edit groups"] = "Gruppen bearbeiten"; -$a->strings["activity"] = "Aktivität"; -$a->strings["comment"] = [ - 0 => "Kommentar", - 1 => "Kommentare", -]; -$a->strings["post"] = "Beitrag"; -$a->strings["Content warning: %s"] = "Inhaltswarnung: %s"; -$a->strings["bytes"] = "Byte"; -$a->strings["View on separate page"] = "Auf separater Seite ansehen"; -$a->strings["view on separate page"] = "auf separater Seite ansehen"; -$a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Change profile photo"] = "Profilbild ändern"; -$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Claims to be known to you: "] = "Behauptet, dich zu kennen: "; +$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."; +$a->strings["Friend"] = "Kontakt"; +$a->strings["Subscriber"] = "Abonnent"; $a->strings["About:"] = "Über:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Unfollow"] = "Entfolgen"; -$a->strings["Atom feed"] = "Atom-Feed"; $a->strings["Network:"] = "Netzwerk:"; -$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["Upcoming events the next 7 days:"] = "Veranstaltungen der nächsten 7 Tage:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Database storage failed to update %s"] = "Datenbankspeicher konnte nicht aktualisiert werden %s"; -$a->strings["Database storage failed to insert data"] = "Der Datenbankspeicher konnte keine Daten einfügen"; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Dateisystemspeicher konnte nicht erstellt werden \"%s\". Überprüfe, ob du Schreibberechtigungen hast."; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Der Dateisystemspeicher konnte die Daten nicht in \"%s\" speichern. Überprüfe Deine Schreibberechtigungen"; -$a->strings["Storage base path"] = "Dateipfad zum Speicher"; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Verzeichnis, in das Dateien hochgeladen werden. Für maximale Sicherheit sollte dies ein Pfad außerhalb der Webserver-Verzeichnisstruktur sein"; -$a->strings["Enter a valid existing folder"] = "Gib einen gültigen, existierenden Ordner ein"; -$a->strings["Login failed"] = "Anmeldung fehlgeschlagen"; -$a->strings["Not enough information to authenticate"] = "Nicht genügend Informationen für die Authentifizierung"; -$a->strings["Password can't be empty"] = "Das Passwort kann nicht leer sein"; -$a->strings["Empty passwords are not allowed."] = "Leere Passwörter sind nicht erlaubt."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten"; -$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; -$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["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus."; -$a->strings["Username should be at least %s character."] = [ - 0 => "Der Benutzername sollte aus mindestens %s Zeichen bestehen.", - 1 => "Der Benutzername sollte aus mindestens %s Zeichen bestehen.", +$a->strings["No introductions."] = "Keine Kontaktanfragen."; +$a->strings["A Decentralized Social Network"] = "Ein dezentrales Soziales Netzwerk"; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["Invalid code, please retry."] = "Ungültiger Code, bitte erneut versuchen."; +$a->strings["Two-factor authentication"] = "Zwei-Faktor Authentifizierung"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Öffnen Sie die Zwei-Faktor-Authentifizierungs-App auf Ihrem Gerät, um einen Authentifizierungscode abzurufen und Ihre Identität zu überprüfen.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Hast du dein Handy nicht? Geben Sie einen Zwei-Faktor-Wiederherstellungscode ein"; +$a->strings["Please enter a code from your authentication app"] = "Bitte geben Sie einen Code aus Ihrer Authentifizierungs-App ein"; +$a->strings["Verify code and complete login"] = "Code überprüfen und Anmeldung abschließen"; +$a->strings["Remaining recovery codes: %d"] = "Verbleibende Wiederherstellungscodes: %d"; +$a->strings["Two-factor recovery"] = "Zwei-Faktor-Wiederherstellung"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

Sie können einen Ihrer einmaligen Wiederherstellungscodes eingeben, falls Sie den Zugriff auf Ihr Mobilgerät verloren haben.

"; +$a->strings["Please enter a recovery code"] = "Bitte geben Sie einen Wiederherstellungscode ein"; +$a->strings["Submit recovery code and complete login"] = "Senden Sie den Wiederherstellungscode und schließen Sie die Anmeldung ab"; +$a->strings["Create a New Account"] = "Neues Konto erstellen"; +$a->strings["Register"] = "Registrieren"; +$a->strings["Your OpenID: "] = "Deine OpenID:"; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Bitte gib seinen Nutzernamen und das Passwort ein um die OpenID zu deinem bestehenden Nutzerkonto hinzufügen zu können."; +$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; +$a->strings["Logout"] = "Abmelden"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; +$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["OpenID protocol error. No ID returned"] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Nutzerkonto nicht gefunden. Bitte melde dich an und füge die OpenID zu deinem Konto hinzu."; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Nutzerkonto nicht gefunden. Bitte registriere ein neues Konto oder melde dich mit einem existierendem Konto an um diene OpenID hinzuzufügen."; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; +$a->strings["Time Conversion"] = "Zeitumrechnung"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; +$a->strings["UTC time: %s"] = "UTC Zeit: %s"; +$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; +$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; +$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; +$a->strings["Source input"] = "Originaltext:"; +$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (pures HTML)"; +$a->strings["BBCode::convert"] = "BBCode::convert"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = "BBCode::toMarkdown => Markdown::convert (rohes HTML)"; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; +$a->strings["Item Body"] = "Beitragskörper"; +$a->strings["Item Tags"] = "Tags des Beitrags"; +$a->strings["PageInfo::appendToBody"] = "PageInfo::appendToBody"; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = "PageInfo::appendToBody => BBCode::convert (pures HTML)"; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = "PageInfo::appendToBody => BBCode::convert"; +$a->strings["Source input (Diaspora format)"] = "Originaltext (Diaspora Format): "; +$a->strings["Source input (Markdown)"] = "Originaltext (Markdown)"; +$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (pures HTML)"; +$a->strings["Markdown::convert"] = "Markdown::convert"; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Reine HTML Eingabe"; +$a->strings["HTML Input"] = "HTML Eingabe"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (pures HTML)"; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; +$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (kompakt)"; +$a->strings["Decoded post"] = "Dekodierter Beitrag"; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = "Konvertierter Beitrag"; +$a->strings["Converted body"] = "Konvertierter Beitragskörper"; +$a->strings["Twitter addon is absent from the addon/ folder."] = "Das Twitter-Addon konnte nicht im addpn/ Verzeichnis gefunden werden."; +$a->strings["Source text"] = "Quelltext"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source"] = "Twitter Quelle"; +$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."; +$a->strings["Formatted"] = "Formatiert"; +$a->strings["Source"] = "Quelle"; +$a->strings["Activity"] = "Aktivität"; +$a->strings["Object data"] = "Objekt Daten"; +$a->strings["Result Item"] = "Resultierender Eintrag"; +$a->strings["Source activity"] = "Quelle der Aktivität"; +$a->strings["You must be logged in to use this module"] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können."; +$a->strings["Source URL"] = "URL der Quelle"; +$a->strings["Lookup address"] = "Adresse nachschlagen"; +$a->strings["%s's timeline"] = "Timeline von %s"; +$a->strings["%s's posts"] = "Beiträge von %s"; +$a->strings["%s's comments"] = "Kommentare von %s"; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["Follower (%s)"] = [ + 0 => "Folgende (%s)", + 1 => "Folgende (%s)", ]; -$a->strings["Username should be at most %s character."] = [ - 0 => "Der Benutzername sollte aus maximal %s Zeichen bestehen.", - 1 => "Der Benutzername sollte aus maximal %s Zeichen bestehen.", +$a->strings["Following (%s)"] = [ + 0 => "Gefolgte (%s)", + 1 => "Gefolgte (%s)", ]; -$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["The nickname was blocked from registration by the nodes admin."] = "Der Admin des Knotens hat den Spitznamen für die Registrierung gesperrt."; -$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 _."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; -$a->strings["Nickname is already registered. 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["An error occurred creating your self contact. Please try again."] = "Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut."; -$a->strings["Friends"] = "Kontakte"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s\nein Admin von %2\$s hat dir ein Nutzerkonto angelegt."; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\nNachfolgend die Anmeldedetails:\n\nAdresse der Seite: %1\$s\nBenutzername: %2\$s\nPasswort: %3\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet hast.Bitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser Seite zu kontrollieren.Eventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können.Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).Wir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.Außerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter angibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.Wir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDu kannst dein Nutzerkonto jederzeit unter %1\$s/removeme wieder löschen.\n\nDanke und willkommen auf %4\$s."; -$a->strings["Registration details for %s"] = "Details der Registration von %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tHallo %1\$s,\n\t\t\t\tdanke für deine Registrierung auf %2\$s. Dein Account muss noch vom Admin des Knotens freigeschaltet werden.\n\n\t\t\tDeine Zugangsdaten lauten wie folgt:\n\n\t\t\tSeitenadresse:\t%3\$s\n\t\t\tAnmeldename:\t\t%4\$s\n\t\t\tPasswort:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Registrierung als %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tHallo %1\$s,\n\t\t\t\tDanke für die Registrierung auf %2\$s. Dein Account wurde angelegt.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3\$s/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Addon not found."] = "Addon nicht gefunden."; -$a->strings["Addon %s disabled."] = "Addon %s ausgeschaltet."; -$a->strings["Addon %s enabled."] = "Addon %s eingeschaltet."; +$a->strings["Mutual friend (%s)"] = [ + 0 => "Beidseitige Freundschafte (%s)", + 1 => "Beidseitige Freundschaften (%s)", +]; +$a->strings["Contact (%s)"] = [ + 0 => "Kontakt (%s)", + 1 => "Kontakte (%s)", +]; +$a->strings["All contacts"] = "Alle Kontakte"; +$a->strings["Following"] = "Gefolgte"; +$a->strings["Mutual friends"] = "Beidseitige Freundschaft"; +$a->strings["You're currently viewing your profile as %s Cancel"] = "Du betrachtest dein Profil gerade als %s Abbrechen"; +$a->strings["Member since:"] = "Mitglied seit:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age: "] = "Alter: "; +$a->strings["%d year old"] = [ + 0 => "%d Jahr alt", + 1 => "%d Jahre alt", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Forums:"] = "Foren:"; +$a->strings["View profile as:"] = "Das Profil aus der Sicht von jemandem anderen betrachten:"; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["View as"] = "Betrachten als"; +$a->strings["Only parent users can create additional accounts."] = "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden."; +$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["Note for the admin"] = "Hinweis für den Admin"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."; +$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 code: "] = "Dein Ein­la­dungs­code"; +$a->strings["Registration"] = "Registrierung"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"; +$a->strings["Please repeat your e-mail address:"] = "Bitte wiederhole deine E-Mail Adresse"; +$a->strings["Leave empty for an auto generated password."] = "Leer lassen, um das Passwort automatisch zu generieren."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@%s' sein."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica-Instanz"; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["Note: This node explicitly contains adult content"] = "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene"; +$a->strings["Parent Password:"] = "Passwort des Verwalters"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen."; +$a->strings["Password doesn't match."] = "Das Passwort stimmt nicht."; +$a->strings["Please enter your password."] = "Bitte gib dein Passwort an."; +$a->strings["You have entered too much information."] = "Du hast zu viele Informationen eingegeben."; +$a->strings["Please enter the identical mail address in the second field."] = "Bitte gib die gleiche E-Mail Adresse noch einmal an."; +$a->strings["The additional account was created."] = "Das zusätzliche Nutzerkonto wurde angelegt."; +$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 your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account-Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; +$a->strings["Registration successful."] = "Registrierung erfolgreich."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["You have to leave a request note for the admin."] = "Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Bad Request"] = "Ungültige Anfrage"; +$a->strings["Unauthorized"] = "Nicht autorisiert"; +$a->strings["Forbidden"] = "Verboten"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Internal Server Error"] = "Interner Serverfehler"; +$a->strings["Service Unavailable"] = "Dienst nicht verfügbar"; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = "Aufgrund eines offensichtlichen Fehlers auf der Seite des Clients kann oder wird der Server die Anfrage nicht bearbeiten."; +$a->strings["Authentication is required and has failed or has not yet been provided."] = "Die erforderliche Authentifizierung ist fehlgeschlagen oder noch nicht erfolgt."; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "Die Anfrage war gültig, aber der Server verweigert die Ausführung. Der Benutzer verfügt möglicherweise nicht über die erforderlichen Berechtigungen oder benötigt ein Nutzerkonto."; +$a->strings["The requested resource could not be found but may be available in the future."] = "Die angeforderte Ressource konnte nicht gefunden werden, sie könnte allerdings zu einem späteren Zeitpunkt verfügbar sein."; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "Eine unerwartete Situation ist eingetreten, zu der keine detailliertere Nachricht vorliegt."; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "Der Server ist derzeit nicht verfügbar (wegen Überlastung oder Wartungsarbeiten). Bitte versuche es später noch einmal."; +$a->strings["Go back"] = "Geh zurück"; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen."; +$a->strings["Suggested contact not found."] = "Vorgeschlagener Kontakt wurde 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["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikationsserver - Installation"; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL-Richtlinie, Links werden das verwendete Protokoll beibehalten"; +$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; +$a->strings["Base settings"] = "Grundeinstellungen"; +$a->strings["SSL link policy"] = "Regeln für SSL Links"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen"; +$a->strings["Host name"] = "Host Name"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Sollte der ermittelte Hostname nicht stimmen, korrigiere bitte den Eintrag."; +$a->strings["Base path to installation"] = "Basis-Pfad zur Installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."; +$a->strings["Sub path of the URL"] = "Unterverzeichnis (Pfad) der URL"; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Sollte das ermittelte Unterverzeichnis der Friendica Installation nicht stimmen, korrigiere es bitte. Wenn dieses Feld leer ist, bedeutet dies, dass die Installation direkt unter der Basis-URL installiert wird."; +$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["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein."; +$a->strings["Database Name"] = "Datenbank-Name"; +$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["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["System Language:"] = "Systemsprache:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendica-Seite wurde installiert."; +$a->strings["Installation finished"] = "Installation abgeschlossen"; +$a->strings["

What next

"] = "

Wie geht es weiter?

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "Wichtig: du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst."; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Item was not removed"] = "Item wurde nicht entfernt"; +$a->strings["Item was not deleted"] = "Item wurde nicht gelöscht"; +$a->strings["Wrong type \"%s\", expected one of: %s"] = "Falscher Typ \"%s\", hatte einen der Folgenden erwartet: %s"; +$a->strings["Model not found"] = "Model nicht gefunden"; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$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["Local Community"] = "Lokale Gemeinschaft"; +$a->strings["Posts from local users on this server"] = "Beiträge von Nutzern dieses Servers"; +$a->strings["Global Community"] = "Globale Gemeinschaft"; +$a->strings["Posts from users of the whole federated network"] = "Beiträge von Nutzern des gesamten föderalen Netzwerks"; +$a->strings["No results."] = "Keine Ergebnisse."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."; +$a->strings["Community option not available."] = "Optionen für die Gemeinschaftsseite nicht verfügbar."; +$a->strings["Not available."] = "Nicht verfügbar."; +$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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."; +$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 Kontakte und potentiellen Kontakte 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 Kontakte 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 Kontaktliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil-Schlüsselbegriffe"; +$a->strings["Set some public keywords for your 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 Profil 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["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 Kontakten und Mailinglisten interagieren willst."; +$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 Personen 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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute 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 Kontakte 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 anderen Programm-Features zu erhalten."; +$a->strings["This page is missing a url parameter."] = "Der Seite fehlt ein URL Parameter."; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "Information"; +$a->strings["Overview"] = "Übersicht"; +$a->strings["Federation Statistics"] = "Föderation Statistik"; +$a->strings["Configuration"] = "Konfiguration"; +$a->strings["Site"] = "Seite"; +$a->strings["Users"] = "Nutzer"; +$a->strings["Addons"] = "Addons"; +$a->strings["Themes"] = "Themen"; +$a->strings["Additional features"] = "Zusätzliche Features"; +$a->strings["Database"] = "Datenbank"; +$a->strings["DB updates"] = "DB Updates"; +$a->strings["Inspect Deferred Workers"] = "Verzögerte Worker inspizieren"; +$a->strings["Inspect worker Queue"] = "Worker Warteschlange inspizieren"; +$a->strings["Tools"] = "Werkzeuge"; +$a->strings["Contact Blocklist"] = "Kontakt Blockliste"; +$a->strings["Server Blocklist"] = "Server Blockliste"; +$a->strings["Delete Item"] = "Eintrag löschen"; +$a->strings["Logs"] = "Protokolle"; +$a->strings["View Logs"] = "Protokolle anzeigen"; +$a->strings["Diagnostics"] = "Diagnostik"; +$a->strings["PHP Info"] = "PHP-Info"; +$a->strings["probe address"] = "Adresse untersuchen"; +$a->strings["check webfinger"] = "Webfinger überprüfen"; +$a->strings["Item Source"] = "Beitrags Quelle"; +$a->strings["Babel"] = "Babel"; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "Administration"; +$a->strings["Addon Features"] = "Addon Features"; +$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen, die auf Bestätigung warten"; +$a->strings["%d contact edited."] = [ + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet.", +]; +$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; +$a->strings["Follow"] = "Folge"; +$a->strings["Unfollow"] = "Entfolgen"; +$a->strings["Contact not found"] = "Kontakt nicht gefunden"; +$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; +$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; +$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; +$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; +$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; +$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; +$a->strings["Drop contact"] = "Kontakt löschen"; +$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; +$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; +$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; +$a->strings["You are sharing with %s"] = "Du teilst mit %s"; +$a->strings["%s is sharing with you"] = "%s teilt mit dir"; +$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; +$a->strings["Never"] = "Niemals"; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."; +$a->strings["Disabled"] = "Deaktiviert"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch keywords"] = "Schlüsselwörter abrufen"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact Information / Notes"] = "Kontakt-Informationen / -Notizen"; +$a->strings["Contact Settings"] = "Kontakteinstellungen"; +$a->strings["Contact"] = "Kontakt"; +$a->strings["Their personal note"] = "Die persönliche Mitteilung"; +$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["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Last update:"] = "Letzte Aktualisierung: "; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts"; +$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."; +$a->strings["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["Actions"] = "Aktionen"; +$a->strings["All Contacts"] = "Alle Kontakte"; +$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Pending"] = "Ausstehend"; +$a->strings["Only show pending contacts"] = "Zeige nur noch ausstehende Kontakte."; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; +$a->strings["Organize your contact groups"] = "Verwalte deine Kontaktgruppen"; +$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Results for: %s"] = "Ergebnisse für: %s"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Batch Actions"] = "Stapelverarbeitung"; +$a->strings["Conversations started by this contact"] = "Unterhaltungen, die von diesem Kontakt begonnen wurden"; +$a->strings["Posts and Comments"] = "Statusnachrichten und Kommentare"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["View all common friends"] = "Alle Kontakte anzeigen"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$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["Pending outgoing contact request"] = "Ausstehende ausgehende Kontaktanfrage"; +$a->strings["Pending incoming contact request"] = "Ausstehende eingehende Kontaktanfrage"; +$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig."; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1\$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert."; +$a->strings["Privacy Statement"] = "Datenschutzerklärung"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Method Not Allowed."] = "Methode nicht erlaubt."; +$a->strings["Profile not found"] = ""; +$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."] = [ + 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["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."] = "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."; +$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s."; +$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://friendi.ca"] = "Für weitere Informationen über das Friendica-Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["Forum Search - %s"] = "Forensuche - %s"; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; +$a->strings["Theme %s disabled."] = "Theme %s deaktiviert."; +$a->strings["Theme %s successfully enabled."] = "Theme %s erfolgreich aktiviert."; +$a->strings["Theme %s failed to install."] = "Theme %s konnte nicht aktiviert werden."; +$a->strings["Screenshot"] = "Bildschirmfoto"; $a->strings["Administration"] = "Administration"; -$a->strings["Addons"] = "Addons"; $a->strings["Toggle"] = "Umschalten"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; -$a->strings["Addon %s failed to install."] = "Addon %s konnte nicht installiert werden"; -$a->strings["Reload active addons"] = "Aktivierte Addons neu laden"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1\$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2\$s."; -$a->strings["%s contact unblocked"] = [ - 0 => "%sKontakt wieder freigegeben", - 1 => "%sKontakte wieder freigegeben", +$a->strings["Unknown theme."] = "Unbekanntes Theme"; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Aktives Theme neu laden"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s platziert werden."; +$a->strings["[Experimental]"] = "[Experimentell]"; +$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; +$a->strings["Lock feature %s"] = "Feature festlegen: %s"; +$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten"; +$a->strings["%s user blocked"] = [ + 0 => "%s Nutzer blockiert", + 1 => "%s Nutzer blockiert", ]; -$a->strings["Remote Contact Blocklist"] = "Blockliste entfernter Kontakte"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden."; -$a->strings["Block Remote Contact"] = "Blockiere entfernten Kontakt"; +$a->strings["%s user unblocked"] = [ + 0 => "%s Nutzer freigeschaltet", + 1 => "%s Nutzer freigeschaltet", +]; +$a->strings["You can't remove yourself"] = "Du kannst dich nicht selbst löschen!"; +$a->strings["%s user deleted"] = [ + 0 => "%s Nutzer gelöscht", + 1 => "%s Nutzer gelöscht", +]; +$a->strings["%s user approved"] = [ + 0 => "%sNutzer zugelassen", + 1 => "%sNutzer zugelassen", +]; +$a->strings["%s registration revoked"] = [ + 0 => "%sRegistration zurückgezogen", + 1 => "%sRegistrierungen zurückgezogen", +]; +$a->strings["User \"%s\" deleted"] = "Nutzer \"%s\" gelöscht"; +$a->strings["User \"%s\" blocked"] = "Nutzer \"%s\" blockiert"; +$a->strings["User \"%s\" unblocked"] = "Nutzer \"%s\" frei geschaltet"; +$a->strings["Account approved."] = "Konto freigegeben."; +$a->strings["Registration revoked"] = "Registrierung zurückgezogen"; +$a->strings["Private Forum"] = "Privates Forum"; +$a->strings["Relay"] = "Relais"; +$a->strings["Email"] = "E-Mail"; +$a->strings["Register date"] = "Anmeldedatum"; +$a->strings["Last login"] = "Letzte Anmeldung"; +$a->strings["Last public item"] = "Letzter öffentliche Beitrag"; +$a->strings["Type"] = "Typ"; +$a->strings["Add User"] = "Nutzer hinzufügen"; $a->strings["select all"] = "Alle auswählen"; -$a->strings["select none"] = "Auswahl aufheben"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["No remote contact is blocked from this node."] = "Derzeit werden keine Kontakte auf diesem Knoten blockiert."; -$a->strings["Blocked Remote Contacts"] = "Blockierte Kontakte von anderen Knoten"; -$a->strings["Block New Remote Contact"] = "Blockieren von weiteren Kontakten"; -$a->strings["Photo"] = "Foto:"; -$a->strings["Reason"] = "Grund"; -$a->strings["%s total blocked contact"] = [ - 0 => "Insgesamt %s blockierter Kontakt", - 1 => "Insgesamt %s blockierte Kontakte", -]; -$a->strings["URL of the remote contact to block."] = "Die URL des entfernten Kontakts, der blockiert werden soll."; -$a->strings["Block Reason"] = "Sperrgrund"; -$a->strings["Server domain pattern added to blocklist."] = "Server Domain Muster zur Blockliste hinzugefügt"; -$a->strings["Site blocklist updated."] = "Blockliste aktualisiert."; -$a->strings["Blocked server domain pattern"] = "Blockierte Server Domain Muster"; -$a->strings["Reason for the block"] = "Begründung für die Blockierung"; -$a->strings["Delete server domain pattern"] = "Server Domain Muster löschen"; -$a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen"; -$a->strings["Server Domain Pattern Blocklist"] = "Server Domain Muster Blockliste"; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast."; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:

\n
    \n\t
  • *: Beliebige Anzahl von Zeichen
  • \n\t
  • ?: Ein einzelnes beliebiges Zeichen
  • \n\t
  • [<Zeichen1><Zeichen2>...]:Zeichen1 oder Zeichen2
  • \n
"; -$a->strings["Add new entry to block list"] = "Neuen Eintrag in die Blockliste"; -$a->strings["Server Domain Pattern"] = "Server Domain Muster"; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "Das Muster für Server Domains die geblockt werden sollen. Gib das Protokoll nicht mit an!"; -$a->strings["Block reason"] = "Begründung der Blockierung"; -$a->strings["The reason why you blocked this server domain pattern."] = "Die Begründung, warum du dieses Domain Muster blockiert hast."; -$a->strings["Add Entry"] = "Eintrag hinzufügen"; -$a->strings["Save changes to the blocklist"] = "Änderungen der Blockliste speichern"; -$a->strings["Current Entries in the Blocklist"] = "Aktuelle Einträge der Blockliste"; -$a->strings["Delete entry from blocklist"] = "Eintrag von der Blockliste entfernen"; -$a->strings["Delete entry from blocklist?"] = "Eintrag von der Blockliste entfernen?"; +$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; +$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; +$a->strings["Request date"] = "Anfragedatum"; +$a->strings["No registrations."] = "Keine Neuanmeldungen."; +$a->strings["Note from the user"] = "Hinweis vom Nutzer"; +$a->strings["Deny"] = "Verwehren"; +$a->strings["User blocked"] = "Nutzer blockiert."; +$a->strings["Site admin"] = "Seitenadministrator"; +$a->strings["Account expired"] = "Account ist abgelaufen"; +$a->strings["New User"] = "Neuer Nutzer"; +$a->strings["Permanent deletion"] = "Permanent löschen"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; +$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?"] = "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?"; +$a->strings["Name of the new user."] = "Name des neuen Nutzers"; +$a->strings["Nickname"] = "Spitzname"; +$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer"; +$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers"; +$a->strings["Inspect Deferred Worker Queue"] = "Verzögerte Worker-Warteschlange inspizieren"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten."; +$a->strings["Inspect Worker Queue"] = "Worker-Warteschlange inspizieren"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast."; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = "Parameter der Aufgabe"; +$a->strings["Created"] = "Erstellt"; +$a->strings["Priority"] = "Priorität"; $a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; $a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"; @@ -1218,27 +1531,15 @@ $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["Lock feature %s"] = "Feature festlegen: %s"; -$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten"; $a->strings["Other"] = "Andere"; $a->strings["unknown"] = "Unbekannt"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "Die Funktion \"Regelmäßig globale Kontakte überprüfen\" ist nicht aktiv. Sie wird die hier angezeigten Daten verbessern."; -$a->strings["Federation Statistics"] = "Föderation Statistik"; $a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:"; -$a->strings["Item marked for deletion."] = "Eintrag wurden zur Löschung markiert"; -$a->strings["Delete Item"] = "Eintrag löschen"; -$a->strings["Delete this Item"] = "Diesen Eintrag löschen"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "Die GUID des zu löschenden Eintrags"; -$a->strings["Item Guid"] = "Beitrags-Guid"; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Fehler beim Öffnen der Logdatei %1\$s.\\r\\n
Bitte überprüfe ob die Datei %1\$s existiert und gelesen werden kann."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Konnte die Logdatei %1\$s nicht öffnen.\\r\\n
Bitte stelle sicher, dass die Datei %1\$s lesbar ist."; $a->strings["The logfile '%s' is not writable. No logging possible"] = "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich."; -$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert."; $a->strings["PHP log currently enabled."] = "PHP Protokollierung ist derzeit aktiviert."; $a->strings["PHP log currently disabled."] = "PHP Protokollierung ist derzeit nicht aktiviert."; -$a->strings["Logs"] = "Protokolle"; $a->strings["Clear"] = "löschen"; $a->strings["Enable Debugging"] = "Protokoll führen"; $a->strings["Log file"] = "Protokolldatei"; @@ -1246,20 +1547,9 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Protokoll-Level"; $a->strings["PHP logging"] = "PHP Protokollieren"; $a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um die Protokollierung von PHP-Fehlern und Warnungen vorübergehend zu aktivieren, kannst du der Datei index.php deiner Installation Folgendes voranstellen. Der in der Datei 'error_log' angegebene Dateiname ist relativ zum obersten Verzeichnis von Friendica und muss vom Webserver beschreibbar sein. Die Option '1' für 'log_errors' und 'display_errors' aktiviert diese Optionen, ersetze die '1' durch eine '0', um sie zu deaktivieren."; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Fehler beim Öffnen der Logdatei %1\$s.\\r\\n
Bitte überprüfe ob die Datei %1\$s existiert und gelesen werden kann."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Konnte die Logdatei %1\$s nicht öffnen.\\r\\n
Bitte stelle sicher, dass die Datei %1\$s lesbar ist."; -$a->strings["View Logs"] = "Protokolle anzeigen"; -$a->strings["Inspect Deferred Worker Queue"] = "Verzögerte Worker-Warteschlange inspizieren"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten."; -$a->strings["Inspect Worker Queue"] = "Worker-Warteschlange inspizieren"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast."; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = "Parameter der Aufgabe"; -$a->strings["Created"] = "Erstellt"; -$a->strings["Priority"] = "Priorität"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; +$a->strings["Relocation started. Could take a while to complete."] = ""; $a->strings["Invalid storage backend setting value."] = "Ungültige Einstellung für das Datenspeicher-Backend"; -$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["%s - (Experimental)"] = "%s - (Experimentell)"; $a->strings["No community page for local users"] = "Keine Gemeinschaftsseite für lokale Nutzer"; @@ -1267,31 +1557,18 @@ $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von NutzerInnen dieser Seite"; $a->strings["Public postings from the federated network"] = "Öffentliche Beiträge aus dem föderalen Netzwerk"; $a->strings["Public postings from local users and the federated network"] = "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk"; -$a->strings["Disabled"] = "Deaktiviert"; -$a->strings["Users"] = "Nutzer"; -$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte"; -$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback"; -$a->strings["One month"] = "ein Monat"; -$a->strings["Three months"] = "drei Monate"; -$a->strings["Half a year"] = "ein halbes Jahr"; -$a->strings["One year"] = "ein Jahr"; $a->strings["Multi user instance"] = "Mehrbenutzer-Instanz"; $a->strings["Closed"] = "Geschlossen"; $a->strings["Requires approval"] = "Bedarf der Zustimmung"; $a->strings["Open"] = "Offen"; -$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL-Richtlinie, Links werden das verwendete Protokoll beibehalten"; -$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; $a->strings["Don't check"] = "Nicht überprüfen"; $a->strings["check the stable version"] = "überprüfe die stabile Version"; $a->strings["check the development version"] = "überprüfe die Entwicklungsversion"; $a->strings["none"] = "keine"; -$a->strings["Direct contacts"] = "Direkte Kontakte"; -$a->strings["Contacts of contacts"] = "Kontakte deiner Kontakte"; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; $a->strings["Database (legacy)"] = "Datenbank (legacy)"; -$a->strings["Site"] = "Seite"; $a->strings["Republish users to directory"] = "Nutzer erneut im globalen Verzeichnis veröffentlichen."; -$a->strings["Registration"] = "Registrierung"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen"; @@ -1316,8 +1593,6 @@ $a->strings["System theme"] = "Systemweites Theme"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = "Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Ändere Einstellung des Standard-Themes"; $a->strings["Mobile system theme"] = "Systemweites mobiles Theme"; $a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -$a->strings["SSL link policy"] = "Regeln für SSL Links"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen"; $a->strings["Force SSL"] = "Erzwinge SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."; $a->strings["Hide help entry from navigation menu"] = "Verberge den Hilfe-Eintrag im Navigationsmenü"; @@ -1398,20 +1673,19 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast, bevor Vordergrundprozesse pausiert werden - Standard 50."; $a->strings["Minimal Memory"] = "Minimaler Speicher"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)"; -$a->strings["Maximum table size for optimization"] = "Maximale Tabellengröße zur Optimierung"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maximale Tabellengröße (in MB) für die automatische Optimierung - Gib -1 für Deaktivierung ein."; -$a->strings["Minimum level of fragmentation"] = "Minimaler Fragmentationsgrad"; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimaler Fragmentationsgrad von Datenbanktabellen, um die automatische Optimierung einzuleiten - Standardwert ist 30%"; -$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."; -$a->strings["Discover followers/followings from global contacts"] = "Neue Kontakte von den globalen Kontakten entdecken"; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = "Wenn dies aktiviert ist werden globale Kontakte regelmäßig auf neue Kontakte unter deren Kontakten und den Kontakten der Kontakte untersucht. Diese Option wird eine sehr große Zahl von Jobs für den Hintergrundprozess generieren und sollte deshalb nur auf leistungsstarken Servern aktiviert werden."; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = "Gleiche die Kontakte mit dem Directory-Server ab"; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nach dem ein Server erneut nach Kontakten abgefragt werden soll."; $a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', also den tatsächlichen Nutzern des anderen Systems, und 'globalen Kontakten', also aktiven Kontakten, die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica- und Redmatrix-Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallback-Modus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."; -$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum, in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt, um die Suchresultate zu verbessern, wenn die Suche wiederholt wird."; $a->strings["Publish server information"] = "Server-Informationen veröffentlichen"; @@ -1434,6 +1708,8 @@ $a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Wie lange sollen die zwischengespeicherten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item-Cache zu deaktivieren, setze diesen Wert auf -1."; $a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Temp-Pfad"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."; $a->strings["Disable picture proxy"] = "Bilder-Proxy deaktivieren"; @@ -1468,8 +1744,10 @@ $a->strings["Comma separated list of tags for the \"tags\" subscription."] = "Li $a->strings["Allow user tags"] = "Verwende Schlagworte der Nutzer"; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert."; $a->strings["Start Relocation"] = "Umsiedlung starten"; +$a->strings["Template engine (%s) error: %s"] = ""; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen."; $a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
"; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1\$s, die aktuelle Version ist %2\$s."; $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."; $a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = "Das letzte Update ist fehlgeschlagen. Bitte führe \"php bin/console.php dbstructure update\" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)"; @@ -1491,23 +1769,10 @@ $a->strings["Blog Account"] = "Blog-Konto"; $a->strings["Private Forum Account"] = "Privates Forum-Konto"; $a->strings["Message queues"] = "Nachrichten-Warteschlangen"; $a->strings["Server Settings"] = "Servereinstellungen"; -$a->strings["Summary"] = "Zusammenfassung"; $a->strings["Registered users"] = "Registrierte Personen"; $a->strings["Pending registrations"] = "Anstehende Anmeldungen"; $a->strings["Version"] = "Version"; $a->strings["Active addons"] = "Aktivierte Addons"; -$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; -$a->strings["Theme %s disabled."] = "Theme %s deaktiviert."; -$a->strings["Theme %s successfully enabled."] = "Theme %s erfolgreich aktiviert."; -$a->strings["Theme %s failed to install."] = "Theme %s konnte nicht aktiviert werden."; -$a->strings["Screenshot"] = "Bildschirmfoto"; -$a->strings["Themes"] = "Themen"; -$a->strings["Unknown theme."] = "Unbekanntes Theme"; -$a->strings["Reload active themes"] = "Aktives Theme neu laden"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s platziert werden."; -$a->strings["[Experimental]"] = "[Experimentell]"; -$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["The Terms of Service settings have been updated."] = "Die Einstellungen zur Nutzungsbedingung wurden aktualisiert"; $a->strings["Display Terms of Service"] = "Nutzungsbedingungen anzeigen"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt."; $a->strings["Display Privacy Statement"] = "Datenschutzerklärung anzeigen"; @@ -1515,94 +1780,129 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Vorschau: Datenschutzerklärung"; $a->strings["The Terms of Service"] = "Die Nutzungsbedingungen"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein."; -$a->strings["%s user blocked"] = [ - 0 => "%s Nutzer blockiert", - 1 => "%s Nutzer blockiert", +$a->strings["Server domain pattern added to blocklist."] = "Server Domain Muster zur Blockliste hinzugefügt"; +$a->strings["Blocked server domain pattern"] = "Blockierte Server Domain Muster"; +$a->strings["Reason for the block"] = "Begründung für die Blockierung"; +$a->strings["Delete server domain pattern"] = "Server Domain Muster löschen"; +$a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen"; +$a->strings["Server Domain Pattern Blocklist"] = "Server Domain Muster Blockliste"; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast."; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:

\n
    \n\t
  • *: Beliebige Anzahl von Zeichen
  • \n\t
  • ?: Ein einzelnes beliebiges Zeichen
  • \n\t
  • [<Zeichen1><Zeichen2>...]:Zeichen1 oder Zeichen2
  • \n
"; +$a->strings["Add new entry to block list"] = "Neuen Eintrag in die Blockliste"; +$a->strings["Server Domain Pattern"] = "Server Domain Muster"; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "Das Muster für Server Domains die geblockt werden sollen. Gib das Protokoll nicht mit an!"; +$a->strings["Block reason"] = "Begründung der Blockierung"; +$a->strings["The reason why you blocked this server domain pattern."] = "Die Begründung, warum du dieses Domain Muster blockiert hast."; +$a->strings["Add Entry"] = "Eintrag hinzufügen"; +$a->strings["Save changes to the blocklist"] = "Änderungen der Blockliste speichern"; +$a->strings["Current Entries in the Blocklist"] = "Aktuelle Einträge der Blockliste"; +$a->strings["Delete entry from blocklist"] = "Eintrag von der Blockliste entfernen"; +$a->strings["Delete entry from blocklist?"] = "Eintrag von der Blockliste entfernen?"; +$a->strings["%s contact unblocked"] = [ + 0 => "%sKontakt wieder freigegeben", + 1 => "%sKontakte wieder freigegeben", ]; -$a->strings["%s user unblocked"] = [ - 0 => "%s Nutzer freigeschaltet", - 1 => "%s Nutzer freigeschaltet", +$a->strings["Remote Contact Blocklist"] = "Blockliste entfernter Kontakte"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden."; +$a->strings["Block Remote Contact"] = "Blockiere entfernten Kontakt"; +$a->strings["select none"] = "Auswahl aufheben"; +$a->strings["No remote contact is blocked from this node."] = "Derzeit werden keine Kontakte auf diesem Knoten blockiert."; +$a->strings["Blocked Remote Contacts"] = "Blockierte Kontakte von anderen Knoten"; +$a->strings["Block New Remote Contact"] = "Blockieren von weiteren Kontakten"; +$a->strings["Photo"] = "Foto:"; +$a->strings["Reason"] = "Grund"; +$a->strings["%s total blocked contact"] = [ + 0 => "Insgesamt %s blockierter Kontakt", + 1 => "Insgesamt %s blockierte Kontakte", ]; -$a->strings["You can't remove yourself"] = "Du kannst dich nicht selbst löschen!"; -$a->strings["%s user deleted"] = [ - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", -]; -$a->strings["%s user approved"] = [ - 0 => "%sNutzer zugelassen", - 1 => "%sNutzer zugelassen", -]; -$a->strings["%s registration revoked"] = [ - 0 => "%sRegistration zurückgezogen", - 1 => "%sRegistrierungen zurückgezogen", -]; -$a->strings["User \"%s\" deleted"] = "Nutzer \"%s\" gelöscht"; -$a->strings["User \"%s\" blocked"] = "Nutzer \"%s\" blockiert"; -$a->strings["User \"%s\" unblocked"] = "Nutzer \"%s\" frei geschaltet"; -$a->strings["Account approved."] = "Konto freigegeben."; -$a->strings["Registration revoked"] = "Registrierung zurückgezogen"; -$a->strings["Private Forum"] = "Privates Forum"; -$a->strings["Relay"] = "Relais"; -$a->strings["Register date"] = "Anmeldedatum"; -$a->strings["Last login"] = "Letzte Anmeldung"; -$a->strings["Last public item"] = "Letzter öffentliche Beitrag"; -$a->strings["Type"] = "Typ"; -$a->strings["Add User"] = "Nutzer hinzufügen"; -$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; -$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; -$a->strings["Request date"] = "Anfragedatum"; -$a->strings["No registrations."] = "Keine Neuanmeldungen."; -$a->strings["Note from the user"] = "Hinweis vom Nutzer"; -$a->strings["Deny"] = "Verwehren"; -$a->strings["User blocked"] = "Nutzer blockiert."; -$a->strings["Site admin"] = "Seitenadministrator"; -$a->strings["Account expired"] = "Account ist abgelaufen"; -$a->strings["New User"] = "Neuer Nutzer"; -$a->strings["Permanent deletion"] = "Permanent löschen"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; -$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?"] = "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?"; -$a->strings["Name of the new user."] = "Name des neuen Nutzers"; -$a->strings["Nickname"] = "Spitzname"; -$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer"; -$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers"; -$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen."; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; -$a->strings["Applications"] = "Anwendungen"; +$a->strings["URL of the remote contact to block."] = "Die URL des entfernten Kontakts, der blockiert werden soll."; +$a->strings["Block Reason"] = "Sperrgrund"; +$a->strings["Item Guid"] = "Beitrags-Guid"; +$a->strings["Item marked for deletion."] = "Eintrag wurden zur Löschung markiert"; +$a->strings["Delete this Item"] = "Diesen Eintrag löschen"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "Die GUID des zu löschenden Eintrags"; +$a->strings["Addon not found."] = "Addon nicht gefunden."; +$a->strings["Addon %s disabled."] = "Addon %s ausgeschaltet."; +$a->strings["Addon %s enabled."] = "Addon %s eingeschaltet."; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = "Addon %s konnte nicht installiert werden"; +$a->strings["Reload active addons"] = "Aktivierte Addons neu laden"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1\$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2\$s."; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Results for:"] = "Ergebnisse für:"; +$a->strings["Site Directory"] = "Verzeichnis"; $a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto."; -$a->strings["Overview"] = "Übersicht"; -$a->strings["Configuration"] = "Konfiguration"; -$a->strings["Additional features"] = "Zusätzliche Features"; -$a->strings["Database"] = "Datenbank"; -$a->strings["DB updates"] = "DB Updates"; -$a->strings["Inspect Deferred Workers"] = "Verzögerte Worker inspizieren"; -$a->strings["Inspect worker Queue"] = "Worker Warteschlange inspizieren"; -$a->strings["Tools"] = "Werkzeuge"; -$a->strings["Contact Blocklist"] = "Kontakt Blockliste"; -$a->strings["Server Blocklist"] = "Server Blockliste"; -$a->strings["Diagnostics"] = "Diagnostik"; -$a->strings["PHP Info"] = "PHP-Info"; -$a->strings["probe address"] = "Adresse untersuchen"; -$a->strings["check webfinger"] = "Webfinger überprüfen"; -$a->strings["Item Source"] = "Beitrags Quelle"; -$a->strings["Babel"] = "Babel"; -$a->strings["Addon Features"] = "Addon Features"; -$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen, die auf Bestätigung warten"; -$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Please enter a post body."] = "Bitte gibt den Text des Beitrags an"; +$a->strings["This feature is only available with the frio theme."] = "Diese Seite kann ausschließlich mit dem Frio Theme verwendet werden."; +$a->strings["Compose new personal note"] = "Neue persönliche Notiz verfassen"; +$a->strings["Compose new post"] = "Neuen Beitrag verfassen"; +$a->strings["Visibility"] = "Sichtbarkeit"; +$a->strings["Clear the location"] = "Ort löschen"; +$a->strings["Location services are unavailable on your device"] = "Ortungsdienste sind auf Ihrem Gerät nicht verfügbar"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Ortungsdienste sind deaktiviert. Bitte überprüfen Sie die Berechtigungen der Website auf Ihrem Gerät"; +$a->strings["Installed addons/apps:"] = "Installierte Apps und Addons"; +$a->strings["No installed addons/apps"] = "Es sind keine Addons oder Apps installiert"; +$a->strings["Read about the Terms of Service of this node."] = "Erfahre mehr über die Nutzungsbedingungen dieses Knotens."; +$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden, entfernten Server blockiert."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s."; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["the bugtracker at github"] = "den Bugtracker auf github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""; $a->strings["Only You Can See This"] = "Nur du kannst das sehen"; $a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["Forum Search - %s"] = "Forensuche - %s"; +$a->strings["The Photo with id %s is not available."] = "Das Bild mit ID %s ist nicht verfügbar."; +$a->strings["Invalid photo with id %s."] = "Fehlerhaftes Foto mit der ID %s."; +$a->strings["The provided profile link doesn't seem to be valid"] = "Der angegebene Profil-Link scheint nicht gültig zu sein."; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. "; $a->strings["Account"] = "Nutzerkonto"; -$a->strings["Two-factor authentication"] = "Zwei-Faktor Authentifizierung"; $a->strings["Display"] = "Anzeige"; $a->strings["Manage Accounts"] = "Acconts Verwalten"; $a->strings["Connected apps"] = "Verbundene Programme"; $a->strings["Export personal data"] = "Persönliche Daten exportieren"; $a->strings["Remove account"] = "Konto löschen"; -$a->strings["This page is missing a url parameter."] = "Der Seite fehlt ein URL Parameter."; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = "Unbekannte Gruppe"; +$a->strings["Contact is deleted."] = "Kontakt wurde gelöscht"; +$a->strings["Unable to add the contact to the group."] = "Konnte den Kontakt nicht zur Gruppe hinzufügen"; +$a->strings["Contact successfully added to group."] = "Kontakt zur Gruppe hinzugefügt"; +$a->strings["Unable to remove the contact from the group."] = "Konnte den Kontakt nicht aus der Gruppe entfernen"; +$a->strings["Contact successfully removed from group."] = "Kontakt aus Gruppe entfernt"; +$a->strings["Unknown group command."] = "Unbekannter Gruppen Befehl"; +$a->strings["Bad request."] = "Ungültige Anfrage."; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Filter"] = "Filter"; +$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Delete Group"] = "Gruppe löschen"; +$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["Remove contact from group"] = "Entferne den Kontakt aus der Gruppe"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Add contact to group"] = "Füge den Kontakt zur Gruppe hinzu"; +$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."; +$a->strings["Search"] = "Suche"; +$a->strings["Items tagged with: %s"] = "Beiträge, die mit %s getaggt sind"; +$a->strings["You must be logged in to use this module."] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können."; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = "Suche ist bereits gespeichert."; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Error while sending poke, please retry."] = ""; +$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["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["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; $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."; @@ -1610,7 +1910,6 @@ $a->strings["No mirroring"] = "Kein Spiegeln"; $a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; $a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; $a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; $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 (spiegeln)."; @@ -1623,417 +1922,9 @@ $a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen $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["%d contact edited."] = [ - 0 => "%d Kontakt bearbeitet.", - 1 => "%d Kontakte bearbeitet.", -]; -$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; -$a->strings["Contact updated."] = "Kontakt aktualisiert."; -$a->strings["Contact not found"] = "Kontakt nicht gefunden"; -$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; -$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; -$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; -$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; -$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; -$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; -$a->strings["Drop contact"] = "Kontakt löschen"; -$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; -$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; -$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; -$a->strings["You are sharing with %s"] = "Du teilst mit %s"; -$a->strings["%s is sharing with you"] = "%s teilt mit dir"; -$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; -$a->strings["Never"] = "Niemals"; -$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; -$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."; -$a->strings["Fetch information"] = "Beziehe Information"; -$a->strings["Fetch keywords"] = "Schlüsselwörter abrufen"; -$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Information / Notes"] = "Kontakt-Informationen / -Notizen"; -$a->strings["Contact Settings"] = "Kontakteinstellungen"; -$a->strings["Contact"] = "Kontakt"; -$a->strings["Their personal note"] = "Die persönliche Mitteilung"; -$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["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Last update:"] = "Letzte Aktualisierung: "; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Currently blocked"] = "Derzeit geblockt"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts"; -$a->strings["Hide this contact from others"] = "Verbirg 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."; -$a->strings["Blacklisted keywords"] = "Unterdrückte Schlüsselworte "; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; -$a->strings["Actions"] = "Aktionen"; -$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Pending"] = "Ausstehend"; -$a->strings["Only show pending contacts"] = "Zeige nur noch ausstehende Kontakte."; -$a->strings["Blocked"] = "Geblockt"; -$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; -$a->strings["Organize your contact groups"] = "Verwalte deine Kontaktgruppen"; -$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; -$a->strings["Results for: %s"] = "Ergebnisse für: %s"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Batch Actions"] = "Stapelverarbeitung"; -$a->strings["Conversations started by this contact"] = "Unterhaltungen, die von diesem Kontakt begonnen wurden"; -$a->strings["Posts and Comments"] = "Statusnachrichten und Kommentare"; -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["View all common friends"] = "Alle Kontakte anzeigen"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; -$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["Pending outgoing contact request"] = "Ausstehende ausgehende Kontaktanfrage"; -$a->strings["Pending incoming contact request"] = "Ausstehende eingehende Kontaktanfrage"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Delete contact"] = "Lösche den Kontakt"; -$a->strings["Local Community"] = "Lokale Gemeinschaft"; -$a->strings["Posts from local users on this server"] = "Beiträge von Nutzern dieses Servers"; -$a->strings["Global Community"] = "Globale Gemeinschaft"; -$a->strings["Posts from users of the whole federated network"] = "Beiträge von Nutzern des gesamten föderalen Netzwerks"; -$a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."; -$a->strings["Community option not available."] = "Optionen für die Gemeinschaftsseite nicht verfügbar."; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Credits"] = "Credits"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"; -$a->strings["Source input"] = "Originaltext:"; -$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (pures HTML)"; -$a->strings["BBCode::convert"] = "BBCode::convert"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = "BBCode::toMarkdown => Markdown::convert (rohes HTML)"; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; -$a->strings["Item Body"] = "Beitragskörper"; -$a->strings["Item Tags"] = "Tags des Beitrags"; -$a->strings["Source input (Diaspora format)"] = "Originaltext (Diaspora Format): "; -$a->strings["Source input (Markdown)"] = "Originaltext (Markdown)"; -$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (pures HTML)"; -$a->strings["Markdown::convert"] = "Markdown::convert"; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Reine HTML Eingabe"; -$a->strings["HTML Input"] = "HTML Eingabe"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (pures HTML)"; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; -$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (kompakt)"; -$a->strings["Source text"] = "Quelltext"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["You must be logged in to use this module"] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können."; -$a->strings["Source URL"] = "URL der Quelle"; -$a->strings["Time Conversion"] = "Zeitumrechnung"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; -$a->strings["UTC time: %s"] = "UTC Zeit: %s"; -$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; -$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; -$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."; -$a->strings["Lookup address"] = "Adresse nachschlagen"; -$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 entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Results for:"] = "Ergebnisse für:"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Filetag %s saved to item"] = "Tag %s für den Eintrag gespeichert"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Installed addons/apps:"] = "Installierte Apps und Addons"; -$a->strings["No installed addons/apps"] = "Es sind keine Addons oder Apps installiert"; -$a->strings["Read about the Terms of Service of this node."] = "Erfahre mehr über die Nutzungsbedingungen dieses Knotens."; -$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden, entfernten Server blockiert."; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s."; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["the bugtracker at github"] = "den Bugtracker auf github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""; -$a->strings["Suggested contact not found."] = "Vorgeschlagener Kontakt wurde 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["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["Unknown group."] = "Unbekannte Gruppe"; -$a->strings["Contact is deleted."] = "Kontakt wurde gelöscht"; -$a->strings["Unable to add the contact to the group."] = "Konnte den Kontakt nicht zur Gruppe hinzufügen"; -$a->strings["Contact successfully added to group."] = "Kontakt zur Gruppe hinzugefügt"; -$a->strings["Unable to remove the contact from the group."] = "Konnte den Kontakt nicht aus der Gruppe entfernen"; -$a->strings["Contact successfully removed from group."] = "Kontakt aus Gruppe entfernt"; -$a->strings["Unknown group command."] = "Unbekannter Gruppen Befehl"; -$a->strings["Bad request."] = "Ungültige Anfrage."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Filter"] = "Filter"; -$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen."; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Delete Group"] = "Gruppe löschen"; -$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["Remove contact from group"] = "Entferne den Kontakt aus der Gruppe"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Add contact to group"] = "Füge den Kontakt zur Gruppe hinzu"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["Method Not Allowed."] = "Methode nicht erlaubt."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikationsserver - Installation"; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Base settings"] = "Grundeinstellungen"; -$a->strings["Host name"] = "Host Name"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Sollte der ermittelte Hostname nicht stimmen, korrigiere bitte den Eintrag."; -$a->strings["Base path to installation"] = "Basis-Pfad zur Installation"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."; -$a->strings["Sub path of the URL"] = "Unterverzeichnis (Pfad) der URL"; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Sollte das ermittelte Unterverzeichnis der Friendica Installation nicht stimmen, korrigiere es bitte. Wenn dieses Feld leer ist, bedeutet dies, dass die Installation direkt unter der Basis-URL installiert wird."; -$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["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein."; -$a->strings["Database Name"] = "Datenbank-Name"; -$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["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["System Language:"] = "Systemsprache:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendica-Seite wurde installiert."; -$a->strings["Installation finished"] = "Installation abgeschlossen"; -$a->strings["

What next

"] = "

Wie geht es weiter?

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "Wichtig: du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst."; -$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."] = [ - 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["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."] = "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."; -$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s."; -$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://friendi.ca"] = "Für weitere Informationen über das Friendica-Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."; -$a->strings["Please enter a post body."] = "Bitte gibt den Text des Beitrags an"; -$a->strings["This feature is only available with the frio theme."] = "Diese Seite kann ausschließlich mit dem Frio Theme verwendet werden."; -$a->strings["Compose new personal note"] = "Neue persönliche Notiz verfassen"; -$a->strings["Compose new post"] = "Neuen Beitrag verfassen"; -$a->strings["Visibility"] = "Sichtbarkeit"; -$a->strings["Clear the location"] = "Ort löschen"; -$a->strings["Location services are unavailable on your device"] = "Ortungsdienste sind auf Ihrem Gerät nicht verfügbar"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Ortungsdienste sind deaktiviert. Bitte überprüfen Sie die Berechtigungen der Website auf Ihrem Gerät"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["A Decentralized Social Network"] = "Ein dezentrales Soziales Netzwerk"; -$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; -$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; -$a->strings["Notification type:"] = "Art der Benachrichtigung:"; -$a->strings["Suggested by:"] = "Vorgeschlagen von:"; -$a->strings["Claims to be known to you: "] = "Behauptet, dich zu kennen: "; -$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."; -$a->strings["Friend"] = "Kontakt"; -$a->strings["Subscriber"] = "Abonnent"; -$a->strings["No introductions."] = "Keine Kontaktanfragen."; -$a->strings["No more %s notifications."] = "Keine weiteren %s-Benachrichtigungen"; -$a->strings["You must be logged in to show this page."] = "Du musst eingeloggt sein damit diese Seite angezeigt werden kann."; -$a->strings["Network Notifications"] = "Netzwerkbenachrichtigungen"; -$a->strings["System Notifications"] = "Systembenachrichtigungen"; -$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; -$a->strings["Home Notifications"] = "Pinnwandbenachrichtigungen"; -$a->strings["Show unread"] = "Ungelesene anzeigen"; -$a->strings["Show all"] = "Alle anzeigen"; -$a->strings["The Photo with id %s is not available."] = "Das Bild mit ID %s ist nicht verfügbar."; -$a->strings["Invalid photo with id %s."] = "Fehlerhaftes Foto mit der ID %s."; -$a->strings["User not found."] = "Benutzer nicht gefunden."; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["Follower (%s)"] = [ - 0 => "Folgende (%s)", - 1 => "Folgende (%s)", -]; -$a->strings["Following (%s)"] = [ - 0 => "Gefolgte (%s)", - 1 => "Gefolgte (%s)", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "Beidseitige Freundschafte (%s)", - 1 => "Beidseitige Freundschaften (%s)", -]; -$a->strings["Contact (%s)"] = [ - 0 => "Kontakt (%s)", - 1 => "Kontakte (%s)", -]; -$a->strings["All contacts"] = "Alle Kontakte"; -$a->strings["Member since:"] = "Mitglied seit:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age: "] = "Alter: "; -$a->strings["%d year old"] = [ - 0 => "%dJahr alt", - 1 => "%dJahre alt", -]; -$a->strings["Forums:"] = "Foren:"; -$a->strings["View profile as:"] = "Das Profil aus der Sicht von jemandem anderen betrachten:"; -$a->strings["%s's timeline"] = "Timeline von %s"; -$a->strings["%s's posts"] = "Beiträge von %s"; -$a->strings["%s's comments"] = "Kommentare von %s"; -$a->strings["Only parent users can create additional accounts."] = "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden."; -$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["Note for the admin"] = "Hinweis für den Admin"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."; -$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 code: "] = "Dein Ein­la­dungs­code"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"; -$a->strings["Please repeat your e-mail address:"] = "Bitte wiederhole deine E-Mail Adresse"; -$a->strings["Leave empty for an auto generated password."] = "Leer lassen, um das Passwort automatisch zu generieren."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@%s' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica-Instanz"; -$a->strings["Note: This node explicitly contains adult content"] = "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene"; -$a->strings["Parent Password:"] = "Passwort des Verwalters"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen."; -$a->strings["Password doesn't match."] = "Das Passwort stimmt nicht."; -$a->strings["Please enter your password."] = "Bitte gib dein Passwort an."; -$a->strings["You have entered too much information."] = "Du hast zu viele Informationen eingegeben."; -$a->strings["Please enter the identical mail address in the second field."] = "Bitte gib die gleiche E-Mail Adresse noch einmal an."; -$a->strings["The additional account was created."] = "Das zusätzliche Nutzerkonto wurde angelegt."; -$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 your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account-Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; -$a->strings["Registration successful."] = "Registrierung erfolgreich."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["You have to leave a request note for the admin."] = "Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["The provided profile link doesn't seem to be valid"] = "Der angegebene Profil-Link scheint nicht gültig zu sein."; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. "; -$a->strings["You must be logged in to use this module."] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können."; -$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."; -$a->strings["Items tagged with: %s"] = "Beiträge, die mit %s getaggt sind"; -$a->strings["Search term successfully saved."] = "Suche erfolgreich abgespeichert."; -$a->strings["Search term already saved."] = "Suche ist bereits gespeichert."; -$a->strings["Search term successfully removed."] = "Suche wurde entfernt."; -$a->strings["Create a New Account"] = "Neues Konto erstellen"; -$a->strings["Your OpenID: "] = "Deine OpenID:"; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Bitte gib seinen Nutzernamen und das Passwort ein um die OpenID zu deinem bestehenden Nutzerkonto hinzufügen zu können."; -$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; -$a->strings["Password: "] = "Passwort: "; -$a->strings["Remember me"] = "Anmeldedaten merken"; -$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["Logged out."] = "Abgemeldet."; -$a->strings["OpenID protocol error. No ID returned"] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Nutzerkonto nicht gefunden. Bitte melde dich an und füge die OpenID zu deinem Konto hinzu."; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Nutzerkonto nicht gefunden. Bitte registriere ein neues Konto oder melde dich mit einem existierendem Konto an um diene OpenID hinzuzufügen."; -$a->strings["Remaining recovery codes: %d"] = "Verbleibende Wiederherstellungscodes: %d"; -$a->strings["Invalid code, please retry."] = "Ungültiger Code, bitte erneut versuchen."; -$a->strings["Two-factor recovery"] = "Zwei-Faktor-Wiederherstellung"; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

Sie können einen Ihrer einmaligen Wiederherstellungscodes eingeben, falls Sie den Zugriff auf Ihr Mobilgerät verloren haben.

"; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Hast du dein Handy nicht? Geben Sie einen Zwei-Faktor-Wiederherstellungscode ein"; -$a->strings["Please enter a recovery code"] = "Bitte geben Sie einen Wiederherstellungscode ein"; -$a->strings["Submit recovery code and complete login"] = "Senden Sie den Wiederherstellungscode und schließen Sie die Anmeldung ab"; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Öffnen Sie die Zwei-Faktor-Authentifizierungs-App auf Ihrem Gerät, um einen Authentifizierungscode abzurufen und Ihre Identität zu überprüfen.

"; -$a->strings["Please enter a code from your authentication app"] = "Bitte geben Sie einen Code aus Ihrer Authentifizierungs-App ein"; -$a->strings["Verify code and complete login"] = "Code überprüfen und Anmeldung abschließen"; -$a->strings["Delegation successfully granted."] = "Delegierung erfolgreich eingerichtet."; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig."; -$a->strings["Delegation successfully revoked."] = "Delegation erfolgreich aufgehoben."; -$a->strings["Delegated administrators can view but not change delegation permissions."] = "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern."; -$a->strings["Delegate user not found."] = "Delegierter Nutzer nicht gefunden"; -$a->strings["No parent user"] = "Kein Verwalter"; -$a->strings["Parent User"] = "Verwalter"; -$a->strings["Additional Accounts"] = "Zusätzliche Accounts"; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst."; -$a->strings["Register an additional account"] = "Einen zusätzlichen Account registrieren"; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern."; -$a->strings["Delegates"] = "Bevollmächtigte"; -$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 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["The theme you chose isn't available."] = "Das gewählte Theme ist nicht verfügbar"; -$a->strings["%s - (Unsupported)"] = "%s - (Nicht unterstützt)"; -$a->strings["Display Settings"] = "Anzeige-Einstellungen"; -$a->strings["General Theme Settings"] = "Allgemeine Theme-Einstellungen"; -$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; -$a->strings["Content Settings"] = "Einstellungen zum Inhalt"; -$a->strings["Theme settings"] = "Theme-Einstellungen"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Display Theme:"] = "Theme:"; -$a->strings["Mobile Theme:"] = "Mobiles Theme"; -$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; -$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; -$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten."; -$a->strings["Automatic updates only at the top of the post stream pages"] = "Automatische Updates nur, wenn du oben auf den Beitragsstream-Seiten bist."; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "Das automatische Aktualisieren des Streams kann neue Beiträge am Anfang des Stream einfügen. Dies kann die angezeigte Position im Stream beeinflussen, wenn du gerade nicht den Anfang des Streams betrachtest."; -$a->strings["Don't show emoticons"] = "Keine Smileys anzeigen"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Normalerweise werden Smileys / Emoticons durch die passenden Symbolen ersetzt. Mit dieser Einstellung wird dieses Verhalten verhindert."; -$a->strings["Infinite scroll"] = "Endloses Scrollen"; -$a->strings["Automatic fetch new items when reaching the page end."] = "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist."; -$a->strings["Disable Smart Threading"] = "Intelligentes Threading deaktivieren"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen aus."; -$a->strings["Hide the Dislike feature"] = "Das \"Nicht mögen\" Feature verbergen"; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Verbirgt den \"Ich mag das nicht\" Button und die dislike Reaktionen auf Beiträge und Kommentare."; -$a->strings["Beginning of week:"] = "Wochenbeginn:"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; +$a->strings["Applications"] = "Anwendungen"; $a->strings["Profile Name is required."] = "Profilname ist erforderlich."; -$a->strings["Profile updated."] = "Profil aktualisiert."; $a->strings["Profile couldn't be updated."] = "Das Profil konnte nicht aktualisiert werden."; $a->strings["Label:"] = "Bezeichnung:"; $a->strings["Value:"] = "Wert:"; @@ -2047,7 +1938,6 @@ $a->strings["Profile picture"] = "Profilbild"; $a->strings["Location"] = "Wohnort"; $a->strings["Miscellaneous"] = "Verschiedenes"; $a->strings["Custom Profile Fields"] = "Benutzerdefinierte Profilfelder"; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; $a->strings["Display name:"] = "Anzeigename:"; $a->strings["Street Address:"] = "Adresse:"; $a->strings["Locality/City:"] = "Wohnort:"; @@ -2071,7 +1961,6 @@ $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["Use Image As Is"] = "Bild wie es ist verwenden"; $a->strings["Missing uploaded image."] = "Hochgeladenes Bild nicht gefunden."; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; $a->strings["Profile Picture Settings"] = "Einstellungen zum Profilbild"; $a->strings["Current Profile Picture"] = "Aktuelles Profilbild"; $a->strings["Upload Profile Picture"] = "Profilbild aktualisieren"; @@ -2079,23 +1968,23 @@ $a->strings["Upload Picture:"] = "Bild hochladen"; $a->strings["or"] = "oder"; $a->strings["skip this step"] = "diesen Schritt überspringen"; $a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Please enter your password to access this page."] = "Bitte geben Sie Ihr Passwort ein, um auf diese Seite zuzugreifen."; -$a->strings["App-specific password generation failed: The description is empty."] = "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer."; -$a->strings["App-specific password generation failed: This description already exists."] = "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits."; -$a->strings["New app-specific password generated."] = "Neues App spezifisches Passwort erzeugt."; -$a->strings["App-specific passwords successfully revoked."] = "App spezifische Passwörter erfolgreich widerrufen."; -$a->strings["App-specific password successfully revoked."] = "App spezifisches Passwort erfolgreich widerrufen."; -$a->strings["Two-factor app-specific passwords"] = "Zwei-Faktor App spezifische Passwörter."; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

"; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!"; -$a->strings["Description"] = "Beschreibung"; -$a->strings["Last Used"] = "Zuletzt verwendet"; -$a->strings["Revoke"] = "Widerrufen"; -$a->strings["Revoke All"] = "Alle widerrufen"; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt."; -$a->strings["Generate new app-specific password"] = "Neues App spezifisches Passwort erstellen"; -$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa auf meinem Fairphone 2"; -$a->strings["Generate"] = "Erstellen"; +$a->strings["Delegation successfully granted."] = "Delegierung erfolgreich eingerichtet."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig."; +$a->strings["Delegation successfully revoked."] = "Delegation erfolgreich aufgehoben."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern."; +$a->strings["Delegate user not found."] = "Delegierter Nutzer nicht gefunden"; +$a->strings["No parent user"] = "Kein Verwalter"; +$a->strings["Parent User"] = "Verwalter"; +$a->strings["Additional Accounts"] = "Zusätzliche Accounts"; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst."; +$a->strings["Register an additional account"] = "Einen zusätzlichen Account registrieren"; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern."; +$a->strings["Delegates"] = "Bevollmächtigte"; +$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 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["Two-factor authentication successfully disabled."] = "Zwei-Faktor Authentifizierung erfolgreich deaktiviert."; $a->strings["Wrong Password"] = "Falsches Passwort"; $a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Benutze eine App auf dein Smartphone um einen Zwei-Faktor identifikations Code zu bekommen wenn beim Loggin das verlagt wird.

"; @@ -2117,150 +2006,76 @@ $a->strings["Disable two-factor authentication"] = "Deaktiviere die Zwei-Faktor- $a->strings["Show recovery codes"] = "Wiederherstellungscodes anzeigen"; $a->strings["Manage app-specific passwords"] = "App spezifische Passwörter verwalten"; $a->strings["Finish app configuration"] = "Beenden Sie die App-Konfiguration"; -$a->strings["New recovery codes successfully generated."] = "Neue Wiederherstellungscodes erfolgreich generiert."; -$a->strings["Two-factor recovery codes"] = "Zwei-Faktor-Wiederherstellungscodes"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Wiederherstellungscodes können verwendet werden, um auf Ihr Konto zuzugreifen, falls Sie den Zugriff auf Ihr Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten können.

Bewahren Sie diese an einem sicheren Ort auf! Wenn Sie Ihr Gerät verlieren und nicht über die Wiederherstellungscodes verfügen, verlieren Sie den Zugriff auf Ihr Konto.

"; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Wenn Sie neue Wiederherstellungscodes generieren, müssen Sie die neuen Codes kopieren. Ihre alten Codes funktionieren nicht mehr."; -$a->strings["Generate new recovery codes"] = "Generieren Sie neue Wiederherstellungscodes"; -$a->strings["Next: Verification"] = "Weiter: Überprüfung"; +$a->strings["Please enter your password to access this page."] = "Bitte geben Sie Ihr Passwort ein, um auf diese Seite zuzugreifen."; $a->strings["Two-factor authentication successfully activated."] = "Zwei-Faktor-Authentifizierung erfolgreich aktiviert."; $a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Oder Sie können die Authentifizierungseinstellungen manuell übermitteln:

\n
\n\tVerursacher\n\t
%s
\n\t
Kontoname
\n\t
%s
\n\t
Geheimer Schlüssel
\n\t
%s
\n\t
Typ
\n\t
Zeitbasiert
\n\t
Anzahl an Ziffern
\n\t
6
\n\t
Hashing-Algorithmus
\n\t
SHA-1
\n
"; $a->strings["Two-factor code verification"] = "Überprüfung des Zwei-Faktor-Codes"; $a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Bitte scannen Sie diesen QR-Code mit Ihrer Authentifikator-App und übermitteln Sie den bereitgestellten Code.

"; $a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = "

Oder Sie können die folgende URL in Ihrem Mobilgerät öffnen:

%s

"; $a->strings["Verify code and enable two-factor authentication"] = "Überprüfen Sie den Code und aktivieren Sie die Zwei-Faktor-Authentifizierung"; +$a->strings["New recovery codes successfully generated."] = "Neue Wiederherstellungscodes erfolgreich generiert."; +$a->strings["Two-factor recovery codes"] = "Zwei-Faktor-Wiederherstellungscodes"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Wiederherstellungscodes können verwendet werden, um auf Ihr Konto zuzugreifen, falls Sie den Zugriff auf Ihr Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten können.

Bewahren Sie diese an einem sicheren Ort auf! Wenn Sie Ihr Gerät verlieren und nicht über die Wiederherstellungscodes verfügen, verlieren Sie den Zugriff auf Ihr Konto.

"; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Wenn Sie neue Wiederherstellungscodes generieren, müssen Sie die neuen Codes kopieren. Ihre alten Codes funktionieren nicht mehr."; +$a->strings["Generate new recovery codes"] = "Generieren Sie neue Wiederherstellungscodes"; +$a->strings["Next: Verification"] = "Weiter: Überprüfung"; +$a->strings["App-specific password generation failed: The description is empty."] = "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer."; +$a->strings["App-specific password generation failed: This description already exists."] = "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits."; +$a->strings["New app-specific password generated."] = "Neues App spezifisches Passwort erzeugt."; +$a->strings["App-specific passwords successfully revoked."] = "App spezifische Passwörter erfolgreich widerrufen."; +$a->strings["App-specific password successfully revoked."] = "App spezifisches Passwort erfolgreich widerrufen."; +$a->strings["Two-factor app-specific passwords"] = "Zwei-Faktor App spezifische Passwörter."; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

"; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!"; +$a->strings["Description"] = "Beschreibung"; +$a->strings["Last Used"] = "Zuletzt verwendet"; +$a->strings["Revoke"] = "Widerrufen"; +$a->strings["Revoke All"] = "Alle widerrufen"; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt."; +$a->strings["Generate new app-specific password"] = "Neues App spezifisches Passwort erstellen"; +$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa auf meinem Fairphone 2"; +$a->strings["Generate"] = "Erstellen"; +$a->strings["The theme you chose isn't available."] = "Das gewählte Theme ist nicht verfügbar"; +$a->strings["%s - (Unsupported)"] = "%s - (Nicht unterstützt)"; +$a->strings["Display Settings"] = "Anzeige-Einstellungen"; +$a->strings["General Theme Settings"] = "Allgemeine Theme-Einstellungen"; +$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; +$a->strings["Content Settings"] = "Einstellungen zum Inhalt"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Display Theme:"] = "Theme:"; +$a->strings["Mobile Theme:"] = "Mobiles Theme"; +$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; +$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; +$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten."; +$a->strings["Automatic updates only at the top of the post stream pages"] = "Automatische Updates nur, wenn du oben auf den Beitragsstream-Seiten bist."; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "Das automatische Aktualisieren des Streams kann neue Beiträge am Anfang des Stream einfügen. Dies kann die angezeigte Position im Stream beeinflussen, wenn du gerade nicht den Anfang des Streams betrachtest."; +$a->strings["Don't show emoticons"] = "Keine Smileys anzeigen"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Normalerweise werden Smileys / Emoticons durch die passenden Symbolen ersetzt. Mit dieser Einstellung wird dieses Verhalten verhindert."; +$a->strings["Infinite scroll"] = "Endloses Scrollen"; +$a->strings["Automatic fetch new items when reaching the page end."] = "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist."; +$a->strings["Disable Smart Threading"] = "Intelligentes Threading deaktivieren"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen aus."; +$a->strings["Hide the Dislike feature"] = "Das \"Nicht mögen\" Feature verbergen"; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Verbirgt den \"Ich mag das nicht\" Button und die dislike Reaktionen auf Beiträge und Kommentare."; +$a->strings["Beginning of week:"] = "Wochenbeginn:"; $a->strings["Export account"] = "Account exportieren"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Account-Informationen und 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 account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)."; $a->strings["Export Contacts to CSV"] = "Kontakte nach CSV exportieren"; $a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "Exportiert die Liste der Nutzerkonten denen du folgst in eine CSV Datei. Das Format ist z.B. zu Mastodon kompatibel."; -$a->strings["Bad Request"] = "Ungültige Anfrage"; -$a->strings["Unauthorized"] = "Nicht autorisiert"; -$a->strings["Forbidden"] = "Verboten"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Internal Server Error"] = "Interner Serverfehler"; -$a->strings["Service Unavailable"] = "Dienst nicht verfügbar"; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = "Aufgrund eines offensichtlichen Fehlers auf der Seite des Clients kann oder wird der Server die Anfrage nicht bearbeiten."; -$a->strings["Authentication is required and has failed or has not yet been provided."] = "Die erforderliche Authentifizierung ist fehlgeschlagen oder noch nicht erfolgt."; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "Die Anfrage war gültig, aber der Server verweigert die Ausführung. Der Benutzer verfügt möglicherweise nicht über die erforderlichen Berechtigungen oder benötigt ein Nutzerkonto."; -$a->strings["The requested resource could not be found but may be available in the future."] = "Die angeforderte Ressource konnte nicht gefunden werden, sie könnte allerdings zu einem späteren Zeitpunkt verfügbar sein."; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "Eine unerwartete Situation ist eingetreten, zu der keine detailliertere Nachricht vorliegt."; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "Der Server ist derzeit nicht verfügbar (wegen Überlastung oder Wartungsarbeiten). Bitte versuche es später noch einmal."; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig."; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1\$s/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert."; -$a->strings["Privacy Statement"] = "Datenschutzerklärung"; -$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 Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."; -$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 Kontakte und potentiellen Kontakte wissen genau, wie sie dich finden können."; -$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 Kontakte 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 Kontaktliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil-Schlüsselbegriffe"; -$a->strings["Set some public keywords for your 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 Profil 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["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 Kontakten und Mailinglisten interagieren willst."; -$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 Personen 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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$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 Kontakte 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 anderen Programm-Features zu erhalten."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; -$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."; -$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["pinned item"] = "Angehefteter Beitrag"; -$a->strings["Delete locally"] = "Lokal löschen"; -$a->strings["Delete globally"] = "Global löschen"; -$a->strings["Remove locally"] = "Lokal entfernen"; -$a->strings["save to folder"] = "In Ordner speichern"; -$a->strings["I will attend"] = "Ich werde teilnehmen"; -$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; -$a->strings["I might attend"] = "Ich werde eventuell teilnehmen"; -$a->strings["ignore thread"] = "Thread ignorieren"; -$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; -$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["pin"] = "anheften"; -$a->strings["unpin"] = "losmachen"; -$a->strings["toggle pin status"] = "Angeheftet Status ändern"; -$a->strings["pinned"] = "angeheftet"; -$a->strings["add star"] = "markieren"; -$a->strings["remove star"] = "Markierung entfernen"; -$a->strings["toggle star status"] = "Markierung umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["add tag"] = "Tag hinzufügen"; -$a->strings["like"] = "mag ich"; -$a->strings["dislike"] = "mag ich nicht"; -$a->strings["Share this"] = "Weitersagen"; -$a->strings["share"] = "Teilen"; -$a->strings["%s (Received %s)"] = "%s (Empfangen %s)"; -$a->strings["Comment this item on your system"] = "Kommentiere diesen Beitrag von deinem System aus"; -$a->strings["remote comment"] = "Entfernter Kommentar"; -$a->strings["Pushed"] = "Pushed"; -$a->strings["Pulled"] = "Pulled"; -$a->strings["to"] = "zu"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["Reply to %s"] = "Antworte %s"; -$a->strings["More"] = "Mehr"; -$a->strings["Notifier task is pending"] = "Die Benachrichtigungsaufgabe ist ausstehend"; -$a->strings["Delivery to remote servers is pending"] = "Die Auslieferung an Remote-Server steht noch aus"; -$a->strings["Delivery to remote servers is underway"] = "Die Auslieferung an Remote-Server ist unterwegs"; -$a->strings["Delivery to remote servers is mostly done"] = "Die Zustellung an Remote-Server ist fast erledigt"; -$a->strings["Delivery to remote servers is done"] = "Die Zustellung an die Remote-Server ist erledigt"; -$a->strings["%d comment"] = [ - 0 => "%d Kommentar", - 1 => "%d Kommentare", -]; -$a->strings["Show more"] = "Zeige mehr"; -$a->strings["Show fewer"] = "Zeige weniger"; -$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; $a->strings["%s is now following %s."] = "%s folgt nun %s"; $a->strings["following"] = "folgen"; $a->strings["%s stopped following %s."] = "%s hat aufgehört %s, zu folgen"; $a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Hometown:"] = "Heimatort:"; -$a->strings["Marital Status:"] = "Familienstand:"; -$a->strings["With:"] = "Mit:"; -$a->strings["Since:"] = "Seit:"; -$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Title/Description:"] = "Titel/Beschreibung:"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; -$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; +$a->strings["Attachments:"] = "Anhänge:"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator"; $a->strings["%s Administrator"] = "der Administrator von %s"; $a->strings["thanks"] = "danke"; +$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; $a->strings["never"] = "nie"; $a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; @@ -2277,58 +2092,236 @@ $a->strings["second"] = "Sekunde"; $a->strings["seconds"] = "Sekunden"; $a->strings["in %1\$d %2\$s"] = "in %1\$d %2\$s"; $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualisiere die author-id und owner-id in der Thread Tabelle"; -$a->strings["%s: Updating post-type."] = "%s: Aktualisiere Beitrags-Typ"; -$a->strings["default"] = "Standard"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variationen"; -$a->strings["Custom"] = "Benutzerdefiniert"; -$a->strings["Note"] = "Hinweis"; -$a->strings["Check image permissions if all users are allowed to see the image"] = "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"; -$a->strings["Select color scheme"] = "Farbschema auswählen"; -$a->strings["Copy or paste schemestring"] = "Farbschema kopieren oder einfügen"; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Du kannst den String mit den Farbschema Informationen mit anderen Teilen. Wenn du einen neuen Farbschema-String hier einfügst wird er für deine Einstellungen übernommen."; -$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; -$a->strings["Navigation bar icon color "] = "Icon Farbe in der Navigationsleiste"; -$a->strings["Link color"] = "Linkfarbe"; -$a->strings["Set the background color"] = "Hintergrundfarbe festlegen"; -$a->strings["Content background opacity"] = "Opazität des Hintergrunds von Beiträgen"; -$a->strings["Set the background image"] = "Hintergrundbild festlegen"; -$a->strings["Background image style"] = "Stil des Hintergrundbildes"; -$a->strings["Login page background image"] = "Hintergrundbild der Login-Seite"; -$a->strings["Login page background color"] = "Hintergrundfarbe der Login-Seite"; -$a->strings["Leave background image and color empty for theme defaults"] = "Wenn die Theme-Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer."; -$a->strings["Skip to main content"] = "Zum Inhalt der Seite gehen"; -$a->strings["Top Banner"] = "Top Banner"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Skaliere das Hintergrundbild so, dass es die Breite der Seite einnimmt, und fülle den Rest der Seite mit der Hintergrundfarbe bei langen Seiten."; -$a->strings["Full screen"] = "Vollbildmodus"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Skaliere das Bild so, dass es den gesamten Bildschirm füllt. Hierfür wird entweder die Breite oder die Höhe des Bildes automatisch abgeschnitten."; -$a->strings["Single row mosaic"] = "Mosaik in einer Zeile"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Skaliere das Bild so, dass es in einer einzelnen Reihe, entweder horizontal oder vertikal, wiederholt wird."; -$a->strings["Mosaic"] = "Mosaik"; -$a->strings["Repeat image to fill the screen."] = "Wiederhole das Bild, um den Bildschirm zu füllen."; -$a->strings["Guest"] = "Gast"; -$a->strings["Visitor"] = "Besucher"; -$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["Comma separated list of helper forums"] = "Komma-separierte Liste der Helfer-Foren"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["show"] = "zeigen"; -$a->strings["Set style"] = "Stil auswählen"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["Find Friends"] = "Kontakte finden"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Quick Start"] = "Schnell-Start"; +$a->strings["Database storage failed to update %s"] = "Datenbankspeicher konnte nicht aktualisiert werden %s"; +$a->strings["Database storage failed to insert data"] = "Der Datenbankspeicher konnte keine Daten einfügen"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Dateisystemspeicher konnte nicht erstellt werden \"%s\". Überprüfe, ob du Schreibberechtigungen hast."; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Der Dateisystemspeicher konnte die Daten nicht in \"%s\" speichern. Überprüfe Deine Schreibberechtigungen"; +$a->strings["Storage base path"] = "Dateipfad zum Speicher"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Verzeichnis, in das Dateien hochgeladen werden. Für maximale Sicherheit sollte dies ein Pfad außerhalb der Webserver-Verzeichnisstruktur sein"; +$a->strings["Enter a valid existing folder"] = "Gib einen gültigen, existierenden Ordner ein"; +$a->strings["activity"] = "Aktivität"; +$a->strings["post"] = "Beitrag"; +$a->strings["Content warning: %s"] = "Inhaltswarnung: %s"; +$a->strings["bytes"] = "Byte"; +$a->strings["View on separate page"] = "Auf separater Seite ansehen"; +$a->strings["view on separate page"] = "auf separater Seite ansehen"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; +$a->strings["[no subject]"] = "[kein Betreff]"; +$a->strings["UnFollow"] = "Entfolgen"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Organisation"] = "Organisation"; +$a->strings["News"] = "Nachrichten"; +$a->strings["Forum"] = "Forum"; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke"; +$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 E-Mail-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["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["all-day"] = "ganztägig"; +$a->strings["Sept"] = "Sep"; +$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["Duplicate event"] = "Veranstaltung kopieren"; +$a->strings["Delete event"] = "Veranstaltung löschen"; +$a->strings["D g:i A"] = "D H:i"; +$a->strings["g:i A"] = "H:i"; +$a->strings["Show map"] = "Karte anzeigen"; +$a->strings["Hide map"] = "Karte verbergen"; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch, %s"; +$a->strings["Login failed"] = "Anmeldung fehlgeschlagen"; +$a->strings["Not enough information to authenticate"] = "Nicht genügend Informationen für die Authentifizierung"; +$a->strings["Password can't be empty"] = "Das Passwort kann nicht leer sein"; +$a->strings["Empty passwords are not allowed."] = "Leere Passwörter sind nicht erlaubt."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten"; +$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; +$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["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus."; +$a->strings["Username should be at least %s character."] = [ + 0 => "Der Benutzername sollte aus mindestens %s Zeichen bestehen.", + 1 => "Der Benutzername sollte aus mindestens %s Zeichen bestehen.", +]; +$a->strings["Username should be at most %s character."] = [ + 0 => "Der Benutzername sollte aus maximal %s Zeichen bestehen.", + 1 => "Der Benutzername sollte aus maximal %s Zeichen bestehen.", +]; +$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["The nickname was blocked from registration by the nodes admin."] = "Der Admin des Knotens hat den Spitznamen für die Registrierung gesperrt."; +$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 _."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$a->strings["Nickname is already registered. 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["An error occurred creating your self contact. Please try again."] = "Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut."; +$a->strings["Friends"] = "Kontakte"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s\nein Admin von %2\$s hat dir ein Nutzerkonto angelegt."; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\nNachfolgend die Anmeldedetails:\n\nAdresse der Seite: %1\$s\nBenutzername: %2\$s\nPasswort: %3\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet hast.Bitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser Seite zu kontrollieren.Eventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können.Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).Wir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.Außerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter angibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.Wir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDu kannst dein Nutzerkonto jederzeit unter %1\$s/removeme wieder löschen.\n\nDanke und willkommen auf %4\$s."; +$a->strings["Registration details for %s"] = "Details der Registration von %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tHallo %1\$s,\n\t\t\t\tdanke für deine Registrierung auf %2\$s. Dein Account muss noch vom Admin des Knotens freigeschaltet werden.\n\n\t\t\tDeine Zugangsdaten lauten wie folgt:\n\n\t\t\tSeitenadresse:\t%3\$s\n\t\t\tAnmeldename:\t\t%4\$s\n\t\t\tPasswort:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Registrierung als %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tHallo %1\$s,\n\t\t\t\tDanke für die Registrierung auf %2\$s. Dein Account wurde angelegt.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3\$s/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s."; +$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"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Edit groups"] = "Gruppen bearbeiten"; +$a->strings["Change profile photo"] = "Profilbild ändern"; +$a->strings["Atom feed"] = "Atom-Feed"; +$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["Upcoming events the next 7 days:"] = "Veranstaltungen der nächsten 7 Tage:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["%d invitation available"] = [ + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +]; +$a->strings["Everyone"] = "Jeder"; +$a->strings["Relationships"] = "Beziehungen"; +$a->strings["Protocols"] = "Protokolle"; +$a->strings["All Protocols"] = "Alle Protokolle"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["%d contact in common"] = [ + 0 => "%d gemeinsamer Kontakt", + 1 => "%d gemeinsame Kontakte", +]; +$a->strings["Archives"] = "Archiv"; +$a->strings["Frequently"] = "immer wieder"; +$a->strings["Hourly"] = "Stündlich"; +$a->strings["Twice daily"] = "Zweimal täglich"; +$a->strings["Daily"] = "Täglich"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["DFRN"] = "DFRN"; +$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["Discourse"] = "Discourse"; +$a->strings["Diaspora Connector"] = "Diaspora Connector"; +$a->strings["GNU Social Connector"] = "GNU Social Connector"; +$a->strings["ActivityPub"] = "ActivityPub"; +$a->strings["pnut"] = "pnut"; +$a->strings["%s (via %s)"] = "%s (via %s)"; +$a->strings["General Features"] = "Allgemeine Features"; +$a->strings["Photo Location"] = "Aufnahmeort"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."; +$a->strings["Trending Tags"] = "Trending Tags"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Auf der Gemeinschaftsseite ein Widget mit den meist benutzten Tags in öffentlichen Beiträgen anzeigen."; +$a->strings["Post Composition Features"] = "Beitragserstellung-Features"; +$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; +$a->strings["Add/remove mention when a forum 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["Explicit Mentions"] = "Explizite Erwähnungen"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Füge Erwähnungen zum Kommentarfeld hinzu, um manuell über die explizite Erwähnung von Gesprächsteilnehmern zu entscheiden."; +$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; +$a->strings["Post Categories"] = "Beitragskategorien"; +$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; +$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen"; +$a->strings["List Forums"] = "Zeige Foren"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"; +$a->strings["Tag Cloud"] = "Schlagwortwolke"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen"; +$a->strings["Display Membership Date"] = "Mitgliedschaftsdatum anzeigen"; +$a->strings["Display membership date in profile"] = "Das Datum der Registrierung deines Accounts im Profil anzeigen"; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Home"] = "Pinnwand"; +$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"] = "Zusätzliche Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Full Text"] = "Volltext"; +$a->strings["Tags"] = "Tags"; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["Conversations on this and other servers"] = "Unterhaltungen auf diesem und anderen Servern"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica-Instanz"; +$a->strings["Terms of Service of this Friendica instance"] = "Die Nutzungsbedingungen dieser Friendica-Instanz"; +$a->strings["Introductions"] = "Kontaktanfragen"; +$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["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Accounts"] = "Nutzerkonten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Export"] = "Exportieren"; +$a->strings["Export calendar as ical"] = "Kalender als ical exportieren"; +$a->strings["Export calendar as csv"] = "Kalender als csv exportieren"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "Trending Tags (%d Stunde)", + 1 => "Trending Tags (%d Stunden)", +]; +$a->strings["More Trending Tags"] = "mehr Trending Tags"; +$a->strings["No contacts"] = "Keine Kontakte"; +$a->strings["%d Contact"] = [ + 0 => "%d Kontakt", + 1 => "%d Kontakte", +]; +$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["newer"] = "neuer"; +$a->strings["older"] = "älter"; +$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["prev"] = "vorige"; +$a->strings["last"] = "letzte"; +$a->strings["Loading more entries..."] = "lade weitere Einträge..."; +$a->strings["The end"] = "Das Ende"; +$a->strings["Click to open/close"] = "Zum Öffnen/Schließen klicken"; +$a->strings["Image/photo"] = "Bild/Foto"; +$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["Invalid source protocol"] = "Ungültiges Quell-Protokoll"; +$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll"; +$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)."; From 76d8d70de855e61142076d917906ba1861476780 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:32:28 +0200 Subject: [PATCH 11/44] RU translations THX Alexander An --- view/lang/ru/messages.po | 17443 ++++++++++++++++++------------------- view/lang/ru/strings.php | 3009 ++++--- 2 files changed, 10210 insertions(+), 10242 deletions(-) diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index c27f69f6ef..28a7ebfd30 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-04-26 13:05+0000\n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-06 22:04+0000\n" "Last-Translator: Alexander An \n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,1116 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "значение по умолчанию" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Подтвердить" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Настройки темы" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Вариации" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Выравнивание" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Слева" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Центр" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Цветовая схема" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Размер шрифта записей" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Размер шрифта текстовых полей" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Разделенный запятыми список форумов помощи" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "не показывать" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "показывать" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Установить стиль" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Страницы сообщества" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Профили сообщества" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Помощь" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Подключить службы" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Найти друзей" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Последние пользователи" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Поиск людей" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Введите имя или интерес" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Подключиться/Подписаться" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Примеры: Роберт Morgenstein, Рыбалка" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Найти" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Предложения друзей" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Похожие интересы" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Случайный профиль" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Пригласить друзей" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Глобальный каталог" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Локальный каталог" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Форумы" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "Внешняя ссылка на форум" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "показать больше" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Быстрый запуск" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Помощь" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "Другое" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Примечание" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям." + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "Выбор цветовой схемы" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "Скопируйте или вставьте строку оформления темы" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы." + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Цвет фона навигационной панели" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Цвет иконок в навигационной панели" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Цвет ссылок" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Установить цвет фона" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "Прозрачность фона основного содержимого" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Установить фоновую картинку" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "Стиль фонового изображения" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "Фоновое изображение страницы входа" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "Цвет фона страницы входа" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию." + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Гость" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Посетитель" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Записи" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "Ваши записи и диалоги" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Информация" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "Информация о вас" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Фото" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "Ваши фотографии" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Видео" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "Ваши видео" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Мероприятия" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "Ваши события" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Новости" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "Сообщения ваших друзей" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Календарь и события" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Сообщения" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Личная почта" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Настройки" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Настройки аккаунта" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Контакты" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Управление / редактирование друзей и контактов" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Подписаться на тему" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "Пропустить до основного содержимого" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Верхний баннер" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Растянуть изображение по ширине экрана и показать заливку цветом под ним на длинных страницах." + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Во весь экран" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Растянуть изображение во весь экран, обрезав его часть справа или снизу." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Мозаика в один ряд" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Растянуть и размножить изображение в один ряд, вертикально или горизонтально." + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Мозаика" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Размножить изображение по всему экрану" + +#: update.php:195 +#, php-format +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "%s: Обновляем author-id и owner-id в таблицах item и thread. " + +#: update.php:250 +#, php-format +msgid "%s: Updating post-type." +msgstr "%s: Обновляем post-type." + +#: include/conversation.php:188 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ткнул %2$s" + +#: include/conversation.php:220 src/Model/Item.php:3330 +msgid "event" +msgstr "мероприятие" + +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 +msgid "status" +msgstr "статус" + +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 +msgid "photo" +msgstr "фото" + +#: include/conversation.php:242 mod/tagger.php:122 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s tagged %2$s's %3$s в %4$s" + +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 +msgid "Select" +msgstr "Выберите" + +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 +msgid "Delete" +msgstr "Удалить" + +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Просмотреть профиль %s [@ %s]" + +#: include/conversation.php:602 src/Object/Post.php:428 +msgid "Categories:" +msgstr "Категории:" + +#: include/conversation.php:603 src/Object/Post.php:429 +msgid "Filed under:" +msgstr "В рубрике:" + +#: include/conversation.php:610 src/Object/Post.php:454 +#, php-format +msgid "%s from %s" +msgstr "%s из %s" + +#: include/conversation.php:625 +msgid "View in context" +msgstr "Смотреть в контексте" + +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 +msgid "Please wait" +msgstr "Пожалуйста, подождите" + +#: include/conversation.php:691 +msgid "remove" +msgstr "удалить" + +#: include/conversation.php:695 +msgid "Delete Selected Items" +msgstr "Удалить выбранные позиции" + +#: include/conversation.php:876 src/Model/Contact.php:1170 +msgid "View Status" +msgstr "Просмотреть статус" + +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 +msgid "View Profile" +msgstr "Просмотреть профиль" + +#: include/conversation.php:878 src/Model/Contact.php:1172 +msgid "View Photos" +msgstr "Просмотреть фото" + +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 +msgid "Network Posts" +msgstr "Записи сети" + +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 +msgid "View Contact" +msgstr "Просмотреть контакт" + +#: include/conversation.php:881 src/Model/Contact.php:1176 +msgid "Send PM" +msgstr "Отправить ЛС" + +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 +msgid "Block" +msgstr "Заблокировать" + +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:110 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 +msgid "Ignore" +msgstr "Игнорировать" + +#: include/conversation.php:887 src/Model/Contact.php:1177 +msgid "Poke" +msgstr "потыкать" + +#: include/conversation.php:1018 +#, php-format +msgid "%s likes this." +msgstr "%s нравится это." + +#: include/conversation.php:1021 +#, php-format +msgid "%s doesn't like this." +msgstr "%s не нравится это." + +#: include/conversation.php:1024 +#, php-format +msgid "%s attends." +msgstr "%s посещает." + +#: include/conversation.php:1027 +#, php-format +msgid "%s doesn't attend." +msgstr "%s не посетит." + +#: include/conversation.php:1030 +#, php-format +msgid "%s attends maybe." +msgstr "%s может быть посетит." + +#: include/conversation.php:1033 include/conversation.php:1076 +#, php-format +msgid "%s reshared this." +msgstr "%s поделился этим." + +#: include/conversation.php:1041 +msgid "and" +msgstr "и" + +#: include/conversation.php:1047 +#, php-format +msgid "and %d other people" +msgstr "и еще %d человек" + +#: include/conversation.php:1055 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d людям нравится это" + +#: include/conversation.php:1056 +#, php-format +msgid "%s like this." +msgstr "%s нравится это." + +#: include/conversation.php:1059 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d людям не нравится это" + +#: include/conversation.php:1060 +#, php-format +msgid "%s don't like this." +msgstr "%s не нравится это" + +#: include/conversation.php:1063 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d человека посетят" + +#: include/conversation.php:1064 +#, php-format +msgid "%s attend." +msgstr "%s посетит." + +#: include/conversation.php:1067 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d человек не посетит" + +#: include/conversation.php:1068 +#, php-format +msgid "%s don't attend." +msgstr "%s не посетит" + +#: include/conversation.php:1071 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d человек может быть посетят" + +#: include/conversation.php:1072 +#, php-format +msgid "%s attend maybe." +msgstr "%s может быть посетит." + +#: include/conversation.php:1075 +#, php-format +msgid "%2$d people reshared this" +msgstr "%2$d людей поделились этим" + +#: include/conversation.php:1105 +msgid "Visible to everybody" +msgstr "Видимое всем" + +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Пожалуйста, введите адрес картинки/видео/аудио/странички:" + +#: include/conversation.php:1107 +msgid "Tag term:" +msgstr "Тег:" + +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 +msgid "Save to Folder:" +msgstr "Сохранить в папку:" + +#: include/conversation.php:1109 +msgid "Where are you right now?" +msgstr "И где вы сейчас?" + +#: include/conversation.php:1110 +msgid "Delete item(s)?" +msgstr "Удалить елемент(ты)?" + +#: include/conversation.php:1142 +msgid "New Post" +msgstr "Новая запись" + +#: include/conversation.php:1145 +msgid "Share" +msgstr "Поделиться" + +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 +msgid "Loading..." +msgstr "Загрузка..." + +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 +msgid "Upload photo" +msgstr "Загрузить фото" + +#: include/conversation.php:1148 mod/editpost.php:91 +msgid "upload photo" +msgstr "загрузить фото" + +#: include/conversation.php:1149 mod/editpost.php:92 +msgid "Attach file" +msgstr "Прикрепить файл" + +#: include/conversation.php:1150 mod/editpost.php:93 +msgid "attach file" +msgstr "приложить файл" + +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 +msgid "Bold" +msgstr "Жирный" + +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 +msgid "Italic" +msgstr "Kурсивный" + +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 +msgid "Underline" +msgstr "Подчеркнутый" + +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 +msgid "Quote" +msgstr "Цитата" + +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 +msgid "Code" +msgstr "Код" + +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 +msgid "Image" +msgstr "Изображение / Фото" + +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 +msgid "Link" +msgstr "Ссылка" + +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 +msgid "Link or Media" +msgstr "Ссылка или медиа" + +#: include/conversation.php:1159 mod/editpost.php:100 +#: src/Module/Item/Compose.php:155 +msgid "Set your location" +msgstr "Задать ваше местоположение" + +#: include/conversation.php:1160 mod/editpost.php:101 +msgid "set location" +msgstr "установить местонахождение" + +#: include/conversation.php:1161 mod/editpost.php:102 +msgid "Clear browser location" +msgstr "Очистить местонахождение браузера" + +#: include/conversation.php:1162 mod/editpost.php:103 +msgid "clear location" +msgstr "убрать местонахождение" + +#: include/conversation.php:1164 mod/editpost.php:117 +#: src/Module/Item/Compose.php:160 +msgid "Set title" +msgstr "Установить заголовок" + +#: include/conversation.php:1166 mod/editpost.php:119 +#: src/Module/Item/Compose.php:161 +msgid "Categories (comma-separated list)" +msgstr "Категории (список через запятую)" + +#: include/conversation.php:1168 mod/editpost.php:105 +msgid "Permission settings" +msgstr "Настройки разрешений" + +#: include/conversation.php:1169 mod/editpost.php:134 +msgid "permissions" +msgstr "разрешения" + +#: include/conversation.php:1178 mod/editpost.php:114 +msgid "Public post" +msgstr "Публичное сообщение" + +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 +msgid "Preview" +msgstr "Предпросмотр" + +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 +msgid "Cancel" +msgstr "Отмена" + +#: include/conversation.php:1191 +msgid "Post to Groups" +msgstr "Запись в группу" + +#: include/conversation.php:1192 +msgid "Post to Contacts" +msgstr "Запись для контактов" + +#: include/conversation.php:1193 +msgid "Private post" +msgstr "Личное сообщение" + +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 +msgid "Message" +msgstr "Сообщение" + +#: include/conversation.php:1199 mod/editpost.php:133 +msgid "Browser" +msgstr "Браузер" + +#: include/conversation.php:1201 mod/editpost.php:136 +msgid "Open Compose page" +msgstr "Развернуть редактор" + +#: include/enotify.php:50 +msgid "[Friendica:Notify]" +msgstr "[Friendica]" + +#: include/enotify.php:140 +#, php-format +msgid "%s New mail received at %s" +msgstr "%s Новая почта получена в %s" + +#: include/enotify.php:142 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s отправил вам новое личное сообщение на %2$s." + +#: include/enotify.php:143 +msgid "a private message" +msgstr "личное сообщение" + +#: include/enotify.php:143 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s послал вам %2$s." + +#: include/enotify.php:145 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." + +#: include/enotify.php:189 +#, php-format +msgid "%1$s replied to you on %2$s's %3$s %4$s" +msgstr "%1$s ответил(а) вам в %2$s %3$s %4$s" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s tagged you on %2$s's %3$s %4$s" +msgstr "%1$s отметил(а) вас в %2$s %3$s %4$s" + +#: include/enotify.php:193 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "%1$s прокомментировал(а) %2$s %3$s %4$s" + +#: include/enotify.php:203 +#, php-format +msgid "%1$s replied to you on your %2$s %3$s" +msgstr "%1$s ответил(а) вам в ваш %2$s %3$s" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s tagged you on your %2$s %3$s" +msgstr "%1$s отметил(а) вас в вашем %2$s %3$s" + +#: include/enotify.php:207 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "%1$s прокомментировал(а) ваш %2$s %3$s" + +#: include/enotify.php:214 +#, php-format +msgid "%1$s replied to you on their %2$s %3$s" +msgstr "%1$s ответил(а) вам в своём %2$s %3$s" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s tagged you on their %2$s %3$s" +msgstr "%1$s отметил(а) вас в своём %2$s %3$s" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "%1$s прокомментировал(а) свой %2$s %3$s" + +#: include/enotify.php:229 +#, php-format +msgid "%s %s tagged you" +msgstr "%s %s отметил(и) Вас" + +#: include/enotify.php:231 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s отметил вас в %2$s" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "%1$s Комментариев к разговору #%2$d от %3$s" + +#: include/enotify.php:235 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите." + +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу." + +#: include/enotify.php:247 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "%s %s размещены на стене вашего профиля" + +#: include/enotify.php:249 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s написал на вашей стене на %2$s" + +#: include/enotify.php:250 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s написал на [url=%2$s]вашей стене[/url]" + +#: include/enotify.php:262 +#, php-format +msgid "%s %s shared a new post" +msgstr "%s %s поделился(-ась) новым сообщением" + +#: include/enotify.php:264 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s поделился новой записью на %2$s" + +#: include/enotify.php:265 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]поделился записью[/url]." + +#: include/enotify.php:277 +#, php-format +msgid "%1$s %2$s poked you" +msgstr "%1$s %2$s продвинул тебя" + +#: include/enotify.php:279 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s потыкал вас на %2$s" + +#: include/enotify.php:280 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]потыкал вас[/url]." + +#: include/enotify.php:297 +#, php-format +msgid "%s %s tagged your post" +msgstr "%s %s отметили Ваше сообщение" + +#: include/enotify.php:299 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s поставил тег вашей записи %2$s" + +#: include/enotify.php:300 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s поставил тег [url=%2$s]вашей записи[/url]" + +#: include/enotify.php:312 +#, php-format +msgid "%s Introduction received" +msgstr "%s Входящих получено" + +#: include/enotify.php:314 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Вы получили запрос от '%1$s' на %2$s" + +#: include/enotify.php:315 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s." + +#: include/enotify.php:320 include/enotify.php:366 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Вы можете посмотреть его профиль здесь %s" + +#: include/enotify.php:322 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Посетите %s для подтверждения или отказа запроса." + +#: include/enotify.php:329 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "%s Новый человек поделился с Вами" + +#: include/enotify.php:331 include/enotify.php:332 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s делится с вами на %2$s" + +#: include/enotify.php:339 +#, php-format +msgid "%s You have a new follower" +msgstr "%s У Вас новый подписчик" + +#: include/enotify.php:341 include/enotify.php:342 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "У вас новый подписчик на %2$s : %1$s" + +#: include/enotify.php:355 +#, php-format +msgid "%s Friend suggestion received" +msgstr "%s Получено дружеское приглашение" + +#: include/enotify.php:357 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" + +#: include/enotify.php:358 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s." + +#: include/enotify.php:364 +msgid "Name:" +msgstr "Имя:" + +#: include/enotify.php:365 +msgid "Photo:" +msgstr "Фото:" + +#: include/enotify.php:368 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." + +#: include/enotify.php:376 include/enotify.php:391 +#, php-format +msgid "%s Connection accepted" +msgstr "%s Соединение принято" + +#: include/enotify.php:378 include/enotify.php:393 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' принял соединение с вами на %2$s" + +#: include/enotify.php:379 include/enotify.php:394 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]." + +#: include/enotify.php:384 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений." + +#: include/enotify.php:386 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." + +#: include/enotify.php:399 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a fan, which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "%1$s решил принять приглашение и пометил вас как фаната, что запрещает некоторые формы общения - например, личные сообщения и некоторые действия с профилем. Если эта страница знаменитости или сообщества, то эти настройки были применены автоматически." + +#: include/enotify.php:401 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "%1$s может расширить взаимоотношения до более мягких в будущем." + +#: include/enotify.php:403 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." + +#: include/enotify.php:413 mod/removeme.php:63 +msgid "[Friendica System Notify]" +msgstr "[Системное уведомление Friendica]" + +#: include/enotify.php:413 +msgid "registration request" +msgstr "запрос регистрации" + +#: include/enotify.php:415 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s" + +#: include/enotify.php:416 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s." + +#: include/enotify.php:421 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "Полное имя:\t%s\nРасположение:\t%s\nИмя для входа:\t%s (%s)" + +#: include/enotify.php:427 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос." + +#: include/api.php:1127 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -43,7 +1152,7 @@ msgstr[1] "Дневной лимит в %d записи достигнут. За msgstr[2] "Дневной лимит в %d записей достигнут. Запись отклонена." msgstr[3] "Дневной лимит в %d записей достигнут. Запись отклонена." -#: include/api.php:1137 +#: include/api.php:1141 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -53,1388 +1162,1374 @@ msgstr[1] "Недельный лимит в %d записи достигнут. msgstr[2] "Недельный лимит в %d записей достигнут. Запись была отклонена." msgstr[3] "Недельный лимит в %d записей достигнут. Запись была отклонена." -#: include/api.php:1151 +#: include/api.php:1155 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "Месячный лимит в %d записей достигнут. Запись была отклонена." -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 #: src/Module/Settings/Profile/Photo/Crop.php:113 #: src/Module/Settings/Profile/Photo/Crop.php:129 #: src/Module/Settings/Profile/Photo/Crop.php:178 #: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 msgid "Profile Photos" msgstr "Фотографии профиля" -#: include/conversation.php:189 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ткнул %2$s" - -#: include/conversation.php:221 src/Model/Item.php:3444 -msgid "event" -msgstr "мероприятие" - -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 -msgid "status" -msgstr "статус" - -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 -msgid "photo" -msgstr "фото" - -#: include/conversation.php:243 mod/tagger.php:121 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s tagged %2$s's %3$s в %4$s" - -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 -msgid "Select" -msgstr "Выберите" - -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 -msgid "Delete" -msgstr "Удалить" - -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Просмотреть профиль %s [@ %s]" - -#: include/conversation.php:603 src/Object/Post.php:426 -msgid "Categories:" -msgstr "Категории:" - -#: include/conversation.php:604 src/Object/Post.php:427 -msgid "Filed under:" -msgstr "В рубрике:" - -#: include/conversation.php:611 src/Object/Post.php:452 -#, php-format -msgid "%s from %s" -msgstr "%s с %s" - -#: include/conversation.php:626 -msgid "View in context" -msgstr "Смотреть в контексте" - -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 -msgid "Please wait" -msgstr "Пожалуйста, подождите" - -#: include/conversation.php:692 -msgid "remove" -msgstr "удалить" - -#: include/conversation.php:696 -msgid "Delete Selected Items" -msgstr "Удалить выбранные позиции" - -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "Подписаться на тему" - -#: include/conversation.php:858 src/Model/Contact.php:1277 -msgid "View Status" -msgstr "Просмотреть статус" - -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 -msgid "View Profile" -msgstr "Просмотреть профиль" - -#: include/conversation.php:860 src/Model/Contact.php:1279 -msgid "View Photos" -msgstr "Просмотреть фото" - -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 -msgid "Network Posts" -msgstr "Записи сети" - -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 -msgid "View Contact" -msgstr "Просмотреть контакт" - -#: include/conversation.php:863 src/Model/Contact.php:1283 -msgid "Send PM" -msgstr "Отправить ЛС" - -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 -msgid "Block" -msgstr "Заблокировать" - -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 -#: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 -msgid "Ignore" -msgstr "Игнорировать" - -#: include/conversation.php:869 src/Model/Contact.php:1284 -msgid "Poke" -msgstr "потыкать" - -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "Подключиться/Подписаться" - -#: include/conversation.php:1000 -#, php-format -msgid "%s likes this." -msgstr "%s нравится это." - -#: include/conversation.php:1003 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не нравится это." - -#: include/conversation.php:1006 -#, php-format -msgid "%s attends." -msgstr "%s посещает." - -#: include/conversation.php:1009 -#, php-format -msgid "%s doesn't attend." -msgstr "%s не посетит." - -#: include/conversation.php:1012 -#, php-format -msgid "%s attends maybe." -msgstr "%s может быть посетит." - -#: include/conversation.php:1015 include/conversation.php:1058 -#, php-format -msgid "%s reshared this." -msgstr "%s поделился этим." - -#: include/conversation.php:1023 -msgid "and" -msgstr "и" - -#: include/conversation.php:1029 -#, php-format -msgid "and %d other people" -msgstr "и еще %d человек" - -#: include/conversation.php:1037 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d людям нравится это" - -#: include/conversation.php:1038 -#, php-format -msgid "%s like this." -msgstr "%s нравится это." - -#: include/conversation.php:1041 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d людям не нравится это" - -#: include/conversation.php:1042 -#, php-format -msgid "%s don't like this." -msgstr "%s не нравится это" - -#: include/conversation.php:1045 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d человека посетят" - -#: include/conversation.php:1046 -#, php-format -msgid "%s attend." -msgstr "%s посетит." - -#: include/conversation.php:1049 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d человек не посетит" - -#: include/conversation.php:1050 -#, php-format -msgid "%s don't attend." -msgstr "%s не посетит" - -#: include/conversation.php:1053 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d человек может быть посетят" - -#: include/conversation.php:1054 -#, php-format -msgid "%s attend maybe." -msgstr "%s может быть посетит." - -#: include/conversation.php:1057 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d людей поделились этим" - -#: include/conversation.php:1087 -msgid "Visible to everybody" -msgstr "Видимое всем" - -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 -msgid "Please enter a image/video/audio/webpage URL:" -msgstr "Пожалуйста, введите адрес картинки/видео/аудио/странички:" - -#: include/conversation.php:1089 -msgid "Tag term:" -msgstr "Тег:" - -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 -msgid "Save to Folder:" -msgstr "Сохранить в папку:" - -#: include/conversation.php:1091 -msgid "Where are you right now?" -msgstr "И где вы сейчас?" - -#: include/conversation.php:1092 -msgid "Delete item(s)?" -msgstr "Удалить елемент(ты)?" - -#: include/conversation.php:1124 -msgid "New Post" -msgstr "Новая запись" - -#: include/conversation.php:1127 -msgid "Share" -msgstr "Поделиться" - -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 -msgid "Loading..." -msgstr "Загрузка..." - -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 -msgid "Upload photo" -msgstr "Загрузить фото" - -#: include/conversation.php:1130 mod/editpost.php:91 -msgid "upload photo" -msgstr "загрузить фото" - -#: include/conversation.php:1131 mod/editpost.php:92 -msgid "Attach file" -msgstr "Прикрепить файл" - -#: include/conversation.php:1132 mod/editpost.php:93 -msgid "attach file" -msgstr "приложить файл" - -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 -msgid "Bold" -msgstr "Жирный" - -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 -msgid "Italic" -msgstr "Kурсивный" - -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 -msgid "Underline" -msgstr "Подчеркнутый" - -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 -msgid "Quote" -msgstr "Цитата" - -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 -msgid "Code" -msgstr "Код" - -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 -msgid "Image" -msgstr "Изображение / Фото" - -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 -msgid "Link" -msgstr "Ссылка" - -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 -msgid "Link or Media" -msgstr "Ссылка или медиа" - -#: include/conversation.php:1141 mod/editpost.php:100 -#: src/Module/Item/Compose.php:155 -msgid "Set your location" -msgstr "Задать ваше местоположение" - -#: include/conversation.php:1142 mod/editpost.php:101 -msgid "set location" -msgstr "установить местонахождение" - -#: include/conversation.php:1143 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Очистить местонахождение браузера" - -#: include/conversation.php:1144 mod/editpost.php:103 -msgid "clear location" -msgstr "убрать местонахождение" - -#: include/conversation.php:1146 mod/editpost.php:117 -#: src/Module/Item/Compose.php:160 -msgid "Set title" -msgstr "Установить заголовок" - -#: include/conversation.php:1148 mod/editpost.php:119 -#: src/Module/Item/Compose.php:161 -msgid "Categories (comma-separated list)" -msgstr "Категории (список через запятую)" - -#: include/conversation.php:1150 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Настройки разрешений" - -#: include/conversation.php:1151 mod/editpost.php:134 -msgid "permissions" -msgstr "разрешения" - -#: include/conversation.php:1160 mod/editpost.php:114 -msgid "Public post" -msgstr "Публичное сообщение" - -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 -msgid "Preview" -msgstr "Предварительный просмотр" - -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 -msgid "Cancel" -msgstr "Отмена" - -#: include/conversation.php:1173 -msgid "Post to Groups" -msgstr "Запись в группу" - -#: include/conversation.php:1174 -msgid "Post to Contacts" -msgstr "Запись для контактов" - -#: include/conversation.php:1175 -msgid "Private post" -msgstr "Личное сообщение" - -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 -msgid "Message" -msgstr "Сообщение" - -#: include/conversation.php:1181 mod/editpost.php:133 -msgid "Browser" -msgstr "Браузер" - -#: include/conversation.php:1183 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "Развернуть редактор" - -#: include/enotify.php:50 -msgid "[Friendica:Notify]" -msgstr "[Friendica]" - -#: include/enotify.php:128 -#, php-format -msgid "%s New mail received at %s" -msgstr "%s Новая почта получена в %s" - -#: include/enotify.php:130 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s отправил вам новое личное сообщение на %2$s." - -#: include/enotify.php:131 -msgid "a private message" -msgstr "личное сообщение" - -#: include/enotify.php:131 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s послал вам %2$s." - -#: include/enotify.php:133 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." - -#: include/enotify.php:177 -#, php-format -msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "%1$s ответил(а) вам в %2$s %3$s %4$s" - -#: include/enotify.php:179 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "%1$s отметил(а) вас в %2$s %3$s %4$s" - -#: include/enotify.php:181 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "%1$s прокомментировал(а) %2$s %3$s %4$s" - -#: include/enotify.php:191 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "%1$s ответил(а) вам в ваш %2$s %3$s" - -#: include/enotify.php:193 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "%1$s отметил(а) вас в вашем %2$s %3$s" - -#: include/enotify.php:195 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "%1$s прокомментировал(а) ваш %2$s %3$s" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s replied to you on their %2$s %3$s" -msgstr "%1$s ответил(а) вам в своём %2$s %3$s" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s tagged you on their %2$s %3$s" -msgstr "%1$s отметил(а) вас в своём %2$s %3$s" - -#: include/enotify.php:206 -#, php-format -msgid "%1$s commented on their %2$s %3$s" -msgstr "%1$s прокомментировал(а) свой %2$s %3$s" - -#: include/enotify.php:217 -#, php-format -msgid "%s %s tagged you" -msgstr "%s %s отметил(и) Вас" - -#: include/enotify.php:219 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s отметил вас в %2$s" - -#: include/enotify.php:221 -#, php-format -msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "%1$s Комментариев к разговору #%2$d от %3$s" - -#: include/enotify.php:223 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите." - -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу." - -#: include/enotify.php:235 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "%s %s размещены на стене вашего профиля" - -#: include/enotify.php:237 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s написал на вашей стене на %2$s" - -#: include/enotify.php:238 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s написал на [url=%2$s]вашей стене[/url]" - -#: include/enotify.php:250 -#, php-format -msgid "%s %s shared a new post" -msgstr "%s %s поделился(-ась) новым сообщением" - -#: include/enotify.php:252 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s поделился новой записью на %2$s" - -#: include/enotify.php:253 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]поделился записью[/url]." - -#: include/enotify.php:265 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s продвинул тебя" - -#: include/enotify.php:267 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s потыкал вас на %2$s" - -#: include/enotify.php:268 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]потыкал вас[/url]." - -#: include/enotify.php:285 -#, php-format -msgid "%s %s tagged your post" -msgstr "%s %s отметили Ваше сообщение" - -#: include/enotify.php:287 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s поставил тег вашей записи %2$s" - -#: include/enotify.php:288 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s поставил тег [url=%2$s]вашей записи[/url]" - -#: include/enotify.php:300 -#, php-format -msgid "%s Introduction received" -msgstr "%s Входящих получено" - -#: include/enotify.php:302 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Вы получили запрос от '%1$s' на %2$s" - -#: include/enotify.php:303 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s." - -#: include/enotify.php:308 include/enotify.php:354 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Вы можете посмотреть его профиль здесь %s" - -#: include/enotify.php:310 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Посетите %s для подтверждения или отказа запроса." - -#: include/enotify.php:317 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "%s Новый человек поделился с Вами" - -#: include/enotify.php:319 include/enotify.php:320 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s делится с вами на %2$s" - -#: include/enotify.php:327 -#, php-format -msgid "%s You have a new follower" -msgstr "%s У Вас новый подписчик" - -#: include/enotify.php:329 include/enotify.php:330 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "У вас новый подписчик на %2$s : %1$s" - -#: include/enotify.php:343 -#, php-format -msgid "%s Friend suggestion received" -msgstr "%s Получено дружеское приглашение" - -#: include/enotify.php:345 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" - -#: include/enotify.php:346 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s." - -#: include/enotify.php:352 -msgid "Name:" -msgstr "Имя:" - -#: include/enotify.php:353 -msgid "Photo:" -msgstr "Фото:" - -#: include/enotify.php:356 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." - -#: include/enotify.php:364 include/enotify.php:379 -#, php-format -msgid "%s Connection accepted" -msgstr "%s Соединение принято" - -#: include/enotify.php:366 include/enotify.php:381 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' принял соединение с вами на %2$s" - -#: include/enotify.php:367 include/enotify.php:382 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]." - -#: include/enotify.php:372 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений." - -#: include/enotify.php:374 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." - -#: include/enotify.php:387 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a fan, which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "%1$s решил принять приглашение и пометил вас как фаната, что запрещает некоторые формы общения - например, личные сообщения и некоторые действия с профилем. Если эта страница знаменитости или сообщества, то эти настройки были применены автоматически." - -#: include/enotify.php:389 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "%1$s может расширить взаимоотношения до более мягких в будущем." - -#: include/enotify.php:391 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." - -#: include/enotify.php:401 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "[Системное уведомление Friendica]" - -#: include/enotify.php:401 -msgid "registration request" -msgstr "запрос регистрации" - -#: include/enotify.php:403 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s" - -#: include/enotify.php:404 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s." - -#: include/enotify.php:409 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "Полное имя:\t%s\nРасположение:\t%s\nИмя для входа:\t%s (%s)" - -#: include/enotify.php:415 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос." - -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "Пункт не найден." - -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "Вы действительно хотите удалить этот элемент?" - -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "Да" - -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "Нет разрешения." - -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Разрешить связь с приложением" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "Вернитесь в ваше приложение и задайте этот код:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Пожалуйста, войдите для продолжения." - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?" - -#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "Нет" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Доступ запрещен." -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Доступ к этому профилю ограничен." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "Ошибочный запрос." -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "Мероприятия" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "Смотреть" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "Назад" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "Далее" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "сегодня" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "мес." - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "неделя" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "день" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "список" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "Пользователь не найден" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "Этот формат календарей не поддерживается" - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "Нет данных для экспорта" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "календарь" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "Нет общих контактов." - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "Общие друзья" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "Профиль не найден." - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Контакт не найден." -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Нет разрешения." + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "Не выбран получатель." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Невозможно проверить местоположение." + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "Сообщение не может быть отправлено." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Неудача коллекции сообщения." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "Без адресата." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Пожалуйста, введите URL ссылки:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Отправить личное сообщение" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей." + +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "Кому:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Тема:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Ваше сообщение:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Вставить веб-ссылку" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "Профиль не найден." + +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен." -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "Ответ от удаленного сайта не был понят." -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Неожиданный ответ от удаленного сайта: " -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Подтверждение успешно завершено." -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "Временные неудачи. Подождите и попробуйте еще раз." -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "Запрос ошибочен или был отозван." -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "Удаленный сайт сообщил: " -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "Не найдено записи пользователя для '%s' " -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "Наш ключ шифрования сайта, по-видимому, перепутался." -#: mod/dfrn_confirm.php:410 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами." -#: mod/dfrn_confirm.php:426 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "Запись контакта не найдена для вас на нашем сайте." -#: mod/dfrn_confirm.php:440 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s" -#: mod/dfrn_confirm.php:456 +#: mod/dfrn_confirm.php:455 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку." -#: mod/dfrn_confirm.php:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "Не удалось установить ваши учетные данные контакта в нашей системе." -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "Не удается обновить ваши контактные детали профиля в нашей системе" -#: mod/dfrn_confirm.php:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Имя не разглашается]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Свободный доступ закрыт." + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "Видео не выбрано" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "Доступ к этому пункту ограничен." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "Просмотреть видео" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "Просмотреть альбом" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Последние видео" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Загрузить новые видео" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль." + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "первый" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "след." + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "Нет соответствий" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Похожие профили" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "Не хватает важных данных!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Обновление" + +#: mod/settings.php:200 +msgid "Failed to connect with email account using the settings provided." +msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." + +#: mod/settings.php:229 +msgid "Contact CSV file upload error" +msgstr "Ошибка загрузки CSV с контактами" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "Импорт контактов завершён" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Перемещённое сообщение было отправлено списку контактов" + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "Пароли не совпадают" + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Пароль изменен." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "Пароль не поменялся" + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "Пожалуйста, выберите имя короче." + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "Имя слишком короткое" + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "Неправильный пароль" + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "Неправильный адрес почты" + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "Нельзя установить этот адрес почты" + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию." + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию." + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "Настройки не были изменены." + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Добавить приложения" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Сохранить настройки" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Имя" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Перенаправление" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "URL символа" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "Вы не можете изменить это приложение." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Подключенные приложения" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Редактировать" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Ключ клиента начинается с" + +#: mod/settings.php:562 +msgid "No name" +msgstr "Нет имени" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Удалить авторизацию" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "Настройки дополнений не изменены" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "Настройки дополнений" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Дополнительные возможности" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "подключено" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "отключено" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Встроенная поддержка для %s подключение %s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "Доступ эл. почты отключен на этом сайте." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "Ничего" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Социальные сети" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "Общие настройки социальных медиа" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "Получать начальные записи только от ваших контактов" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "Система автоматически загружает диалоги, когда получает комментарии. Это может приводить к тому, что вы можете видеть записи от людей, на которых вы не подписаны, потому что их прокомментировал кто-то из ваших контактов. Эта настройка отключает такое поведение и вы будете видеть только записи тех людей, на которых подписаны." + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "Отключить предупреждение о содержании" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Пользователи некоторых сетей, таких как Mastodon или Pleroma, могут использовать \"предупреждение о содержании\", сворачивающее их записи. Эта настройка отключает это свёртывание и помещает \"предупреждение о содержимом\" в заголовок записи. Это не влияет на другие фильтры, которые вы можете настроить." + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Отключить умное сокращение" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "Присоединять заголовок ссылок" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов \"мой двойник\", которые публикуют содержимое ленты." + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Автоматически подписываться на любого пользователя GNU Social (OStatus), который вас упомянул или который на вас подписался" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Если вы получите сообщение от неизвестной учетной записи OStatus, эта настройка решает, что делать. Если включена, то новый контакт будет создан для каждого неизвестного пользователя." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Группа по-умолчанию для OStatus-контактов" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Ваша старая учетная запись GNU Social" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Если вы введете тут вашу старую учетную запись GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "Починить подписки OStatus" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "Настройка эл. почты / почтового ящика" + +#: mod/settings.php:692 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." + +#: mod/settings.php:693 +msgid "Last successful email check:" +msgstr "Последняя успешная проверка электронной почты:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "Имя IMAP сервера:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "Порт IMAP:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Безопасность:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "Логин эл. почты:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "Пароль эл. почты:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Адрес для ответа:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Отправлять открытые сообщения на все контакты электронной почты:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Действие после импорта:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Отметить, как прочитанное" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "Переместить в папку" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "Переместить в папку:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором." + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Тип учетной записи" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Подтипы личной страницы" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Подтипы форума сообщества" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Личная страница" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Личная учётная запись" + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Организационная страница" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "Новостная страница" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Форум сообщества" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Учётная запись для совместных обсуждений." + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Стандартная страница аккаунта" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Личная учётная запись, которая требует ручного одобрения для новых подписчиков и друзей." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Песочница" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Публичный форум" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Автоматически одобряет все запросы на подписку." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "\"Автоматический друг\" страница" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Личный форум [экспериментально]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Требует ручного одобрения запросов на подписку." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" + +#: mod/settings.php:814 +msgid "Publish your profile in your local site directory?" +msgstr "Опубликовать ваш профиль в каталоге вашего сервера?" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек." + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Ваш профиль так же будет опубликован в глобальных каталогах Френдики (напр. %s)." + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Ваш адрес: '%s' или '%s'." + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Настройки аккаунта" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Смена пароля" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "Новый пароль:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Разрешенные символы: a-z, A-Z, 0-9 специальные символы за исключением пробелов, букв с акцентами и двоеточия (:)." + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Подтвердите:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Оставьте поля пароля пустыми, если он не изменяется" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Текущий пароль:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Ваш текущий пароль, для подтверждения изменений" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Пароль:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "Удалить ссылку OpenID" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Основные параметры" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Полное имя:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "Адрес электронной почты:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Ваш часовой пояс:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Ваш язык:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма" + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Местонахождение по умолчанию:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Использовать определение местоположения браузером:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Параметры безопасности и конфиденциальности" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Максимум запросов в друзья в день:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "(для предотвращения спама)" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "Сделать ваш профиль доступным для поиска глобально?" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль." + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Скрыть список ваших контактов/друзей от просмотра в вашем профиле?" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "Список ваших контактов отображается на вашей странице профиля. Включите эту настройку, чтобы скрыть отображение вашего списка контактов." + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Скрыть данные профиля от анонимных посетителей?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "Анонимные посетители будут видеть только вашу картинку, ваше имя и и ник. Публичные записи и комментарии могут быть доступны другими способами." + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "Скрыть публичные записи из общих лент" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Ваши публичные записи не будут отражаться в общей ленте сервера или в результатах поиска, так же они не будут отправляться на ретранслтяторы. Тем не менее, они всё равно могут быть доступны в публичных лентах других серверов." + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "Сделать все опубликованные изображения доступными" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Эта настройка делает все опубликованные изображения доступными по прямой ссылке. Это можно применить для решения проблем с другими социальными сетями, которые не умеют работать с разрешениями доступа для изображений. Непубличные изображения в любом случае не будут доступны для просмотра публично в ваших альбомах." + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Ваши контакты могут оставлять записи на стене вашего профиля. Эти записи будут распространены вашим подписчикам." + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "Разрешить друзьям отмечать ваши сообщения?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "Ваши контакты могут добавлять дополнительные тэги к вашим записям." + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Пользователи Френдики могут отправлять вам личные сообщения даже если их нет в вашем списке контактов." + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Максимальное количество личных сообщений от незнакомых людей в день:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Разрешение на сообщения по умолчанию" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "Очистка старых записей" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" + +#: mod/settings.php:901 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" + +#: mod/settings.php:902 +msgid "Expire posts" +msgstr "Удалять старые записи" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "Если включено, то старые записи и комментарии будут удаляться." + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "Удалять персональные заметки" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Если включено, старые личные заметки из вашего профиля будут удаляться." + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "Удалять избранные записи" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Добавление записи в избранные защищает её от удаления. Эта настройка выключает эту защиту." + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "Удалять фото" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "Если включено, старые фото будут удаляться." + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "Удалять только записи других людей" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Если включено, ваши собственные записи никогда не удаляются. В этом случае все настройки выше применяются только к записям, которые вы получаете от других." + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Настройка уведомлений" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Отправлять уведомление по электронной почте, когда:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "Вы получили запрос" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "Ваши запросы подтверждены" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "Кто-то пишет на стене вашего профиля" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "Кто-то пишет последующий комментарий" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "Вы получаете личное сообщение" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "Вы полулили предложение о добавлении в друзья" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "Вы отмечены в записи" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "Вас потыкали/подтолкнули/и т.д. в записи" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Активировать уведомления на рабочем столе" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Показывать уведомления на рабочем столе" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "Только текстовые письма" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Отправлять только текстовые уведомления, без HTML" + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Показывать подробные уведомления" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "По-умолчанию уведомления группируются в одно для каждой записи. Эта настройка показывает все уведомления по отдельности." + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Расширенные настройки учётной записи" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Измените поведение этого аккаунта в специальных ситуациях" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "Импорт контактов" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "Загрузить файл" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Перемещение" + +#: mod/settings.php:939 +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:940 +msgid "Resend relocate message to contacts" +msgstr "Отправить перемещённые сообщения контактам" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} хочет стать Вашим другом" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} требуемая регистрация" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "Нет общих контактов." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Общие друзья" + +#: mod/network.php:304 +msgid "No items found" +msgstr "Записи не найдены" + +#: mod/network.php:547 +msgid "No such group" +msgstr "Нет такой группы" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "Группа пуста" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Группа: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Недопустимый контакт." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "Недавняя активность" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "Отсортировать по свежей активности" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "Недавние записи" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "Отсортировать по дате записей" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Личные" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Записи, которые упоминают вас или в которых вы участвуете" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Избранное" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "Избранные записи" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Переподписаться на OStatus-контакты." + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Ошибка" +msgstr[1] "Ошибки" +msgstr[2] "Ошибки" +msgstr[3] "Ошибки" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "Готово" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Держать окно открытым до завершения." + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "Вы не подписаны на этот контакт." + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Отписка в настоящий момент не предусмотрена этой сетью" + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Отсоединиться/Отписаться" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "Ваш адрес:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Отправить запрос" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "URL профиля" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Ваши записи" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "Новое сообщение" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "Не удалось найти контактную информацию." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Отказаться" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "Вы действительно хотите удалить это сообщение?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Да" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "Беседа не найдена." + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "Сообщение не было удалено." + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "Беседа не была удалена." + +#: mod/message.php:300 +msgid "No messages." +msgstr "Нет сообщений." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Сообщение не доступно." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Удалить сообщение" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Удалить историю общения" + +#: mod/message.php:426 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." + +#: mod/message.php:430 +msgid "Send Reply" +msgstr "Отправить ответ" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Неизвестный отправитель - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Вы и %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s и Вы" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d сообщение" +msgstr[1] "%d сообщений" +msgstr[2] "%d сообщений" +msgstr[3] "%d сообщений" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "Подписка на OStatus-контакты" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "Не указан контакт." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "Невозможно получить информацию о контакте." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "Невозможно получить друзей для контакта." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "удачно" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "неудача" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "игнорирован" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s добро пожаловать %2$s" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Этот запрос был уже принят." +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "Пользователь удалил свою учётную запись" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле." - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d требуемый параметр не был найден в заданном месте" -msgstr[1] "%d требуемых параметров не были найдены в заданном месте" -msgstr[2] "%d требуемых параметров не были найдены в заданном месте" -msgstr[3] "%d требуемых параметров не были найдены в заданном месте" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Запрос создан." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Неисправимая ошибка протокола." - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "Профиль недоступен." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "К %s пришло сегодня слишком много запросов на подключение." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Были применены меры защиты от спама." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "Недопустимый локатор" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Вы уже ввели информацию о себе здесь." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Похоже, что вы уже друзья с %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Неверный URL профиля." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "Запрещенный URL профиля." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "Заблокированный домен" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "Не удалось обновить запись контакта." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Ваш запрос отправлен." - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий." -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Для подтверждения запроса войдите пожалуйста с паролем." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "id пользователя: %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Удалить мой аккаунт" + +#: mod/removeme.php:100 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль." +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Подтвердить" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Пожалуйста, введите свой пароль для проверки:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Скрыть этот контакт" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Удалить ключевое слово" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Добро пожаловать домой, %s!" +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Выберите ключевое слово для удаления: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Удалить" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "Свободный доступ закрыт." - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "Запрос в друзья / на подключение" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой (например, Diaspora), вам нужно подписаться на %s непосредственно на вашей системе" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." -#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня." - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "Ваш адрес Webfinger или ссылка на профиль:" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "Пожалуйста, ответьте следующее:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "Отправить запрос" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "%s знают Вас" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "Добавить личную заметку:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "Запрошенная запись не существует или была удалена." -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Доступ к этому профилю ограничен." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." msgstr "Лента недоступна для этого объекта." -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Элемент не найден" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Неверный запрос." -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Редактировать сообщение" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Изображение превышает лимит размера в %s" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "Сохранить" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Невозможно обработать фото." -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "Вставить веб-ссылку" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Фото стены" -#: mod/editpost.php:95 -msgid "web link" -msgstr "веб-ссылка" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Вставить ссылку видео" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "видео-ссылка" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Вставить ссылку аудио" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "аудио-ссылка" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "Копии на email адреса" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Пример: bob@example.com, mary@example.com" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Эвент не может закончится до старта." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Название мероприятия и время начала обязательны для заполнения." - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "Создать новое мероприятие" - -#: mod/events.php:523 -msgid "Event details" -msgstr "Сведения о мероприятии" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "Необходима дата старта и заголовок." - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "Начало мероприятия:" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "Требуется" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "Дата/время окончания не известны, или не указаны" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "Окончание мероприятия:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "Настройка часового пояса" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "Описание:" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "Откуда:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "Титул:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "Поделитесь этим мероприятием" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Подтвердить" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "Базовый" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "Расширенный" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "Разрешения" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "Ошибка удаления события" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "Событие удалено" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "Фото" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "Фотографии контакта" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "Загрузить" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "Файлы" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Не удалось добавить этот контакт." - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "Вы уже добавили этот контакт." - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "Ваш адрес:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "URL профиля" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "Ключевые слова: " - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "Ваши записи" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "Не удалось найти оригинальную запись." - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "Пустое сообщение отбрасывается." - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "Запись обновлена." - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "Запись не была сохранена." - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "Не удалось получить запись." - -#: mod/item.php:831 -msgid "Post published." -msgstr "Запись опубликована." - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Личная информация удаленно недоступна." - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "Кто может видеть:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "Читатели" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "Взаимные" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Загрузка фото неудачная." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1536,6 +2631,10 @@ msgid "" "successful login." msgstr "Ваш пароль может быть изменен на странице Настройки после успешного входа." +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "Ваш пароль был сброшен." + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1566,1404 +2665,229 @@ msgstr "\n\t\t\tВаши данные для входа ниже:\n\n\t\t\tАд msgid "Your password has been changed at %s" msgstr "Ваш пароль был изменен %s" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль." +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "Этот запрос был уже принят." -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "Подключить" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле." -#: mod/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "первый" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца." -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "след." +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Нет соответствий" - -#: mod/match.php:149 -msgid "Profile Match" -msgstr "Похожие профили" - -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "Новое сообщение" - -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "Не выбран получатель." - -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "Не удалось найти контактную информацию." - -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "Сообщение не может быть отправлено." - -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "Неудача коллекции сообщения." - -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "Сообщение отправлено." - -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "Отказаться" - -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "Сообщения" - -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "Вы действительно хотите удалить это сообщение?" - -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "Диалог не найден." - -#: mod/message.php:186 -msgid "Message deleted." -msgstr "Сообщение удалено." - -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "Беседа удалена." - -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "Пожалуйста, введите URL ссылки:" - -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "Отправить личное сообщение" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "Кому:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "Тема:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Ваше сообщение:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "Нет сообщений." - -#: mod/message.php:367 -msgid "Message not available." -msgstr "Сообщение не доступно." - -#: mod/message.php:421 -msgid "Delete message" -msgstr "Удалить сообщение" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "Удалить историю общения" - -#: mod/message.php:440 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." - -#: mod/message.php:444 -msgid "Send Reply" -msgstr "Отправить ответ" - -#: mod/message.php:527 +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 #, php-format -msgid "Unknown sender - %s" -msgstr "Неизвестный отправитель - %s" +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d требуемый параметр не был найден в заданном месте" +msgstr[1] "%d требуемых параметров не были найдены в заданном месте" +msgstr[2] "%d требуемых параметров не были найдены в заданном месте" +msgstr[3] "%d требуемых параметров не были найдены в заданном месте" -#: mod/message.php:529 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Запрос создан." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Неисправимая ошибка протокола." + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Профиль недоступен." + +#: mod/dfrn_request.php:264 #, php-format -msgid "You and %s" -msgstr "Вы и %s" +msgid "%s has received too many connection requests today." +msgstr "К %s пришло сегодня слишком много запросов на подключение." -#: mod/message.php:531 +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Были применены меры защиты от спама." + +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." + +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Недопустимый локатор" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "Вы уже ввели информацию о себе здесь." + +#: mod/dfrn_request.php:329 #, php-format -msgid "%s and You" -msgstr "%s и Вы" +msgid "Apparently you are already friends with %s." +msgstr "Похоже, что вы уже друзья с %s." -#: mod/message.php:558 +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Неверный URL профиля." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Запрещенный URL профиля." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Заблокированный домен" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Не удалось обновить запись контакта." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Ваш запрос отправлен." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Для подтверждения запроса войдите пожалуйста с паролем." + +#: mod/dfrn_request.php:504 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль." + +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Подтвердить" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Скрыть этот контакт" + +#: mod/dfrn_request.php:531 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d сообщение" -msgstr[1] "%d сообщений" -msgstr[2] "%d сообщений" -msgstr[3] "%d сообщений" +msgid "Welcome home %s." +msgstr "Добро пожаловать домой, %s!" -#: mod/network.php:568 -msgid "No such group" -msgstr "Нет такой группы" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "Группа пуста" - -#: mod/network.php:593 +#: mod/dfrn_request.php:532 #, php-format -msgid "Group: %s" -msgstr "Группа: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "Недопустимый контакт." +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Запрос в друзья / на подключение" -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "Недавняя активность" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "Отсортировать по свежей активности" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "Недавние записи" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "Отсортировать по дате записей" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "Личные" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "Записи, которые упоминают вас или в которых вы участвуете" - -#: mod/network.php:930 -msgid "New" -msgstr "Новое" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "Лента активности - по дате" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "Ссылки, которыми поделились" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "Интересные ссылки" - -#: mod/network.php:951 -msgid "Starred" -msgstr "Избранное" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "Избранные записи" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Личные заметки" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "Успешно добавлено." - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "Подписка на OStatus-контакты" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Не указан контакт." - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Невозможно получить информацию о контакте." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Невозможно получить друзей для контакта." - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Готово" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "удачно" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "неудача" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "игнорирован" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Держать окно открытым до завершения." - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Фотоальбомы" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "Последние фото" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "Загрузить новые фото" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "каждый" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Информация о контакте недоступна" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "Альбом не найден." - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "Альбом успешно удалён" - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "Альбом был пуст." - -#: mod/photos.php:591 -msgid "a photo" -msgstr "фото" - -#: mod/photos.php:591 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s отмечен/а/ в %2$s by %3$s" - -#: mod/photos.php:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Изображение превышает лимит размера в %s" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "Не получилось загрузить изображение, попробуйте снова" - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "Файл изображения не найден" - -#: mod/photos.php:700 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" - -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "Файл изображения пуст." - -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Невозможно обработать фото." - -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "Загрузка фото неудачная." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "Не выбрано фото." - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Доступ к этому пункту ограничен." - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "Загрузить фото" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "Название нового альбома: " - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "или выберите имеющийся альбом:" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "Не показывать статус-сообщение для этой закачки" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "Показать в группах" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "Показывать контактам" - -#: mod/photos.php:1050 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" - -#: mod/photos.php:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "Удалить альбом" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "Редактировать альбом" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "Удалить альбом" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "Показать новые первыми" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "Показать старые первыми" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "Просмотр фото" - -#: mod/photos.php:1145 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Нет разрешения. Доступ к этому элементу ограничен." - -#: mod/photos.php:1147 -msgid "Photo not available" -msgstr "Фото недоступно" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "Вы действительно хотите удалить эту фотографию?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "Удалить фото" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "Просмотр фото" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "Редактировать фото" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "Удалить фото" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "Использовать как фото профиля" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "Закрытое фото" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "Просмотреть полный размер" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "Ключевые слова: " - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "[выберите тэги для удаления]" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "Название нового альбома" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "Подпись" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "Добавить ключевое слово (тег)" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "Не поворачивать" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Поворот по часовой стрелке (направо)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Поворот против часовой стрелки (налево)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "Нравится" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "Не нравится" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "Это вы" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "Оставить комментарий" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "Карта" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "Просмотреть альбом" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0} хочет стать Вашим другом" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} требуемая регистрация" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "Потыкать/Потолкать" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "Потыкать, потолкать или сделать что-то еще с кем-то" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "Получатель" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Выберите действия для получателя" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "Сделать эту запись личной" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Пользователь удалил свою учётную запись" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "id пользователя: %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Удалить мой аккаунт" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Пожалуйста, введите свой пароль для проверки:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Переподписаться на OStatus-контакты." - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Ошибка" -msgstr[1] "Ошибки" -msgstr[2] "Ошибки" -msgstr[3] "Ошибки" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "Не хватает важных данных!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "Обновление" - -#: mod/settings.php:201 -msgid "Failed to connect with email account using the settings provided." -msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." - -#: mod/settings.php:206 -msgid "Email settings updated." -msgstr "Настройки эл. почты обновлены." - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "Настройки обновлены" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "Ошибка загрузки CSV с контактами" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "Импорт контактов завершён" - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "Перемещённое сообщение было отправлено списку контактов" - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "Пароли не совпадают" - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "Пароль изменен." - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "Пароль не поменялся" - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "Пожалуйста, выберите имя короче." - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "Имя слишком короткое" - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "Неправильный пароль" - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "Неправильный адрес почты" - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "Нельзя установить этот адрес почты" - -#: mod/settings.php:427 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию." - -#: mod/settings.php:430 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию." - -#: mod/settings.php:447 -msgid "Settings updated." -msgstr "Настройки обновлены." - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "Добавить приложения" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "Сохранить настройки" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "Имя" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "Перенаправление" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "URL символа" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "Вы не можете изменить это приложение." - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "Подключенные приложения" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "Редактировать" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "Ключ клиента начинается с" - -#: mod/settings.php:570 -msgid "No name" -msgstr "Нет имени" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "Удалить авторизацию" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "Настройки дополнений не изменены" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "Настройки дополнений" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "Дополнительные возможности" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "подключено" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "отключено" - -#: mod/settings.php:637 mod/settings.php:638 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Встроенная поддержка для %s подключение %s" - -#: mod/settings.php:638 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "Доступ эл. почты отключен на этом сайте." - -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "Ничего" - -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Социальные сети" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "Общие настройки социальных медиа" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "Получать начальные записи только от ваших контактов" - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "Система автоматически загружает диалоги, когда получает комментарии. Это может приводить к тому, что вы можете видеть записи от людей, на которых вы не подписаны, потому что их прокомментировал кто-то из ваших контактов. Эта настройка отключает такое поведение и вы будете видеть только записи тех людей, на которых подписаны." - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "Отключить предупреждение о содержании" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Пользователи некоторых сетей, таких как Mastodon или Pleroma, могут использовать \"предупреждение о содержании\", сворачивающее их записи. Эта настройка отключает это свёртывание и помещает \"предупреждение о содержимом\" в заголовок записи. Это не влияет на другие фильтры, которые вы можете настроить." - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "Отключить умное сокращение" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "Присоединять заголовок ссылок" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов \"мой двойник\", которые публикуют содержимое ленты." - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Автоматически подписываться на любого пользователя GNU Social (OStatus), который вас упомянул или который на вас подписался" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Если вы получите сообщение от неизвестной учетной записи OStatus, эта настройка решает, что делать. Если включена, то новый контакт будет создан для каждого неизвестного пользователя." - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "Группа по-умолчанию для OStatus-контактов" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "Ваша старая учетная запись GNU Social" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Если вы введете тут вашу старую учетную запись GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "Починить подписки OStatus" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "Настройка эл. почты / почтового ящика" - -#: mod/settings.php:700 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." - -#: mod/settings.php:701 -msgid "Last successful email check:" -msgstr "Последняя успешная проверка электронной почты:" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "Имя IMAP сервера:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "Порт IMAP:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "Безопасность:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "Логин эл. почты:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "Пароль эл. почты:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "Адрес для ответа:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "Отправлять открытые сообщения на все контакты электронной почты:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "Действие после импорта:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "Отметить, как прочитанное" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "Переместить в папку" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "Переместить в папку:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором." - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "Тип учетной записи" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "Подтипы личной страницы" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "Подтипы форума сообщества" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Личная страница" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "Личная учётная запись" - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Организационная страница" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков." - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "Новостная страница" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков." - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Форум сообщества" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "Учётная запись для совместных обсуждений." - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Стандартная страница аккаунта" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Личная учётная запись, которая требует ручного одобрения для новых подписчиков и друзей." - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Песочница" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков." - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Публичный форум" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "Автоматически одобряет все запросы на подписку." - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "\"Автоматический друг\" страница" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья." - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "Личный форум [экспериментально]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "Требует ручного одобрения запросов на подписку." - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" - -#: mod/settings.php:822 -msgid "Publish your profile in your local site directory?" -msgstr "Опубликовать ваш профиль в каталоге вашего сервера?" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:643 #, php-format msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек." +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой (например, Diaspora), вам нужно подписаться на %s непосредственно на вашей системе" -#: mod/settings.php:828 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Ваш профиль так же будет опубликован в глобальных каталогах Френдики (напр. %s)." +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." +msgstr "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня." -#: mod/settings.php:834 +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "Ваш адрес Webfinger или ссылка на профиль:" + +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Пожалуйста, ответьте следующее:" + +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Ваш адрес: '%s' или '%s'." +msgid "%s knows you" +msgstr "%s знают Вас" -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "Настройки аккаунта" +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Добавить личную заметку:" -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "Смена пароля" +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Разрешить связь с приложением" -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "Новый пароль:" +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Вернитесь в ваше приложение и задайте этот код:" -#: mod/settings.php:874 +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Пожалуйста, войдите для продолжения." + +#: mod/api.php:124 msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Разрешенные символы: a-z, A-Z, 0-9 специальные символы за исключением пробелов, букв с акцентами и двоеточия (:)." - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Подтвердите:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "Оставьте поля пароля пустыми, если он не изменяется" - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "Текущий пароль:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "Ваш текущий пароль, для подтверждения изменений" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "Пароль:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "Удалить ссылку OpenID" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "Основные параметры" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "Полное имя:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "Адрес электронной почты:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "Ваш часовой пояс:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "Ваш язык:" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма" - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "Местонахождение по умолчанию:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "Использовать определение местоположения браузером:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "Параметры безопасности и конфиденциальности" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "Максимум запросов в друзья в день:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "(для предотвращения спама)" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" -msgstr "Сделать ваш профиль доступным для поиска глобально?" - -#: mod/settings.php:894 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль." - -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Скрыть список ваших контактов/друзей от просмотра в вашем профиле?" - -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "Список ваших контактов отображается на вашей странице профиля. Включите эту настройку, чтобы скрыть отображение вашего списка контактов." - -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Скрыть данные профиля от анонимных посетителей?" - -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Анонимные посетители будут видеть только вашу картинку, ваше имя и и ник. Публичные записи и комментарии могут быть доступны другими способами." - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "Скрыть публичные записи из общих лент" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Ваши публичные записи не будут отражаться в общей ленте сервера или в результатах поиска, так же они не будут отправляться на ретранслтяторы. Тем не менее, они всё равно могут быть доступны в публичных лентах других серверов." - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "Сделать все опубликованные изображения доступными" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Эта настройка делает все опубликованные изображения доступными по прямой ссылке. Это можно применить для решения проблем с другими социальными сетями, которые не умеют работать с разрешениями доступа для изображений. Непубличные изображения в любом случае не будут доступны для просмотра публично в ваших альбомах." - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Ваши контакты могут оставлять записи на стене вашего профиля. Эти записи будут распространены вашим подписчикам." - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "Разрешить друзьям отмечать ваши сообщения?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "Ваши контакты могут добавлять дополнительные тэги к вашим записям." - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Пользователи Френдики могут отправлять вам личные сообщения даже если их нет в вашем списке контактов." - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "Максимальное количество личных сообщений от незнакомых людей в день:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "Разрешение на сообщения по умолчанию" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "Очистка старых записей" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" - -#: mod/settings.php:909 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" - -#: mod/settings.php:910 -msgid "Expire posts" -msgstr "Удалять старые записи" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "Если включено, то старые записи и комментарии будут удаляться." - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "Удалять персональные заметки" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Если включено, старые личные заметки из вашего профиля будут удаляться." - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "Удалять избранные записи" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Добавление записи в избранные защищает её от удаления. Эта настройка выключает эту защиту." - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "Удалять фото" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "Если включено, старые фото будут удаляться." - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "Удалять только записи других людей" - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Если включено, ваши собственные записи никогда не удаляются. В этом случае все настройки выше применяются только к записям, которые вы получаете от других." - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "Настройка уведомлений" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "Отправлять уведомление по электронной почте, когда:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "Вы получили запрос" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "Ваши запросы подтверждены" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "Кто-то пишет на стене вашего профиля" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "Кто-то пишет последующий комментарий" - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "Вы получаете личное сообщение" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "Вы полулили предложение о добавлении в друзья" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "Вы отмечены в записи" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "Вас потыкали/подтолкнули/и т.д. в записи" - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "Активировать уведомления на рабочем столе" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "Показывать уведомления на рабочем столе" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "Только текстовые письма" - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "Отправлять только текстовые уведомления, без HTML" - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "Показывать подробные уведомления" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "По-умолчанию уведомления группируются в одно для каждой записи. Эта настройка показывает все уведомления по отдельности." - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "Расширенные настройки учётной записи" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "Измените поведение этого аккаунта в специальных ситуациях" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "Импорт контактов" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "Загрузить файл" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "Перемещение" - -#: mod/settings.php:947 -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:948 -msgid "Resend relocate message to contacts" -msgstr "Отправить перемещённые сообщения контактам" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "Предложенный контакт проигнорирован" - -#: mod/suggest.php:67 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." - -#: mod/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "Вы действительно хотите удалить это предложение?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "Проигнорировать/Скрыть" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "Предложения друзей" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "Тэги удалены" - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "Удалить ключевое слово" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "Выберите ключевое слово для удаления: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "Удалить" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?" + +#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "Нет" + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Или вы пытались загрузить пустой файл?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Файл превышает лимит размера в %s" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "Загрузка файла не удалась." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "Не удалось найти оригинальную запись." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Пустое сообщение отбрасывается." + +#: mod/item.php:710 +msgid "Post updated." +msgstr "Запись обновлена." + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "Запись не была сохранена." + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "Не удалось получить запись." + +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Пункт не найден." + +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "Вы действительно хотите удалить этот элемент?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." @@ -3010,96 +2934,471 @@ msgid "" "select \"Export account\"" msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." -msgstr "Вы не подписаны на этот контакт." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "Пользователь не найден." -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "Отписка в настоящий момент не предусмотрена этой сетью" +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "Смотреть" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "Вы отписались от контакта" +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Назад" -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "Отсоединиться/Отписаться" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Далее" -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Видео не выбрано" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "сегодня" -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "Просмотреть видео" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "мес." -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Последние видео" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "неделя" -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Загрузить новые видео" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "день" -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "список" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "Пользователь не найден" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "Этот формат календарей не поддерживается" + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "Нет данных для экспорта" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "календарь" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Элемент не найден" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Редактировать сообщение" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Сохранить" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "веб-ссылка" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Вставить ссылку видео" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "видео-ссылка" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Вставить ссылку аудио" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "аудио-ссылка" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "Копии на email адреса" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Пример: bob@example.com, mary@example.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Эвент не может закончится до старта." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Название мероприятия и время начала обязательны для заполнения." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Создать новое мероприятие" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Сведения о мероприятии" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Необходима дата старта и заголовок." + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Начало мероприятия:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Требуется" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "Дата/время окончания не известны, или не указаны" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Окончание мероприятия:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "Настройка часового пояса" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Описание:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Откуда:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Титул:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Поделитесь этим мероприятием" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Базовый" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Расширенный" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Разрешения" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Ошибка удаления события" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "Не удалось добавить этот контакт." + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "Вы уже добавили этот контакт." + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Ключевые слова: " + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Фотографии контакта" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Загрузить" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Файлы" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Личные заметки" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Фотоальбомы" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Последние фото" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Загрузить новые фото" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "каждый" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Информация о контакте недоступна" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Альбом не найден." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "Альбом успешно удалён" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "Альбом был пуст." + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "Не получилось удалить фото." + +#: mod/photos.php:583 +msgid "a photo" +msgstr "фото" + +#: mod/photos.php:583 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s отмечен/а/ в %2$s by %3$s" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Невозможно проверить местоположение." +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "Не получилось загрузить изображение, попробуйте снова" -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "Без адресата." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "Файл изображения не найден" -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "Неверный запрос." +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "Файл изображения пуст." -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "Не выбрано фото." -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Или вы пытались загрузить пустой файл?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Загрузить фото" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Файл превышает лимит размера в %s" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "Название нового альбома: " -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Загрузка файла не удалась." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "или выберите имеющийся альбом:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "Фото стены" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "Не показывать статус-сообщение для этой закачки" + +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Показать в группах" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Показывать контактам" + +#: mod/photos.php:1042 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" + +#: mod/photos.php:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Удалить альбом" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Редактировать альбом" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "Удалить альбом" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Показать новые первыми" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Показать старые первыми" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "Просмотр фото" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Нет разрешения. Доступ к этому элементу ограничен." + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "Фото недоступно" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "Вы действительно хотите удалить эту фотографию?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Удалить фото" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "Просмотр фото" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Редактировать фото" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "Удалить фото" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Использовать как фото профиля" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "Закрытое фото" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "Просмотреть полный размер" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Ключевые слова: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[выберите тэги для удаления]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "Название нового альбома" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Подпись" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Добавить ключевое слово (тег)" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "Не поворачивать" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Поворот по часовой стрелке (направо)" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Поворот против часовой стрелки (налево)" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "Нравится" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "Не нравится" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "Это вы" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Оставить комментарий" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Карта" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "Вы должны войти в систему, чтобы использовать аддоны." + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Удалить этот элемент?" + +#: src/App/Page.php:298 +msgid "toggle mobile" +msgstr "мобильная версия" #: src/App/Authentication.php:210 src/App/Authentication.php:262 msgid "Login failed." msgstr "Войти не удалось." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "The error message was:" msgstr "Сообщение об ошибке было:" @@ -3116,858 +3415,114 @@ msgstr "Добро пожаловать, %s" msgid "Please upload a profile photo." msgstr "Пожалуйста, загрузите фотографию профиля." -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "Добро пожаловать, %s" - -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "Вы должны войти в систему, чтобы использовать аддоны." - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Удалить этот элемент?" - -#: src/App/Page.php:298 -msgid "toggle mobile" -msgstr "мобильная версия" - -#: src/App/Router.php:209 +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Метод не разрешён для этого модуля. Разрешенный метод(ы): %s" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Страница не найдена." -#: src/App.php:326 -msgid "No system theme config value set." -msgstr "Настройки системной темы не установлены." +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "В MyISAM или InnoDB нет таблиц в формате Antelope." -#: src/BaseModule.php:150 +#: src/Database/DBStructure.php:93 +#, php-format 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 "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nОшибка %d возникла при обновлении базы данных:\n%s\n" -#: src/Console/ArchiveContact.php:105 +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Ошибки, возникшие при применении изменений базы данных: " + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." +msgstr "Другая операция обновления базы данных уже запущена." + +#: src/Database/DBStructure.php:300 #, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Не удалось найти не архивированных контактов для этой URL (%s)" +msgid "%s: Database update" +msgstr "%s: Обновление базы данных" -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "Записи этого контакта были архивированы." - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Database/DBStructure.php:600 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Не удалось найти контактных данных по этой ссылке (%s)" +msgid "%s: updating %s table." +msgstr "%s: обновляется %s таблица." -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "Контакт был заблокирован на узле." - -#: src/Console/PostUpdate.php:87 +#: src/Database/Database.php:659 src/Database/Database.php:762 #, php-format -msgid "Post update version number has been set to %s." -msgstr "Номер версии обновления записи установлен на %s." +msgid "Database error %d \"%s\" at \"%s\"" +msgstr "Ошибка базы данных %d \"%s\" в \"%s\"" -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Проверить наличие отложенных действий." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Готово." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Выполнить обновления записей из очереди." - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Все операции по обновлению записей выполнены." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Введите новый пароль:" - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Введите имя пользователя:" - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "Введите ник пользователя:" - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Введите адрес почты пользователя:" - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Введите язык (не обязательно):" - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "Пользователь не в ожидании" - -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Введите \"yes\" для удаления %s" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "новее" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "старее" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "Часто" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "Раз в час" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "Дважды в день" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "Раз в день" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "Раз в неделю" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "Раз в месяц" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "Эл. почта" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "Diaspora" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" -msgstr "Discourse" - -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "Diaspora Connector" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "GNU Social Connector" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" -msgstr "%s (через %s)" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "Основные возможности" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Место фотографирования" - -#: src/Content/Feature.php:98 +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте." +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "Friendica не может отобразить эту страницу в данный момент, пожалуйста, свяжитесь с администратором." -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "Экспортировать публичный календарь" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "Возможность скачивать публичный календарь посетителями" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" -#: src/Content/Feature.php:100 -msgid "Trending Tags" -msgstr "Популярные тэги" +#: src/Core/Update.php:215 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Обновление %s не удалось. Смотрите журнал ошибок." -#: src/Content/Feature.php:100 +#: src/Core/Update.php:280 +#, php-format msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Показать облако популярных тэгов на странице публичных записей сервера" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tРазработчики Френдики недавно выпустили обновление %s,\n\t\t\t\tно при установке что-то пошло не так.\n\t\t\t\tЭто нужно исправить в ближайшее время и у меня не получается сделать это самостоятельно. Пожалуйста, свяжитесь с разработчиками Френдики, если вы не можете мне помочь сами. База данных может быть повреждена." -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "Составление сообщений" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "Автоматически отмечать форумы" - -#: src/Content/Feature.php:106 +#: src/Core/Update.php:286 +#, php-format msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Добавлять/удалять упоминание, когда страница форума выбрана/убрана в списке получателей." +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Сообщение об ошибке:\n[pre]%s[/pre]" -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" -msgstr "Явные отметки" +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "[Friendica Notify] Обновление базы данных" -#: src/Content/Feature.php:107 +#: src/Core/Update.php:320 +#, php-format msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Вставлять отметки пользователей в поле комментариев, чтобы иметь ручной контроль над тем, кто будет упомянут в ответе." - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "Панель Сеть" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "Архивы" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "Возможность выбора записей по диапазону дат" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" -msgstr "Фильтр протоколов" - -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Включить возможность фильтрации записей по протоколам на панели Сеть" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "Сетевые вкладки" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "Новая вкладка сеть" - -#: src/Content/Feature.php:120 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "Вкладка shared ссылок сети" - -#: src/Content/Feature.php:121 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Включить вкладку для отображения только сообщений сети со ссылками на них" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "Инструменты записей/комментариев" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "Категории записей" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "Добавить категории для ваших записей" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "Расширенные настройки профиля" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "Список форумов" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Показывать посетителям публичные форумы на расширенной странице профиля." - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "Облако тэгов" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Показывать ваше личное облако тэгов в вашем профиле" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "Показывать дату регистрации" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "Дата вашей регистрации будет отображаться в вашем профиле" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "Форумы" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "Внешняя ссылка на форум" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "показать больше" - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "Ничего нового здесь" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "Назад" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "Стереть уведомления" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "@имя, !форум, #тег, контент" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "Выход" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "Завершить эту сессию" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "Вход" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "Вход" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "Записи" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "Ваши записи и диалоги" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "Информация" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "Информация о вас" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "Ваши фотографии" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "Видео" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "Ваши видео" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "Ваши события" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "Личные заметки" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "Ваши личные заметки" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "Мой профиль" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "Главная страница" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "Регистрация" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "Создать аккаунт" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "Помощь" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "Помощь и документация" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "Приложения" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "Дополнительные приложения, утилиты, игры" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "Поиск" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "Поиск по сайту" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "Контент" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "Тэги" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "Контакты" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "Сообщество" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "Диалоги на этом и других серверах" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "Календарь и события" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "Каталог" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "Каталог участников" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "Информация" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "Информация об этом экземпляре Friendica" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "Условия оказания услуг" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "Условия оказания услуг для этого узла Friendica" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "Новости" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "Сообщения ваших друзей" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "Запросы" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "Запросы на добавление в список друзей" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "Уведомления" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "Посмотреть все уведомления" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "Отметить все системные уведомления, как прочитанные" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "Личная почта" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "Входящие" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "Исходящие" - -#: src/Content/Nav.php:274 -msgid "Accounts" -msgstr "Учётные записи" - -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "Управление другими страницами" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "Настройки" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "Настройки аккаунта" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "Управление / редактирование друзей и контактов" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "Администратор" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "Конфигурация сайта" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "Навигация" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "Карта сайта" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "Встраивание отключено" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "Встроенное содержание" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "пред." - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "последний" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "Изображение / Фото" - -#: src/Content/Text/BBCode.php:1047 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "Нажмите, чтобы открыть / закрыть" - -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1 написал:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "Зашифрованный контент" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "Неправильный протокол источника" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "Неправильная протокольная ссылка" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "Загружаю больше сообщений..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "Конец" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "Подписаться" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "Экспорт" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "Экспортировать календарь в формат ical" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "Экспортировать календарь в формат csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "Нет контактов" - -#: src/Content/Widget/ContactBlock.php:104 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d контакт" -msgstr[1] "%d контактов" -msgstr[2] "%d контактов" -msgstr[3] "%d контактов" - -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "Просмотр контактов" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "Удалить элемент" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "запомненные поиски" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Популярные тэги (за %d час)" -msgstr[1] "Популярные тэги (за %d часа)" -msgstr[2] "Популярные тэги (за %d часов)" -msgstr[3] "Популярные тэги (за %d часов)" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "Больше популярных тэгов" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "Добавить контакт" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "Введите адрес или веб-местонахождение" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Пример: bob@example.com, http://example.com/barbara" - -#: src/Content/Widget.php:72 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d приглашение доступно" -msgstr[1] "%d приглашений доступно" -msgstr[2] "%d приглашений доступно" -msgstr[3] "%d приглашений доступно" - -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "Поиск людей" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "Введите имя или интерес" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Примеры: Роберт Morgenstein, Рыбалка" - -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "Найти" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "Похожие интересы" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "Случайный профиль" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "Пригласить друзей" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "Глобальный каталог" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "Локальный каталог" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Группы" - -#: src/Content/Widget.php:220 -msgid "Everyone" -msgstr "Все" - -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "Подписчики" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "Взаимные друзья" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "Отношения" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "Все контакты" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "Протоколы" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "Все протоколы" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "Сохранённые папки" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "Всё" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "Категории" - -#: src/Content/Widget.php:449 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d Контакт" -msgstr[1] "%d Контактов" -msgstr[2] "%d Контактов" -msgstr[3] "%d Контактов" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\t\tБаза данных Френдики была успешно обновлена с версии %s на %s." #: src/Core/ACL.php:155 msgid "Yourself" msgstr "Вы" +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "Читатели" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "Взаимные" + #: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Отправить на Email" @@ -4005,409 +3560,409 @@ msgstr "За исключением:" msgid "Connectors" msgstr "Соединители" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Не получается записать файл конфигурации базы данных \"config/local.config.php\". Пожалуйста, создайте этот файл в корневом каталоге веб-сервера вручную, вставив в него приведённые здесь данные." -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Не удалось найти PATH веб-сервера в установках PHP." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" -msgstr "Если у вас нет доступа к командной строке PHP на вашем сервере, вы не сможете использовать фоновые задания. Посмотрите 'Настройка фоновых заданий'" +msgstr "" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "Найденная PHP версия: " -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Не включено \"register_argc_argv\" в установках PHP." -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "Это необходимо для работы доставки сообщений." -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "Генерация шифрованых ключей" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Ошибка: PDO или MySQLi модули PHP требуются, но не установлены." -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Ошибка: Драйвер MySQL для PDO не установлен." -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "PDO или MySQLi PHP модуль" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "Ошибка, необходим PHP модуль XML, но он не установлен" -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "XML PHP модуль" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "libCurl PHP модуль" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "GD graphics PHP модуль" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP модуль" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "mb_string PHP модуль" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "iconv PHP модуль" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль iconv, но он не установлен." -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "POSIX PHP модуль" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "Ошибка: POSIX PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "JSON PHP модуль" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "Ошибка: JSON PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" msgstr "File Information PHP модуль" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "Ошибка File Information PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Установщику требуется создать файл \"local.config.php\" в каталоге \"config\" на вашем веб-сервере, но у него не получается это сделать." -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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 "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете." -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "В конце этой операции мы предоставим вам текст конфигурации, которую вам нужно будет сохранить в виде файла local.config.php в каталоге \"config\" вашей установки Френдики." -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций." -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" msgstr "config/local.config.php доступен для записи" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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 "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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 "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "view/smarty3 доступен для записи" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." msgstr "Url rewrite в .htaccess не работает. Убедитесь, что вы скопировали .htaccess-dist в .htaccess." -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" msgstr "Ошибка Curl при закачке" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "Url rewrite работает" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "Модуль PHP ImageMagick не установлен" -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "Модуль PHP ImageMagick установлен" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick поддерживает GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "База данных уже используется." -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "Не удалось подключиться к базе данных." -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "Понедельник" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "Среда" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "Четверг" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "Пятница" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "Суббота" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "Воскресенье" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "Январь" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "Февраль" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "Март" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "Апрель" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "Май" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "Июнь" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "Июль" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "Август" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "Сентябрь" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "Октябрь" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "Ноябрь" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "Декабрь" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "Пн" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "Вт" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "Ср" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "Чт" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "Пт" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "Сб" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "Вс" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "Янв" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "Фев" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "Мрт" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "Апр" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "Июн" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "Июл" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "Авг" @@ -4415,15 +3970,15 @@ msgstr "Авг" msgid "Sep" msgstr "Сен" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "Окт" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "Нбр" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "Дек" @@ -4475,39 +4030,6 @@ msgstr "ребаф" msgid "rebuffed" msgstr "ребафнут" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Обновление %s не удалось. Смотрите журнал ошибок." - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tРазработчики Френдики недавно выпустили обновление %s,\n\t\t\t\tно при установке что-то пошло не так.\n\t\t\t\tЭто нужно исправить в ближайшее время и у меня не получается сделать это самостоятельно. Пожалуйста, свяжитесь с разработчиками Френдики, если вы не можете мне помочь сами. База данных может быть повреждена." - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Сообщение об ошибке:\n[pre]%s[/pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "[Friendica Notify] Обновление базы данных" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tБаза данных Френдики была успешно обновлена с версии %s на %s." - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Ошибка расшифровки файла аккаунта" @@ -4542,41 +4064,409 @@ msgstr "Ошибка создания профиля пользователя" msgid "Done. You can now login with your username and password" msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "В MyISAM или InnoDB нет таблиц в формате Antelope." +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Legacy-модуль не найден: %s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(без темы)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nОшибка %d возникла при обновлении базы данных:\n%s\n" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "Ошибки, возникшие при применении изменений базы данных: " - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" -msgstr "%s: Обновление базы данных" +msgid "You may visit them online at %s" +msgstr "Вы можете посетить их в онлайне на %s" -#: src/Database/DBStructure.php:546 +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." + +#: src/Object/EMail/ItemCCEMail.php:46 #, php-format -msgid "%s: updating %s table." -msgstr "%s: обновляется %s таблица." +msgid "%s posted an update." +msgstr "%s отправил/а/ обновление." -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "Эта запись была отредактирована" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Личное сообщение" + +#: src/Object/Post.php:213 +msgid "pinned item" +msgstr "закреплённая запись" + +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "Удалить для себя" + +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "Удалить везде" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "Убрать для себя" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "сохранить в папке" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "Я буду" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "Меня не будет" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "Возможно" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "игнорировать тему" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "не игнорировать тему" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "изменить статус игнорирования" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "Закрепить" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "Открепить" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "закрепить/открепить" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "закреплено" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "пометить" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "убрать метку" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "переключить статус" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "помечено" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "добавить ключевое слово (тег)" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "нравится" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "не нравится" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Поделитесь этим" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "поделиться" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "%s (Получено %s)" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "к" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "через" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "Стена-на-Стену" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "через Стена-на-Стену:" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "Ответ %s" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "Ещё" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "Постановка в очередь" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "Ожидается отправка адресатам" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "Отправка адресатам в процессе" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "Отправка адресатам почти завершилась" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "Отправка адресатам завершена" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d комментарий" +msgstr[1] "%d комментариев" +msgstr[2] "%d комментариев" +msgstr[3] "%d комментариев" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "Показать больше" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "Показать меньше" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "комментарий" +msgstr[3] "комментарий" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Не удалось найти не архивированных контактов для этой URL (%s)" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "Записи этого контакта были архивированы." + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Не удалось найти контактных данных по этой ссылке (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "Контакт был заблокирован на узле." + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "Введите новый пароль:" + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "Введите имя пользователя:" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "Введите ник пользователя:" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "Введите адрес почты пользователя:" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "Введите язык (не обязательно):" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "Пользователь не в ожидании" + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "Пользователь уже помечен для удаления." + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Введите \"yes\" для удаления %s" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "Удаление отменено." + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Номер версии обновления записи установлен на %s." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Проверить наличие отложенных действий." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Готово." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Выполнить обновления записей из очереди." + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Все операции по обновлению записей выполнены." + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Родной город:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "Семейное положение:" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "Вместе:" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "С:" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Сексуальные предпочтения:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Политические взгляды:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Религиозные взгляды:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Нравится:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Не нравится:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Заголовок / Описание:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Резюме" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Музыкальные интересы" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Книги, литература" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Телевидение" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Кино / танцы / культура / развлечения" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Хобби / Интересы" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Любовь / романтика" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Работа / занятость" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "Школа / образование" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Контактная информация и социальные сети" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "Настройки системной темы не установлены." + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "Предложение в друзья" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "Запрос в друзья / на подключение" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "Новый фолловер" @@ -4621,3284 +4511,260 @@ msgstr "%s возможно будет присутствовать на соб msgid "%s is now friends with %s" msgstr "%s теперь друзья с %s" -#: src/LegacyModule.php:49 +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Уведомления сети" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "Уведомления системы" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Личные уведомления" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Уведомления" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Legacy-модуль не найден: %s" +msgid "No more %s notifications." +msgstr "Больше нет уведомлений о %s." -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" -msgstr "Отписаться" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Показать непрочитанные" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "Удалить контакт" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Показать все" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 -#: src/Module/Notifications/Introductions.php:107 -#: src/Module/Notifications/Introductions.php:183 -msgid "Approve" -msgstr "Одобрить" +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "Вам нужно войти, чтобы увидеть эту страницу." -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "Организация" +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Уведомления" -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "Новости" +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Показать проигнорированные запросы" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "Форум" +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Скрыть проигнорированные запросы" -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "Connect-URL отсутствует." +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "Тип уведомления:" -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети." - -#: src/Model/Contact.php:2336 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями." - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Обнаружены несовместимые протоколы связи или каналы." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "Указанный адрес профиля не дает адекватной информации." - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "Автор или имя не найдены." - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "Нет URL браузера, который соответствует этому адресу." - -#: src/Model/Contact.php:2359 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Не получается совместить этот адрес с известным протоколом или контактом электронной почты." - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." - -#: src/Model/Contact.php:2366 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." - -#: src/Model/Contact.php:2371 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "Невозможно получить контактную информацию." - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "Начало:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "Окончание:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "Весь день" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "Сен" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "Нет событий для показа" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l, j F" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "Редактировать мероприятие" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "Дубликат события" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "Удалить событие" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "ссылка на сообщение" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "Показать карту" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "Скрыть карту" - -#: src/Model/Event.php:1042 -#, php-format -msgid "%s's birthday" -msgstr "день рождения %s" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "С днём рождения %s" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "Элемент заполнен" - -#: src/Model/Group.php:92 -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 "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием." - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Группа доступа по умолчанию для новых контактов" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Каждый" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "редактировать" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "добавить" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Редактировать группу" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Контакты не состоят в группе" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Создать новую группу" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "Название группы: " - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Редактировать группы" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "активность" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "комментарий" -msgstr[3] "комментарий" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "сообщение" - -#: src/Model/Item.php:3576 -#, php-format -msgid "Content warning: %s" -msgstr "Предупреждение о контенте: %s" - -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "байт" - -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "Посмотреть в отдельной вкладке" - -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "посмотреть на отдельной вкладке" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[без темы]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "Редактировать профиль" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "Изменить фото профиля" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "Домашняя страничка:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 -msgid "About:" -msgstr "О себе:" - -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "Отписаться" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Фид Atom" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 -msgid "Network:" -msgstr "Сеть:" - -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "g A l F d" - -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[сегодня]" - -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "Напоминания о днях рождения" - -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "Дни рождения на этой неделе:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[без описания]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "Напоминания о мероприятиях" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "События на ближайшие 7 дней:" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s приветствует %2$s" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Хранилищу БД не удалось обновить %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Хранилищу БД не удалось записать данные" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Файловому хранилищу не удалось создать \"%s\". Проверьте, есть ли у вас разрешения на запись." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Файловому хранилищу не удалось записать данные в \"%s\". Проверьте, есть ли у вас разрешения на запись." - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Корневой каталог хранилища" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Каталог, куда сохраняются загруженные файлы. Для максимальной безопасности этот каталог должен быть размещён вне каталогов веб-сервера." - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Введите путь к существующему каталогу" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "Вход не удался" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "Недостаточно информации для входа" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "Пароль не может быть пустым" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "Пароль не должен быть пустым." - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой." - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Пароль не может содержать символы с акцентами, пробелы или двоеточия (:)" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "Пароли не совпадают. Пароль не изменен." - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "Требуется приглашение." - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "Приглашение не может быть проверено." - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "Неверный URL OpenID" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "Пожалуйста, введите необходимую информацию." - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "system.username_min_length (%s) и system.username_max_length (%s) противоречат друг другу, меняем их местами." - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "Имя пользователя должно быть хотя бы %s символ." -msgstr[1] "Имя пользователя должно быть хотя бы %s символа." -msgstr[2] "Имя пользователя должно быть хотя бы %s символов." -msgstr[3] "Имя пользователя должно быть хотя бы %s символов." - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "Имя пользователя должно быть не больше %s символа." -msgstr[1] "Имя пользователя должно быть не больше %s символов" -msgstr[2] "Имя пользователя должно быть не больше %s символов." -msgstr[3] "Имя пользователя должно быть не больше %s символов." - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." - -#: src/Model/User.php:701 -msgid "Your email domain is not among those allowed on this site." -msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "Неверный адрес электронной почты." - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "Этот ник был заблокирован для регистрации администратором узла." - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "Нельзя использовать этот Email." - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Ваш ник может содержать только символы a-z, 0-9 и _." - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." - -#: src/Model/User.php:806 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз." - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "Друзья" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "При создании группы контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз." - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\tУважаемый(ая) %1$s,\n\t\t\tадминистратор %2$s создал для вас учётную запись." - -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "\n\t\tДанные для входа в систему:\n\n\t\tМестоположение сайта:\t%1$s\n\t\tЛогин:\t\t%2$s\n\t\tПароль:\t\t%3$s\n\n\t\tВы можете изменить пароль на странице \"Настройки\" после авторизации.\n\n\t\tПожалуйста, уделите время ознакомлению с другими другие настройками аккаунта на этой странице.\n\n\n\t\tВы также можете захотеть добавить немного базовой информации к вашему стандартному профилю\n\t\t(на странице \"Информация\") чтобы другим людям было проще вас найти.\n\n\t\tМы рекомендуем указать ваше полное имя, добавить фотографию,\n\t\tнемного \"ключевых слов\" (очень полезно, чтобы завести новых друзей)\n\t\tи возможно страну вашего проживания; если вы не хотите быть более конкретным.\n\n\t\tМы полностью уважаем ваше право на приватность, поэтому ничего из этого не является обязательным.\n\t\tЕсли же вы новичок и никого не знаете, это может помочь\n\t\tвам завести новых интересных друзей.\n\n\t\tЕсли вы когда-нибудь захотите удалить свой аккаунт, вы можете сделать это перейдя по ссылке %1$s/removeme\n\n\t\tСпасибо и добро пожаловать в %4$s." - -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "Подробности регистрации для %s" - -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tУважаемый %1$s,\n\t\t\t\tБлагодарим Вас за регистрацию на %2$s. Ваш аккаунт ожидает подтверждения администратором.\n\n\t\t\tВаши данные для входа в систему:\n\n\t\t\tМестоположение сайта:\t%3$s\n\t\t\tЛогин:\t\t%4$s\n\t\t\tПароль:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "Регистрация на %s" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tУважаемый(ая) %1$s,\n\t\t\t\tСпасибо за регистрацию на %2$s. Ваша учётная запись создана.\n\t\t\t" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tДанные для входа:\n\n\t\t\tАдрес сайта:\t%3$s\n\t\t\tИмя:\t\t%1$s\n\t\t\tПароль:\t\t%5$s\n\n\t\t\tВы можете сменить пароль в настройках учётной записи после входа.\n\t\t\t\n\n\t\t\tТакже обратите внимание на другие настройки на этой странице.\n\n\t\t\tВы можете захотеть добавить основную информацию о себе\n\t\t\tна странице \"Профиль\", чтобы другие люди легко вас нашли.\n\n\t\t\tМы рекомендуем указать полное имя и установить фото профиля,\n\t\t\tдобавить ключевые слова для поиска друзей по интересам,\n\t\t\tи, вероятно, страну вашего проживания.\n\n\t\t\tМы уважаем вашу приватность и ничто из вышеуказанного не обязательно.\n\t\t\tЕсли вы новичок и пока никого здесь не знаете, то это поможет\n\t\t\tвам найти новых интересных друзей.\n\n\t\t\tЕсли вы захотите удалить свою учётную запись, то сможете сделать это на %3$s/removeme\n\n\t\t\tСпасибо и добро пожаловать на %2$s." - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "Дополнение не найдено." - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "Дополнение %s отключено." - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "Дополнение %s включено." - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "Отключить" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "Включить" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "Администрация" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Дополнения" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "Переключить" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "Автор:" - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "Программа обслуживания: " - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "Не удалось установить дополнение %s." - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Перезагрузить активные дополнения" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1$s и найти больше интересных дополнений в открытой библиотеке на %2$s" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s контакт разблокирован" -msgstr[1] "%s контакта разблокированы" -msgstr[2] "%s контактов разблокировано" -msgstr[3] "%s контактов разблокировано" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Чёрный список удалённых контактов" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Заблокировать удалённый контакт" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "выбрать все" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "сбросить выбор" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "Разблокировать" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "Для этого узла нет заблокированных контактов." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Заблокированные контакты" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Заблокировать новый контакт" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Фото" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Причина" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s заблокированный контакт" -msgstr[1] "%s заблокированных контакта" -msgstr[2] "%s заблокированных контактов" -msgstr[3] "%s заблокированных контактов" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "URL блокируемого контакта." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Причина блокировки" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Маска адреса сервера добавлена в чёрный список." - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "Черный список узлов обновлён." - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "Маска домена блокируемого сервера" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "Причина блокировки" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "Удалить маску домена" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "Отметьте, чтобы удалить эту запись из черного списка" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "Чёрный список доменов" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "На этой странице можно настроить чёрный список доменов узлов федеративной сети, которые не должны взаимодействовать с вашим узлом. Для каждой записи вы должны предоставить причину блокировки." - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей." - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "

Маска домена узла нечувствительна к регистру и представляет собой выражение shell из следующих специальных символов:

\n
    \n\t
  • *: Любые символы в любом количестве
  • \n\t
  • ?: Один любой символ
  • \n\t
  • [<char1><char2>...]: char1 или char2
  • \n
" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "Добавить новую запись в чёрный список" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "Маска домена узла" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "Причина блокировки" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "Причина блокировки вами этого домена." - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "Добавить запись" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "Сохранить изменения чёрного списка" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "Текущие значения чёрного списка" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "Удалить запись из чёрного списка" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "Удалить запись из чёрного списка?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Обновление было успешно отмечено" - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Обновление базы данных %s успешно применено." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Выполнение %s завершено с ошибкой: %s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Обновление %s успешно применено." - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Не было процедур обновления %s, которые нужно было запустить." - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "Неудавшихся обновлений нет." - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "Проверить структуру базы данных" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "Неудавшиеся обновления" - -#: src/Module/Admin/DBSync.php:116 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "Отмечено успешно (если обновление было применено вручную)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "Попытаться выполнить этот шаг обновления автоматически" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Заблокировать %s" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Управление дополнительными возможностями" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "Другой" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "неизвестно" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "На этой странице вы можете увидеть немного статистики из известной вашему узлу федеративной сети. Эти данные неполные и только отражают ту часть сети, с которой ваш узел взаимодействовал." - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "Автообнаружение контактов не включено, эта функция улучшила бы отображаемую здесь статистику." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Статистика федерации" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "В настоящий момент этому узлу известно %d узлов с %d зарегистрированных пользователей со следующих платформ:" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Запись помечена для удаления." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Удалить запись" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Удалить эту запись" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "GUID записи, которую вы хотите удалить." - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "GUID записи" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "Файл журнала '%s' недоступен для записи. Журналирование невозможно." - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "Настройки журнала обновлены." - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "Лог PHP включен." - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "Лог PHP выключен." - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "Журналы" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "Очистить" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "Включить отладку" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Лог-файл" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "Уровень лога" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "PHP логирование" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "Чтобы временно включить журналирование ошибок и предупреждений PHP, вы можете добавить следующее в файл index.php вашей установки. Имя файла, установленное в 'error_log', задаётся относительно каталога установки Френдики и у веб-сервера должно быть разрешение на запись в этот файл. Настройка 1' для 'log_errors' и 'display_errors' включает журналирование и отображение ошибок, '0' отключает." - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Не получается открыть файл журнала %1$s \\r\\n
Проверьте, что файл %1$s существует и читается веб-сервером." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Не получается открыть файл журнала %1$s \\r\\n
Проверьте, что файл %1$s доступен для чтения веб-сервером." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "Просмотр логов" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Посмотреть очередь отложенных заданий" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза." - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Посмотреть очередь заданий" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Параметры задания" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Создано" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Приоритет" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - ://" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "Недопустимое значение типа хранилища." - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "Установки сайта обновлены." - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "Нет специальной темы для мобильных устройств" - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (экспериментально)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "Нет общей ленты записей локальных пользователей" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "Нет общей ленты записей" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "Публичные записи от пользователей этого узла" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "Публичные записи федеративной сети" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "Публичные записи от местных пользователей и федеративной сети." - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "Отключенный" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "Пользователи" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "Users, Global Contacts" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "Users, Global Contacts/fallback" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "Один месяц" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "Три месяца" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "Пол года" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "Один год" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "Многопользовательский вид" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "Закрыто" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "Требуется подтверждение" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "Открыто" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "Заставить все ссылки использовать SSL" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "Не проверять" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "проверить стабильную версию" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "проверить development-версию" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "нет" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "Прямые контакты" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "Контакты контактов" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "База данных (устаревшее)" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Сайт" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "Переопубликовать пользователей в каталог" - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "Регистрация" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "Загрузка файлов" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "Политики" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "Каталог автообнаружения контактов" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "Производительность" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "Обработчик" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "Ретранслятор записей" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "Переместить узел" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Внимание! Опасная функция. Может сделать этот сервер недоступным." - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "Название сайта" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "Системный Email" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Адрес с которого будут приходить письма пользователям." - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "Баннер/Логотип" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "Лого для писем" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "Иконка сайта" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "Ссылка на иконку, которая будет использоваться браузерами." - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "Иконка веб-приложения" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах." - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "Дополнительная информация" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "Для публичных серверов: здесь вы можете разместить дополнительную информацию и она будет доступна по %s/servers." - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "Системный язык" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "Системная тема" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "Мобильная тема системы" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "Тема для мобильных устройств" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "Политика SSL" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Ссылки должны быть вынуждены использовать SSL" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "SSL принудительно" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Форсировать не-SSL запросы как SSL. Внимание: на некоторых системах это может привести к бесконечным циклам." - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "Скрыть пункт \"помощь\" в меню навигации" - -#: src/Module/Admin/Site.php:632 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую." - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "Однопользовательский режим" - -#: src/Module/Admin/Site.php:633 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "Файловое хранилище" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "Это хранилище используется для загруженных файлов. Если вы измените настройки хранилища, вам потребуется вручную переместить существующие файлы. Если вы этого не сделаете, то ранее загруженные файлы будут по прежнему доступны по старому адресу. Пожалуйста, ознакомьтесь с документацией, чтобы узнать больше о процедуре перемещения." - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "Максимальный размер изображения" - -#: src/Module/Admin/Site.php:637 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "Максимальная длина картинки" - -#: src/Module/Admin/Site.php:638 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "Качество JPEG изображения" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "Политика регистрация" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "Максимальное число регистраций в день" - -#: src/Module/Admin/Site.php:642 -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 "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта." - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "Текст регистрации" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления." - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "Запрещённые ники" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Имена, перечисленные через запятую, которые запрещены для регистрации на этом узле. Предустановленный список соответствует RFC 2142." - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "Аккаунт считается после x дней не воспользованным" - -#: src/Module/Admin/Site.php:645 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "Разрешенные домены друзей" - -#: src/Module/Admin/Site.php:646 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "Разрешенные почтовые домены" - -#: src/Module/Admin/Site.php:647 -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 "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "Не показывать контент OEmbed" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже." - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "Разрешённые OEmbed домены " - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Список доменов через запятую, содержимое oembed с них будет отображаться. Можно использовать маски." - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "Блокировать общественный доступ" - -#: src/Module/Admin/Site.php:650 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт." - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "Принудительная публикация" - -#: src/Module/Admin/Site.php:651 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Включение этого может нарушить законы о личных данных, например, GDPR." - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "URL глобального каталога" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен." - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "Частные сообщения по умолчанию для новых пользователей" - -#: src/Module/Admin/Site.php:653 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Установить права на создание записей по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "Не включать текст сообщения в email-оповещение." - -#: src/Module/Admin/Site.php:654 -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 "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности." - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." - -#: src/Module/Admin/Site.php:655 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "Не вставлять личные картинки в записи" - -#: src/Module/Admin/Site.php:656 -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 "Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "Контент для взрослых" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации." - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "Разрешить пользователям установить remote_self" - -#: src/Module/Admin/Site.php:658 -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 "Если включено, любой пользователь сможет пометить любой контакт как \"remote_self\" в расширенных настройках контакта. Установка такого параметра приводит к тому, что все записи помеченного контакта публикуются в ленте от имени пользователя." - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "Блокировать множественные регистрации" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "Отключить OpenID" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "Отключить поддержку OpenID для регистрации и входа." - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "Не проверять полное имя" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Разрешить пользователям регистрироваться, если указанное ими имя не имеет пробела между именем и фамилией." - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "Публичная лента для посетителей" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты." - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "Число записей на пользователя в публичной ленте" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Максимальное число записей от одного пользователя в публичной ленте узла. (Не применяется к федеративной публичной ленте)." - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "Отключить поддержку OStatus" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Отключить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично, поэтому возможны периодические предупреждения о приватности." - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Поддержка OStatus может быть включена только вместе с поддержкой веток диалогов." - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог." - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "Включить поддержку Diaspora" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Обеспечить встроенную поддержку сети Diaspora." - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "Позволять только Friendica контакты" - -#: src/Module/Admin/Site.php:669 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены." - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "Проверка SSL" - -#: src/Module/Admin/Site.php:670 -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 сертификат." - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "Прокси пользователь" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "Прокси URL" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "Тайм-аут сети" - -#: src/Module/Admin/Site.php:673 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "Средняя максимальная нагрузка" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d." - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "Максимальная нагрузка (Frontend)" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Максимальная нагрузка на систему, прежде чем frontend отключится - по-умолчанию 50." - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "Минимум памяти" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено)." - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "Максимальный размер таблицы для оптимизации" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Максимальный размер таблицы (в MB) для автоматической оптимизации. Введите -1, чтобы отключить это." - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "Минимальная фрагментация" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Минимальный уровень фрагментации для автоматической оптимизации - по умолчанию 30%." - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "Периодически проверять глобальные контакты" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Если включено, глобальные контакты периодически проверяются для актуализации данных и проверки жизнеспособности контактов и серверов." - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "Обнаруживать подписки среди глобальных контактов" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "Если включено, у глобальных контактов будут так же проверяться их новые подписки и подписчики. Эта настройка создаст очень много заданий, поэтому её имеет смысл включать на мощных серверах." - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "Интервал запросов" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Интервал в днях, с которым контакты сервера будут перепроверяться." - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "Обнаруживать контакты с других серверов" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "Периодически опрашивать другие серверы на предмет контактов. Вы можете выбрать \"Users\": пользователи удалённого сервера, \"Global Contacts\": активные контакты, про которые серверу известно. Fallback предназначен для серверов Redmatrix и старых серверов Френдики, где глобальные контакты недоступны. Это увеличивает нагрузку, поэтому рекомендованная настройка: \"Users, Global Contacts\"." - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "Период активности глобальных контактов" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Когда обнаружение включено, это значение определяет период активности, за который глобальные контакты загружаются с удалённых серверов." - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "Искать в местном каталоге" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах." - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "Опубликовать информацию о сервере" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info." - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "Проверять версию в репозитории" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Включает проверку новых версий Френдики на Github. Если появится новая версия, вы получите уведомление в панели администратора." - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "Скрывать тэги" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Отключить показ списка тэгов в конце записей." - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "Очистка базы данных" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Удалять старые записи, полученные с других серверов, ненужные записи в базе данных." - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "Время жизни записей с других серверов" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "Если очистка базы данных включена, эта настройка определяет число дней, после которого записи будут удаляться. Собственные записи, записи с закладками, записи в папках не удаляются. 0 отключает очистку." - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "Время жизни ничейных элементов" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0." - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "Время жизни необработанных данных коммуникаций." - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней." - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "Путь к элементам кэша" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Кэш записей хранит сгенерированные элементы BBCode и внешние изображения." - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "Время жизни кэша в секундах" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Как долго кэш должен хранить содержимое? Значение по умолчанию 86400 секунд (один день). Чтобы отключить, установите значение -1." - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "Максимальное число комментариев для записи" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100." - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "Временная папка" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь." - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "Отключить проксирование картинок" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "Прокси-сервер изображений улучшает производительность и приватность. Его можно выключить для систем с сильно ограниченной пропускной полосой." - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "Искать только в тегах" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "На больших системах текстовый поиск может сильно замедлить систему." - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "Новый базовый url" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Изменить основной URL для этого сервера. Будет отправлено сообщение о перемещении сервера всем контактам из Friendica и Diaspora для всех пользователей." - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "RINO шифрование" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "Слой шифрования между узлами." - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "Включено" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "Максимальное число параллельно работающих worker'ов" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" msgstr "" -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "Включить fastlane" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "Включить frontend worker" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "" - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "Подписаться на ретранслятор" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Включает получение публичных записей через ретранслятор. Они будут использоваться в результатах поиска, подписках на тэги и на общей публичной ленте." - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "Сервер ретрансляции" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Адрес сервера ретрансляции, куда будут отсылаться публичные записи. Например https://relay.diasp.org" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "Прямая ретрансляция" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Разрешает прямую отправку на другие серверы без использования ретрансляторов" - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "Область ретрансляции" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "Допустимые значения \"all\" или \"tags\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами." - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "all" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "tags" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "Тэги сервера" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Список тэгов, разделённых запятыми, используемый для подписки в режиме \"tags\"" - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "Разрешить пользовательские тэги" - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "Если включено, то тэги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тэгам сервера." - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "Начать перемещение" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "" - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "" - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "" - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!" - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab." - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "" - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "" - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "" - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "" - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "" - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "" - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "Обычный аккаунт" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "Публичный форум" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "\"Автоматический друг\" Аккаунт" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "Аккаунт блога" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "Закрытый форум" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "Очереди сообщений" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "Настройки сервера" - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Резюме" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "Зарегистрированные пользователи" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "Ожидающие регистрации" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "Версия" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "Активные дополнения" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "Настройки темы обновлены." - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "Тема %s отключена." - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Тема %s успешно включена." - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "Не удалось установить тему %s." - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "Скриншот" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "Темы" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "Неизвестная тема." - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Перезагрузить активные темы" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "Ни одной темы не найдено на сервере. Они должны быть размещены в %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[экспериментально]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Неподдерживаемое]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "Настройки Условий Оказания Услуг были обновлены." - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "Показать Условия оказания услуг" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Включить страницу с Условиями Оказания Услуг. Если эта настройка активна, ссылка на страницу с Условиями будет добавлена в форму регистрации и на страницу общей информации." - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "Показать Положение о конфиденциальности" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "Показать различную информацию о соответствии узла различным требованиям конфиденциальности, например, EU-GDPR." - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "Предпросмотр Положения о конфиденциальности" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "Условия оказания услуг" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже." - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s пользователь заблокирован" -msgstr[1] "%s пользователя заблокировано" -msgstr[2] "%s пользователей заблокировано" -msgstr[3] "%s пользователей заблокировано" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s пользователь разблокирован" -msgstr[1] "%s пользователя разблокировано" -msgstr[2] "%s пользователей разблокировано" -msgstr[3] "%s пользователей разблокировано" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "Вы не можете удалить самого себя" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s человек удален" -msgstr[1] "%s чел. удалено" -msgstr[2] "%s чел. удалено" -msgstr[3] "%s чел. удалено" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s пользователь одобрен" -msgstr[1] "%s пользователя одобрено" -msgstr[2] "%s пользователей одобрено" -msgstr[3] "%s пользователей одобрено" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s регистрация отменена" -msgstr[1] "%s регистрации отменены" -msgstr[2] "%s регистраций отменены" -msgstr[3] "%s регистраций отменены" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "Пользователь \"%s\" удалён" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Пользователь \"%s\" заблокирован" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Пользователь \"%s\" разблокирован" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Аккаунт утвержден." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "Регистрация отменена" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Закрытый форум" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "Ретранслятор" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Дата регистрации" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Последний вход" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "Последняя публичная запись" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Добавить пользователя" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "Пользователь ожидает окончательного удаления" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Запрос даты" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "Нет регистраций." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Сообщение от пользователя" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Отклонить" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "Пользователь заблокирован" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Админ сайта" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Аккаунт просрочен" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "Новый пользователь" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "Постоянное удаление" - -#: src/Module/Admin/Users.php:267 -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Вы уверены в вашем действии?" - -#: src/Module/Admin/Users.php:268 -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Вы уверены в вашем действии?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Имя нового пользователя." - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Ник" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Ник нового пользователя." - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "Email адрес нового пользователя." - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "Нет друзей." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Нет установленных приложений." - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Приложения" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Пункт не был найден." - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "При делегировании доступ к странице администратора невозможен. Пожалуйста, зайдите под учётной записью администратора напрямую." - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Общая информация" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Конфигурация" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "Дополнительные возможности" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "База данных" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "Обновление БД" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Посмотреть отложенные задания" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Посмотреть очередь заданий" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Инструменты" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Чёрный список контактов" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Чёрный список серверов" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Диагностика" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "" - -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "Регистрации пользователей, ожидающие подтверждения" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "Информация о вас" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Только вы можете это видеть" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Советы для новых участников" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "Поиск по людям - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "Поиск по форумам - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Аккаунт" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 -#: src/Module/Settings/TwoFactor/Index.php:105 -msgid "Two-factor authentication" -msgstr "" - -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Внешний вид" - -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" -msgstr "Управление учётными записями" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Подключенные приложения" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "Экспорт личных данных" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Удалить аккаунт" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "" - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "Запись создана" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "Установки контакта приняты." - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "Обновление контакта неудачное." - -#: src/Module/Contact/Advanced.php:113 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ВНИМАНИЕ: Это крайне важно! Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать." - -#: src/Module/Contact/Advanced.php:114 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' сейчас, если вы не уверены, что делаете на этой странице." - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "Не зеркалировать" - -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "Зеркалировать как переадресованные сообщения" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "Зеркалировать как мои сообщения" - -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "Возврат к редактору контакта" - -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "Обновить данные контакта" - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "Remote Self" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "Зекралировать сообщения от этого контакта" - -#: src/Module/Contact/Advanced.php:148 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта." - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "Ник аккаунта" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - перезаписывает Имя/Ник" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "URL аккаунта" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" -msgstr "" - -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "URL запроса в друзья" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "URL подтверждения друга" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "URL эндпоинта уведомления" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "URL опроса/ленты" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "Новое фото из этой URL" - -#: src/Module/Contact.php:88 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "Не удалось получить доступ к записи контакта." - -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "Контакт обновлен." - -#: src/Module/Contact.php:385 -msgid "Contact not found" -msgstr "Контакт не найден" - -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "Контакт заблокирован" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "Контакт разблокирован" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "Контакт проигнорирован" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "У контакта отменено игнорирование" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "Контакт заархивирован" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "Контакт разархивирован" - -#: src/Module/Contact.php:448 -msgid "Drop contact" -msgstr "Удалить контакт" - -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "Вы действительно хотите удалить этот контакт?" - -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "Контакт удален." - -#: src/Module/Contact.php:495 -#, php-format -msgid "You are mutual friends with %s" -msgstr "У Вас взаимная дружба с %s" - -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "Вы делитесь с %s" - -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s делится с Вами" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "Приватные коммуникации недоступны для этого контакта." - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "Никогда" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(Обновление было успешно)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(Обновление не удалось)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "Предложить друзей" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Сеть: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "Связь с контактом утеряна!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "Получить подробную информацию о фидах" - -#: src/Module/Contact.php:553 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "" - -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "Получить информацию" - -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "Получить ключевые слова" - -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "Получить информацию и ключевые слова" - -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "Информация о контакте / Заметки" - -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "Настройки контакта" - -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "Контакт" - -#: src/Module/Contact.php:585 -msgid "Their personal note" -msgstr "Персональная заметка" - -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "Редактировать заметки контакта" - -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Посетить профиль %s [%s]" - -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "Блокировать / Разблокировать контакт" - -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "Игнорировать контакт" - -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "Просмотр бесед" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "Последнее обновление: " - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "Обновить публичные сообщения" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "Обновить сейчас" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "Не игнорировать" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "В настоящее время заблокирован" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "В настоящее время игнорируется" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "В данный момент архивирован" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "Ожидаем подтверждения соединения" - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 msgid "Hide this contact from others" msgstr "Скрыть этот контакт от других" -#: src/Module/Contact.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Ответы/лайки ваших публичных сообщений будут видимы." +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 +msgid "Approve" +msgstr "Одобрить" -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "Уведомление о новых записях" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Утверждения, о которых должно быть вам известно: " -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Отправлять уведомление о каждом новой записи контакта" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "Должно ли ваше соединение быть двухсторонним или нет?" -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "Черный список ключевых слов" - -#: src/Module/Contact.php:616 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "Действия" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "Показать все контакты" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "В ожидании" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "Показать только контакты \"в ожидании\"" - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "Заблокирован" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "Показать только блокированные контакты" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "Игнорирован" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "Показать только игнорируемые контакты" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "Архивированные" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "Показывать только архивные контакты" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "Скрытые" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "Показывать только скрытые контакты" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "Настроить группы контактов" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "Поиск ваших контактов" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "Results for: %s" -msgstr "Результаты для: %s" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "Архивировать" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "Разархивировать" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "Пакетные действия" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "Записи и комментарии" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "Показать все контакты" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "Показать все общие поля" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "Дополнительные Настройки Контакта" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "Взаимная дружба" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "является вашим поклонником" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "Вы - поклонник" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "" - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "" - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "Редактировать контакт" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "Изменить статус блокированности (заблокировать/разблокировать)" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "Изменить статус игнорирования" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "Сменить статус архивации (архивирова/не архивировать)" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "Удалить контакт" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Местное сообщество" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Записи пользователей с этого сервера" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Глобальное сообщество" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Записи пользователей со всей федеративной сети" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "Нет результатов." - -#: src/Module/Conversation/Community.php:125 msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера." +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Принимая %s как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него." -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "" - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Недоступно." - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Признательность" - -#: src/Module/Credits.php:45 +#: src/Module/Notifications/Introductions.php:127 +#, php-format msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Принимая %s как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него." -#: src/Module/Debug/Babel.php:49 -msgid "Source input" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Друг" + +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Подписчик" + +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 +msgid "About:" +msgstr "О себе:" + +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 +msgid "Network:" +msgstr "Сеть:" + +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "Запросов нет." + +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" +msgstr "Децентрализованная социальная сеть" + +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Выход из системы." + +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Неправильный код, попробуйте ещё." + +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 +#: src/Module/Settings/TwoFactor/Index.php:105 +msgid "Two-factor authentication" +msgstr "Двухфакторная аутентификация" + +#: src/Module/Security/TwoFactor/Verify.php:81 +msgid "" +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

" + +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Пожалуйста, введите код из вашего приложения для аутентификации" + +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" msgstr "" -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" +#: src/Module/Security/TwoFactor/Recovery.php:60 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Осталось кодов для восстановления: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Двухфакторное восстановление доступа" + +#: src/Module/Security/TwoFactor/Recovery.php:84 +msgid "" +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" msgstr "" -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Пожалуйста, введите код восстановления" + +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Отправить код восстановления и завершить вход" + +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Создать новый аккаунт" + +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Регистрация" + +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "Ваш OpenID: " + +#: src/Module/Security/Login.php:129 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." msgstr "" -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "Или зайти с OpenID: " + +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Выход" + +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Вход" + +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Пароль: " + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Запомнить" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "Забыли пароль?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Правила сайта" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "правила" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Политика конфиденциальности сервера" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "политика конфиденциальности" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." msgstr "" -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +#: src/Module/Security/OpenID.php:94 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." msgstr "" -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "" - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "Вы должны быть залогинены для использования этого модуля" - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "Исходный URL" +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7929,95 +4795,560 @@ msgstr "Ваше изменённое время: %s" msgid "Please select your timezone:" msgstr "Выберите пожалуйста ваш часовой пояс:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "" +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "Вы должны быть залогинены для использования этого модуля" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "Исходный URL" + #: src/Module/Debug/Probe.php:54 msgid "Lookup address" msgstr "" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Управление идентификацией и / или страницами" - -#: src/Module/Delegation.php:148 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Выберите учётную запись:" - -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "Нет записей (некоторые записи могут быть скрыты)." - -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "Найти на этом сайте" - -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "Результаты для:" - -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "Каталог сайта" - -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" -msgstr "" +msgid "%s's timeline" +msgstr "Лента %s" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "- выбрать -" - -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "" - -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "" - -#: src/Module/Friendica.php:68 +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 #, php-format -msgid "Read about the Terms of Service of this node." -msgstr "" +msgid "%s's posts" +msgstr "Записи %s" -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "На этом сервере заблокированы следующие удалённые серверы." +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "Комментарии %s" -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "Нет контактов." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Контакт (%s)" +msgstr[1] "Контакты (%s)" +msgstr[2] "Контакты (%s)" +msgstr[3] "Контакты (%s)" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "Все контакты" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "Подписчики" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "Взаимные друзья" + +#: src/Module/Profile/Profile.php:135 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "" +"You're currently viewing your profile as %s Cancel" +msgstr "Сейчас вы видите свой профиль как %s Отмена" -#: src/Module/Friendica.php:98 +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Зарегистрирован с:" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "День рождения:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Возраст: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%dгод" +msgstr[1] "%dгода" +msgstr[2] "%dлет" +msgstr[3] "%dлет" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Домашняя страничка:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Форумы:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "Посмотреть профиль как:" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Редактировать профиль" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "Посмотреть как" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "Только основные пользователи могут создавать дополнительные учётные записи." + +#: src/Module/Register.php:101 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." msgstr "" -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы." -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "багтрекер на github" +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Ваш OpenID (необязательно):" -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Включить ваш профиль в каталог участников?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Сообщение для администратора" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\"" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Членство на сайте только по приглашению." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "Ваш код приглашения:" + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Регистрация" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Ваше полное имя (например, Иван Иванов):" + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Ваш адрес электронной почты: (Информация для входа будет отправлена туда, это должен быть существующий адрес.)" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "Пожалуйста, введите адрес электронной почты ещё раз:" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Оставьте пустым для автоматической генерации пароля." + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." msgstr "" +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Выберите псевдоним: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Импорт своего профиля в этот экземпляр friendica" + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Условия оказания услуг" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Внимание: на этом сервере размещаются материалы для взрослых." + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Родительский пароль:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "Пароль не совпадает" + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "Пожалуйста, введите ваш пароль." + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "Вы ввели слишком много информации." + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Ошибка отправки письма. Вот ваши учетные данные:
логин: %s
пароль: %s

Вы сможете изменить пароль после входа." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Регистрация успешна." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Ваша регистрация не может быть обработана." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Ошибочный запрос" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Нет авторизации" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Запрещено" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Не найдено" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "Внутренняя ошибка сервера" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "Служба недоступна" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "" + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "" + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "" + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "" + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "" + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "" + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "Назад" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Добро пожаловать на %s!" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "Нет друзей." + #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." msgstr "" @@ -8035,114 +5366,16 @@ msgstr "Предложить друзей" msgid "Suggest a friend for %s" msgstr "Предложить друга для %s." -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "Группа создана." +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Признательность" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "Не удалось создать группу." - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "Группа не найдена." - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "Название группы изменено." - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "" - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "" - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Сохранить группу" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Создать группу контактов / друзей." - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "Группа удалена." - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "Не удается удалить группу." - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "Участники" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "Нажмите на контакт, чтобы добавить или удалить." - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Помощь:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Добро пожаловать на %s!" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Нет профиля" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "" +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8156,10 +5389,30 @@ msgstr "Проверить систему" msgid "Check again" msgstr "Проверить еще раз" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "Заставить все ссылки использовать SSL" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" + #: src/Module/Install.php:208 msgid "Base settings" msgstr "" +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "Политика SSL" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Ссылки должны быть вынуждены использовать SSL" + #: src/Module/Install.php:215 msgid "Host name" msgstr "Имя хоста" @@ -8288,6 +5541,813 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- выбрать -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "Запись не была удалена" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "Запись не была удалена" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Личная информация удаленно недоступна." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Кто может видеть:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Управление идентификацией и / или страницами" + +#: src/Module/Delegation.php:148 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Выберите учётную запись:" + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "Местное сообщество" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "Записи пользователей с этого сервера" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "Глобальное сообщество" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "Записи пользователей со всей федеративной сети" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "Нет результатов." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера." + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "" + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "Недоступно." + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Добро пожаловать в Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Новый контрольный список участников" + +#: src/Module/Welcome.php:46 +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 "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Начало работы" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica тур" + +#: src/Module/Welcome.php:50 +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 "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Перейти к вашим настройкам" + +#: src/Module/Welcome.php:54 +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 "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети." + +#: src/Module/Welcome.php:55 +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 "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Загрузить фото профиля" + +#: src/Module/Welcome.php:59 +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 "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Редактировать профиль" + +#: src/Module/Welcome.php:61 +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 "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Ключевые слова профиля" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Подключение" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Импортирование Email-ов" + +#: src/Module/Welcome.php:68 +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 "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Перейти на страницу ваших контактов" + +#: src/Module/Welcome.php:70 +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 "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Перейти в каталог вашего сайта" + +#: src/Module/Welcome.php:72 +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 "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Подписаться на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Поиск людей" + +#: src/Module/Welcome.php:74 +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 "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Группы" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Группа \"ваши контакты\"" + +#: src/Module/Welcome.php:78 +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 "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Почему мои записи не публичные?" + +#: src/Module/Welcome.php:81 +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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Получить помощь" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Перейти в раздел справки" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "Запись создана" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Информация" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Общая информация" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Статистика федерации" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Конфигурация" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Сайт" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Пользователи" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Дополнения" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Темы" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Дополнительные возможности" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "База данных" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "Обновление БД" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "Посмотреть отложенные задания" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "Посмотреть очередь заданий" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Инструменты" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Чёрный список контактов" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Чёрный список серверов" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Удалить запись" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Журналы" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "Просмотр логов" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Диагностика" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Администратор" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "Не удалось получить доступ к записи контакта." + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "Подписаться" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "Отписаться" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "Контакт не найден" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "Контакт заблокирован" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "Контакт разблокирован" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "Контакт проигнорирован" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "У контакта отменено игнорирование" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "Контакт заархивирован" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "Контакт разархивирован" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Удалить контакт" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "Вы действительно хотите удалить этот контакт?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "Контакт удален." + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "У Вас взаимная дружба с %s" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "Вы делитесь с %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s делится с Вами" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Приватные коммуникации недоступны для этого контакта." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Никогда" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(Обновление было успешно)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(Обновление не удалось)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Предложить друзей" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Сеть: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "Связь с контактом утеряна!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Получить подробную информацию о фидах" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Извлекать картинки предпросмотра, заголовок и вступление из записи ленты. Вы можете включить эту опцию, если лента не содержит много текста. Ключевые слова берутся из метаданных записи и публикуются как теги." + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Отключенный" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Получить информацию" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "Получить ключевые слова" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Получить информацию и ключевые слова" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Информация о контакте / Заметки" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Настройки контакта" + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Контакт" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Персональная заметка" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Редактировать заметки контакта" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Посетить профиль %s [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Блокировать / Разблокировать контакт" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Игнорировать контакт" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "Просмотр бесед" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Последнее обновление: " + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Обновить публичные сообщения" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Обновить сейчас" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Разблокировать" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Не игнорировать" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "В настоящее время заблокирован" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "В настоящее время игнорируется" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "В данный момент архивирован" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "Ожидаем подтверждения соединения" + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Ответы/лайки ваших публичных сообщений будут видимы." + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Уведомление о новых записях" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Отправлять уведомление о каждом новой записи контакта" + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Действия" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "Все контакты" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Показать все контакты" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "В ожидании" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "Показать только контакты \"в ожидании\"" + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Заблокирован" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Показать только блокированные контакты" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Игнорирован" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Показать только игнорируемые контакты" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Архивированные" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Показывать только архивные контакты" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Скрытые" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Показывать только скрытые контакты" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "Настроить группы контактов" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Поиск ваших контактов" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Результаты для: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Архивировать" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Разархивировать" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Пакетные действия" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "Записи и комментарии" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Информация о вас" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "Показать все контакты" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "Показать все общие поля" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Дополнительные Настройки Контакта" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Взаимная дружба" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "является вашим поклонником" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "Вы - поклонник" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Обновить данные контакта" + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Изменить статус блокированности (заблокировать/разблокировать)" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Изменить статус игнорирования" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Сменить статус архивации (архивирова/не архивировать)" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Удалить контакт" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "" + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "" + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "" + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Помощь:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "Метод не разрешён" + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "Профиль не найден" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "Превышен общий лимит приглашений." @@ -8394,6 +6454,1858 @@ msgid "" "important, please visit http://friendi.ca" msgstr "Чтобы узнать больше о проекте Friendica и почему мы считаем это важным, посетите http://friendi.ca" +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "Поиск по людям - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Поиск по форумам - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Отключить" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Включить" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Тема %s отключена." + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Тема %s успешно включена." + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "Не удалось установить тему %s." + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Скриншот" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Администрация" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Переключить" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Автор:" + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Программа обслуживания: " + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "Неизвестная тема." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Перезагрузить активные темы" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Ни одной темы не найдено на сервере. Они должны быть размещены в %1$s" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[экспериментально]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Неподдерживаемое]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Заблокировать %s" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Управление дополнительными возможностями" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s пользователь заблокирован" +msgstr[1] "%s пользователя заблокировано" +msgstr[2] "%s пользователей заблокировано" +msgstr[3] "%s пользователей заблокировано" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s пользователь разблокирован" +msgstr[1] "%s пользователя разблокировано" +msgstr[2] "%s пользователей разблокировано" +msgstr[3] "%s пользователей разблокировано" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "Вы не можете удалить самого себя" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s человек удален" +msgstr[1] "%s чел. удалено" +msgstr[2] "%s чел. удалено" +msgstr[3] "%s чел. удалено" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s пользователь одобрен" +msgstr[1] "%s пользователя одобрено" +msgstr[2] "%s пользователей одобрено" +msgstr[3] "%s пользователей одобрено" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s регистрация отменена" +msgstr[1] "%s регистрации отменены" +msgstr[2] "%s регистраций отменены" +msgstr[3] "%s регистраций отменены" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Пользователь \"%s\" удалён" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Пользователь \"%s\" заблокирован" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Пользователь \"%s\" разблокирован" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Аккаунт утвержден." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "Регистрация отменена" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "Закрытый форум" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "Ретранслятор" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "Эл. почта" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Дата регистрации" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Последний вход" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "Последняя публичная запись" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "Тип" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Добавить пользователя" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "выбрать все" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "Регистрации пользователей, ожидающие подтверждения" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "Пользователь ожидает окончательного удаления" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Запрос даты" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "Нет регистраций." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Сообщение от пользователя" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Отклонить" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "Пользователь заблокирован" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Админ сайта" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Аккаунт просрочен" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "Новый пользователь" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "Постоянное удаление" + +#: src/Module/Admin/Users.php:267 +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Вы уверены в вашем действии?" + +#: src/Module/Admin/Users.php:268 +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Вы уверены в вашем действии?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Имя нового пользователя." + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Ник" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Ник нового пользователя." + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "Email адрес нового пользователя." + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "Посмотреть очередь отложенных заданий" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза." + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "Посмотреть очередь заданий" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке." + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "Параметры задания" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Создано" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "Приоритет" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "Обновление было успешно отмечено" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Обновление базы данных %s успешно применено." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Выполнение %s завершено с ошибкой: %s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Обновление %s успешно применено." + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Не было процедур обновления %s, которые нужно было запустить." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "Неудавшихся обновлений нет." + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Проверить структуру базы данных" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Неудавшиеся обновления" + +#: src/Module/Admin/DBSync.php:117 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Отмечено успешно (если обновление было применено вручную)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Попытаться выполнить этот шаг обновления автоматически" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Другой" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "неизвестно" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "На этой странице вы можете увидеть немного статистики из известной вашему узлу федеративной сети. Эти данные неполные и только отражают ту часть сети, с которой ваш узел взаимодействовал." + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "В настоящий момент этому узлу известно %d узлов с %d зарегистрированных пользователей со следующих платформ:" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Не получается открыть файл журнала %1$s \\r\\n
Проверьте, что файл %1$s существует и читается веб-сервером." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Не получается открыть файл журнала %1$s \\r\\n
Проверьте, что файл %1$s доступен для чтения веб-сервером." + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "Файл журнала '%s' недоступен для записи. Журналирование невозможно." + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "Лог PHP включен." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "Лог PHP выключен." + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "Очистить" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Включить отладку" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Лог-файл" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Уровень лога" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP логирование" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "Чтобы временно включить журналирование ошибок и предупреждений PHP, вы можете добавить следующее в файл index.php вашей установки. Имя файла, установленное в 'error_log', задаётся относительно каталога установки Френдики и у веб-сервера должно быть разрешение на запись в этот файл. Настройка 1' для 'log_errors' и 'display_errors' включает журналирование и отображение ошибок, '0' отключает." + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - ://" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "Перемещение начато. Это может занять много времени." + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "Недопустимое значение типа хранилища." + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "Нет специальной темы для мобильных устройств" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (экспериментально)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "Нет общей ленты записей локальных пользователей" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "Нет общей ленты записей" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Публичные записи от пользователей этого узла" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "Публичные записи федеративной сети" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "Публичные записи от местных пользователей и федеративной сети." + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Многопользовательский вид" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Закрыто" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Требуется подтверждение" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Открыто" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "Не проверять" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "проверить стабильную версию" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "проверить development-версию" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "нет" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "База данных (устаревшее)" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Переопубликовать пользователей в каталог" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "Загрузка файлов" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Политики" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Каталог автообнаружения контактов" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Производительность" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Обработчик" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "Ретранслятор записей" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "Переместить узел" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "Внимание! Опасная функция. Может сделать этот сервер недоступным." + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Название сайта" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "Системный Email" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Адрес с которого будут приходить письма пользователям." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Баннер/Логотип" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "Лого для писем" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Иконка сайта" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Ссылка на иконку, которая будет использоваться браузерами." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Иконка веб-приложения" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Дополнительная информация" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "Для публичных серверов: здесь вы можете разместить дополнительную информацию и она будет доступна по %s/servers." + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "Системный язык" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "Системная тема" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Мобильная тема системы" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Тема для мобильных устройств" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "SSL принудительно" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Форсировать не-SSL запросы как SSL. Внимание: на некоторых системах это может привести к бесконечным циклам." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Скрыть пункт \"помощь\" в меню навигации" + +#: src/Module/Admin/Site.php:613 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Однопользовательский режим" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "Файловое хранилище" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "Это хранилище используется для загруженных файлов. Если вы измените настройки хранилища, вам потребуется вручную переместить существующие файлы. Если вы этого не сделаете, то ранее загруженные файлы будут по прежнему доступны по старому адресу. Пожалуйста, ознакомьтесь с документацией, чтобы узнать больше о процедуре перемещения." + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Максимальный размер изображения" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Максимальная длина картинки" + +#: src/Module/Admin/Site.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "Качество JPEG изображения" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Политика регистрация" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Максимальное число регистраций в день" + +#: src/Module/Admin/Site.php:623 +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 "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Текст регистрации" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления." + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "Запрещённые ники" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Имена, перечисленные через запятую, которые запрещены для регистрации на этом узле. Предустановленный список соответствует RFC 2142." + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Аккаунт считается после x дней не воспользованным" + +#: src/Module/Admin/Site.php:626 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Разрешенные домены друзей" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Разрешенные почтовые домены" + +#: src/Module/Admin/Site.php:628 +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 "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "Не показывать контент OEmbed" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже." + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "Разрешённые OEmbed домены " + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "Список доменов через запятую, содержимое oembed с них будет отображаться. Можно использовать маски." + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Блокировать общественный доступ" + +#: src/Module/Admin/Site.php:631 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Принудительная публикация" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Включение этого может нарушить законы о личных данных, например, GDPR." + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "URL глобального каталога" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Частные сообщения по умолчанию для новых пользователей" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Установить права на создание записей по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "Не включать текст сообщения в email-оповещение." + +#: src/Module/Admin/Site.php:635 +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 "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "Не вставлять личные картинки в записи" + +#: src/Module/Admin/Site.php:637 +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 "Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "Контент для взрослых" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации." + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Разрешить пользователям установить remote_self" + +#: src/Module/Admin/Site.php:639 +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 "Если включено, любой пользователь сможет пометить любой контакт как \"remote_self\" в расширенных настройках контакта. Установка такого параметра приводит к тому, что все записи помеченного контакта публикуются в ленте от имени пользователя." + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Блокировать множественные регистрации" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "Отключить OpenID" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "Отключить поддержку OpenID для регистрации и входа." + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "Не проверять полное имя" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "Разрешить пользователям регистрироваться, если указанное ими имя не имеет пробела между именем и фамилией." + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "Публичная лента для посетителей" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты." + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Число записей на пользователя в публичной ленте" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "Максимальное число записей от одного пользователя в публичной ленте узла. (Не применяется к федеративной публичной ленте)." + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "Отключить поддержку OStatus" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Отключить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично, поэтому возможны периодические предупреждения о приватности." + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Поддержка OStatus может быть включена только вместе с поддержкой веток диалогов." + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Включить поддержку Diaspora" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Обеспечить встроенную поддержку сети Diaspora." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Позволять только Friendica контакты" + +#: src/Module/Admin/Site.php:650 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "Проверка SSL" + +#: src/Module/Admin/Site.php:651 +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 сертификат." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Прокси пользователь" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "Прокси URL" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Тайм-аут сети" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Средняя максимальная нагрузка" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d." + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Максимальная нагрузка (Frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Максимальная нагрузка на систему, прежде чем frontend отключится - по-умолчанию 50." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Минимум памяти" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено)." + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Интервал запросов" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Интервал в днях, с которым контакты сервера будут перепроверяться." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Обнаруживать контакты с других серверов" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Искать в местном каталоге" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Опубликовать информацию о сервере" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info." + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Проверять версию в репозитории" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Включает проверку новых версий Френдики на Github. Если появится новая версия, вы получите уведомление в панели администратора." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Скрывать тэги" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Отключить показ списка тэгов в конце записей." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "Очистка базы данных" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Удалять старые записи, полученные с других серверов, ненужные записи в базе данных." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "Время жизни записей с других серверов" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "Если очистка базы данных включена, эта настройка определяет число дней, после которого записи будут удаляться. Собственные записи, записи с закладками, записи в папках не удаляются. 0 отключает очистку." + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "Время жизни ничейных элементов" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0." + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "Время жизни необработанных данных коммуникаций." + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней." + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Путь к элементам кэша" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Кэш записей хранит сгенерированные элементы BBCode и внешние изображения." + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Время жизни кэша в секундах" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Как долго кэш должен хранить содержимое? Значение по умолчанию 86400 секунд (один день). Чтобы отключить, установите значение -1." + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Максимальное число комментариев для записи" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100." + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Временная папка" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь." + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Отключить проксирование картинок" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "Прокси-сервер изображений улучшает производительность и приватность. Его можно выключить для систем с сильно ограниченной пропускной полосой." + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Искать только в тегах" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "На больших системах текстовый поиск может сильно замедлить систему." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "Новый базовый url" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Изменить основной URL для этого сервера. Будет отправлено сообщение о перемещении сервера всем контактам из Friendica и Diaspora для всех пользователей." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "RINO шифрование" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Слой шифрования между узлами." + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "Включено" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Максимальное число параллельно работающих worker'ов" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "" + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Включить fastlane" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Включить frontend worker" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "Подписаться на ретранслятор" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "Включает получение публичных записей через ретранслятор. Они будут использоваться в результатах поиска, подписках на тэги и на общей публичной ленте." + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "Сервер ретрансляции" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "Адрес сервера ретрансляции, куда будут отсылаться публичные записи. Например https://relay.diasp.org" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "Прямая ретрансляция" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Разрешает прямую отправку на другие серверы без использования ретрансляторов" + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "Область ретрансляции" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "Допустимые значения \"all\" или \"tags\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами." + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "all" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "tags" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "Тэги сервера" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Список тэгов, разделённых запятыми, используемый для подписки в режиме \"tags\"" + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "Разрешить пользовательские тэги" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "Если включено, то тэги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тэгам сервера." + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "Начать перемещение" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Обычный аккаунт" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Публичный форум" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "\"Автоматический друг\" Аккаунт" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Аккаунт блога" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Закрытый форум" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Очереди сообщений" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "Настройки сервера" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Зарегистрированные пользователи" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Ожидающие регистрации" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Версия" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "Активные дополнения" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Показать Условия оказания услуг" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Включить страницу с Условиями Оказания Услуг. Если эта настройка активна, ссылка на страницу с Условиями будет добавлена в форму регистрации и на страницу общей информации." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Показать Положение о конфиденциальности" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "Показать различную информацию о соответствии узла различным требованиям конфиденциальности, например, EU-GDPR." + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Предпросмотр Положения о конфиденциальности" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "Условия оказания услуг" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "Маска адреса сервера добавлена в чёрный список." + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "Маска домена блокируемого сервера" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Причина блокировки" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "Удалить маску домена" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Отметьте, чтобы удалить эту запись из черного списка" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "Чёрный список доменов" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей." + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "

Маска домена узла нечувствительна к регистру и представляет собой выражение shell из следующих специальных символов:

\n
    \n\t
  • *: Любые символы в любом количестве
  • \n\t
  • ?: Один любой символ
  • \n\t
  • [<char1><char2>...]: char1 или char2
  • \n
" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Добавить новую запись в чёрный список" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "Маска домена узла" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола." + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Причина блокировки" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "Причина блокировки вами этого домена." + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Добавить запись" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Сохранить изменения чёрного списка" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Текущие значения чёрного списка" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Удалить запись из чёрного списка" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Удалить запись из чёрного списка?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s контакт разблокирован" +msgstr[1] "%s контакта разблокированы" +msgstr[2] "%s контактов разблокировано" +msgstr[3] "%s контактов разблокировано" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Чёрный список удалённых контактов" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Заблокировать удалённый контакт" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "сбросить выбор" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "Для этого узла нет заблокированных контактов." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Заблокированные контакты" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Заблокировать новый контакт" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Фото" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "Причина" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s заблокированный контакт" +msgstr[1] "%s заблокированных контакта" +msgstr[2] "%s заблокированных контактов" +msgstr[3] "%s заблокированных контактов" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "URL блокируемого контакта." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "Причина блокировки" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "GUID записи" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Запись помечена для удаления." + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Удалить эту запись" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "GUID записи, которую вы хотите удалить." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "Дополнение не найдено." + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Дополнение %s отключено." + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Дополнение %s включено." + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Не удалось установить дополнение %s." + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Перезагрузить активные дополнения" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1$s и найти больше интересных дополнений в открытой библиотеке на %2$s" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "Нет записей (некоторые записи могут быть скрыты)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Найти на этом сайте" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Результаты для:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Каталог сайта" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Пункт не был найден." + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "Пожалуйста, введите текст записи." @@ -8428,98 +8340,55 @@ msgid "" "your device" msgstr "Геолокация отключена. Пожалуйста, проверьте разрешения этого сайта на вашем устройстве" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "Система закрыта на техническое обслуживание" - -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "Децентрализованная социальная сеть" - -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Показать проигнорированные запросы" - -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Скрыть проигнорированные запросы" - -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Тип уведомления:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" msgstr "" -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Утверждения, о которых должно быть вам известно: " +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "" -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Должно ли ваше соединение быть двухсторонним или нет?" +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "На этом сервере заблокированы следующие удалённые серверы." + +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Принимая %s как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него." +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "" -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Принимая %s как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "" -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Друг" +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Подписчик" +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "багтрекер на github" -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "Запросов нет." +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "" -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "Больше нет уведомлений о %s." +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Только вы можете это видеть" -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "Вам нужно войти, чтобы увидеть эту страницу." - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Уведомления сети" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Уведомления системы" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Личные уведомления" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Уведомления" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Показать непрочитанные" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Показать все" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Советы для новых участников" #: src/Module/Photo.php:87 #, php-format @@ -8531,252 +8400,11 @@ msgstr "" msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "Пользователь не найден." - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "Нет контактов." - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Контакт (%s)" -msgstr[1] "Контакты (%s)" -msgstr[2] "Контакты (%s)" -msgstr[3] "Контакты (%s)" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "Все контакты" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "Зарегистрирован с:" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "j F" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "День рождения:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "Возраст: " - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%dгод" -msgstr[1] "%dгода" -msgstr[2] "%dлет" -msgstr[3] "%dлет" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "Форумы:" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "Посмотреть профиль как:" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "Лента %s" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "Записи %s" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "Комментарии %s" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Только основные пользователи могут создавать дополнительные учётные записи." - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "" - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Ваш OpenID (необязательно):" - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Включить ваш профиль в каталог участников?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Сообщение для администратора" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\"" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Членство на сайте только по приглашению." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Ваш код приглашения:" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Ваше полное имя (например, Иван Иванов):" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Ваш адрес электронной почты: (Информация для входа будет отправлена туда, это должен быть существующий адрес.)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Пожалуйста, введите адрес электронной почты ещё раз:" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Оставьте пустым для автоматической генерации пароля." - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "" - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Выберите псевдоним: " - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Импорт своего профиля в этот экземпляр friendica" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Внимание: на этом сервере размещаются материалы для взрослых." - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "Родительский пароль:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "" - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "" - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Ошибка отправки письма. Вот ваши учетные данные:
логин: %s
пароль: %s

Вы сможете изменить пароль после входа." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Регистрация успешна." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Ваша регистрация не может быть обработана." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "" - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8784,150 +8412,466 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." -msgstr "Вам нужно войти, чтобы использовать этот модуль." +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Аккаунт" -#: src/Module/Search/Index.php:52 +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Внешний вид" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "Управление учётными записями" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Подключенные приложения" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Экспорт личных данных" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Удалить аккаунт" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Не удалось создать группу." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Группа не найдена." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "Название группы не изменено." + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Неизвестная группа." + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "Контакт удалён." + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Не удалось добавить контакт в группу." + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "Контакт успешно добавлен в группу." + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Не удалось удалить контакт из группы." + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "Контакт успешно удалён из группы." + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Неизвестная команда для группы." + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Ошибочный запрос." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Сохранить группу" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "Фильтр" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Создать группу контактов / друзей." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Название группы: " + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Контакты не состоят в группе" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Не удается удалить группу." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Удалить группу" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Изменить имя группы" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Участники" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Удалить контакт из группы" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Нажмите на контакт, чтобы добавить или удалить." + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "Добавить контакт в группу" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "Только зарегистрированные пользователи могут использовать поиск." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Незарегистрированные пользователи могут выполнять поиск раз в минуту." -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Поиск" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "Элементы с тегами: %s" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." -msgstr "Поисковый запрос сохранён." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "Вам нужно войти, чтобы использовать этот модуль." -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "Поисковый запрос не сохранён." + +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." msgstr "Такой запрос уже сохранён." -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." -msgstr "Сохранённый запрос успешно удалён." +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." +msgstr "Поисковый запрос не был удалён." -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Создать новый аккаунт" +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "Нет профиля" -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Ваш OpenID: " +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." +msgstr "Ошибка при отправке тычка, попробуйте ещё." -#: src/Module/Security/Login.php:129 +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Потыкать/Потолкать" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "Потыкать, потолкать или сделать что-то еще с кем-то" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Выберите действия для получателя" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Сделать эту запись личной" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Обновление контакта неудачное." + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ВНИМАНИЕ: Это крайне важно! Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать." -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Или зайти с OpenID: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Пароль: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Запомнить" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Забыли пароль?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Правила сайта" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "правила" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Политика конфиденциальности сервера" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "политика конфиденциальности" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Выход из системы." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "" - -#: src/Module/Security/OpenID.php:92 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' сейчас, если вы не уверены, что делаете на этой странице." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "Не зеркалировать" + +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Зеркалировать как переадресованные сообщения" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Зеркалировать как мои сообщения" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Возврат к редактору контакта" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Remote Self" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Зекралировать сообщения от этого контакта" + +#: src/Module/Contact/Advanced.php:146 msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта." + +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Ник аккаунта" + +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - перезаписывает Имя/Ник" + +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "URL аккаунта" + +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:60 +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "URL запроса в друзья" + +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "URL подтверждения друга" + +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "URL эндпоинта уведомления" + +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "URL опроса/ленты" + +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "Новое фото из этой URL" + +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "Нет установленных приложений." + +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Приложения" + +#: src/Module/Settings/Profile/Index.php:85 +msgid "Profile Name is required." +msgstr "Необходимо имя профиля." + +#: src/Module/Settings/Profile/Index.php:137 +msgid "Profile couldn't be updated." +msgstr "Профиль не получилось обновить." + +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 +msgid "Label:" +msgstr "Поле:" + +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 +msgid "Value:" +msgstr "Значение:" + +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 +msgid "Field Permissions" +msgstr "Право просмотра поля" + +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 +msgid "(click to open/close)" +msgstr "(нажмите, чтобы открыть / закрыть)" + +#: src/Module/Settings/Profile/Index.php:205 +msgid "Add a new profile field" +msgstr "Добавить новое поле профиля" + +#: src/Module/Settings/Profile/Index.php:235 +msgid "Profile Actions" +msgstr "Действия профиля" + +#: src/Module/Settings/Profile/Index.php:236 +msgid "Edit Profile Details" +msgstr "Редактировать детали профиля" + +#: src/Module/Settings/Profile/Index.php:238 +msgid "Change Profile Photo" +msgstr "Изменить фото профиля" + +#: src/Module/Settings/Profile/Index.php:243 +msgid "Profile picture" +msgstr "Картинка профиля" + +#: src/Module/Settings/Profile/Index.php:244 +msgid "Location" +msgstr "Местонахождение" + +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 +#: src/Util/Temporal.php:95 +msgid "Miscellaneous" +msgstr "Разное" + +#: src/Module/Settings/Profile/Index.php:246 +msgid "Custom Profile Fields" +msgstr "Произвольные поля профиля" + +#: src/Module/Settings/Profile/Index.php:252 +msgid "Display name:" +msgstr "Отображаемое имя:" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Street Address:" +msgstr "Адрес:" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Locality/City:" +msgstr "Город / Населенный пункт:" + +#: src/Module/Settings/Profile/Index.php:257 +msgid "Region/State:" +msgstr "Район / Область:" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Postal/Zip Code:" +msgstr "Почтовый индекс:" + +#: src/Module/Settings/Profile/Index.php:259 +msgid "Country:" +msgstr "Страна:" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "XMPP (Jabber) address:" +msgstr "Адрес XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить." + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Homepage URL:" +msgstr "Адрес домашней странички:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "Public Keywords:" +msgstr "Общественные ключевые слова:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Private Keywords:" +msgstr "Личные ключевые слова:" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Используется для поиска профилей, никогда не показывается другим)" + +#: src/Module/Settings/Profile/Index.php:265 #, php-format -msgid "Remaining recovery codes: %d" -msgstr "Осталось кодов для восстановления: %d" - -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "Неправильный код, попробуйте ещё." - -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Двухфакторное восстановление доступа" - -#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "" +"

Custom fields appear on your profile page.

\n" +"\t\t\t\t

You can use BBCodes in the field values.

\n" +"\t\t\t\t

Reorder by dragging the field title.

\n" +"\t\t\t\t

Empty the label field to remove a custom field.

\n" +"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" +msgstr "

Произвольные поля видны на вашей странице профиля.

\n\t\t\t\t

В значениях полей можно использовать BBCode.

\n\t\t\t\t

Меняйте порядок перетаскиванием.

\n\t\t\t\t

Сотрите название для удаления поля.

\n\t\t\t\t

Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных групп.

" -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Settings/Profile/Photo/Crop.php:102 +#: src/Module/Settings/Profile/Photo/Crop.php:118 +#: src/Module/Settings/Profile/Photo/Crop.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "" +msgid "Image size reduction [%s] failed." +msgstr "Уменьшение размера изображения [%s] не удалось." -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Пожалуйста, введите код восстановления" - -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Отправить код восстановления и завершить вход" - -#: src/Module/Security/TwoFactor/Verify.php:81 +#: src/Module/Settings/Profile/Photo/Crop.php:139 msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "

Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Пожалуйста, введите код из вашего приложения для аутентификации" +#: src/Module/Settings/Profile/Photo/Crop.php:147 +msgid "Unable to process image" +msgstr "Не удается обработать изображение" -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "" +#: src/Module/Settings/Profile/Photo/Crop.php:166 +msgid "Photo not found." +msgstr "Фото не найдено." + +#: src/Module/Settings/Profile/Photo/Crop.php:190 +msgid "Profile picture successfully updated." +msgstr "Картинка профиля успешно обновлена." + +#: src/Module/Settings/Profile/Photo/Crop.php:213 +#: src/Module/Settings/Profile/Photo/Crop.php:217 +msgid "Crop Image" +msgstr "Обрезать изображение" + +#: src/Module/Settings/Profile/Photo/Crop.php:214 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." + +#: src/Module/Settings/Profile/Photo/Crop.php:216 +msgid "Use Image As Is" +msgstr "Использовать картинку как есть" + +#: src/Module/Settings/Profile/Photo/Index.php:47 +msgid "Missing uploaded image." +msgstr "Отсутствует загруженное изображение" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Profile Picture Settings" +msgstr "Настройки картинки профиля" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Current Profile Picture" +msgstr "Текущая картинка профиля" + +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload Profile Picture" +msgstr "Загрузить картинку профиля" + +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload Picture:" +msgstr "Загрузить картинку:" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "or" +msgstr "или" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "skip this step" +msgstr "пропустить этот шаг" + +#: src/Module/Settings/Profile/Photo/Index.php:138 +msgid "select a photo from your photo albums" +msgstr "выберите фото из ваших фотоальбомов" #: src/Module/Settings/Delegation.php:53 msgid "Delegation successfully granted." @@ -8945,466 +8889,68 @@ msgstr "Делегирование успешно отменено." #: src/Module/Settings/Delegation.php:103 msgid "" "Delegated administrators can view but not change delegation permissions." -msgstr "" +msgstr "Администраторы-делегаты могут видеть, но не менять разрешения делегирования." #: src/Module/Settings/Delegation.php:95 msgid "Delegate user not found." -msgstr "" +msgstr "Пользователь-делегат не найден." -#: src/Module/Settings/Delegation.php:142 +#: src/Module/Settings/Delegation.php:143 msgid "No parent user" msgstr "Нет родительского пользователя" -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 msgid "Parent User" msgstr "Родительский пользователь" -#: src/Module/Settings/Delegation.php:161 -msgid "Additional Accounts" -msgstr "" - #: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "Дополнительные учётные записи" + +#: src/Module/Settings/Delegation.php:163 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:167 +#: src/Module/Settings/Delegation.php:168 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:171 +#: src/Module/Settings/Delegation.php:172 msgid "Delegates" msgstr "Делегаты" -#: src/Module/Settings/Delegation.php:173 +#: src/Module/Settings/Delegation.php:174 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 "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете." -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 msgid "Existing Page Delegates" msgstr "Существующие уполномоченные страницы" -#: src/Module/Settings/Delegation.php:176 +#: src/Module/Settings/Delegation.php:177 msgid "Potential Delegates" msgstr "Возможные доверенные лица" -#: src/Module/Settings/Delegation.php:179 +#: src/Module/Settings/Delegation.php:180 msgid "Add" msgstr "Добавить" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "No entries." msgstr "Нет записей." -#: src/Module/Settings/Display.php:101 -msgid "The theme you chose isn't available." -msgstr "" - -#: src/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Unsupported)" -msgstr "" - -#: src/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "Параметры дисплея" - -#: src/Module/Settings/Display.php:183 -msgid "General Theme Settings" -msgstr "Общие настройки тем" - -#: src/Module/Settings/Display.php:184 -msgid "Custom Theme Settings" -msgstr "Личные настройки тем" - -#: src/Module/Settings/Display.php:185 -msgid "Content Settings" -msgstr "Настройки контента" - -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Настройки темы" - -#: src/Module/Settings/Display.php:187 -msgid "Calendar" -msgstr "Календарь" - -#: src/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "Показать тему:" - -#: src/Module/Settings/Display.php:194 -msgid "Mobile Theme:" -msgstr "Мобильная тема:" - -#: src/Module/Settings/Display.php:197 -msgid "Number of items to display per page:" -msgstr "Количество элементов, отображаемых на одной странице:" - -#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 -msgid "Maximum of 100 items" -msgstr "Максимум 100 элементов" - -#: src/Module/Settings/Display.php:198 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" - -#: src/Module/Settings/Display.php:199 -msgid "Update browser every xx seconds" -msgstr "Обновление браузера каждые хх секунд" - -#: src/Module/Settings/Display.php:199 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Минимум 10 секунд. Введите -1 для отключения." - -#: src/Module/Settings/Display.php:200 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:200 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." -msgstr "" - -#: src/Module/Settings/Display.php:201 -msgid "Don't show emoticons" -msgstr "не показывать emoticons" - -#: src/Module/Settings/Display.php:201 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "" - -#: src/Module/Settings/Display.php:202 -msgid "Infinite scroll" -msgstr "Бесконечная прокрутка" - -#: src/Module/Settings/Display.php:202 -msgid "Automatic fetch new items when reaching the page end." -msgstr "" - -#: src/Module/Settings/Display.php:203 -msgid "Disable Smart Threading" -msgstr "Отключить умное ветвление" - -#: src/Module/Settings/Display.php:203 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "Отключить автоматическое удаление излишних отступов в ветках диалогов." - -#: src/Module/Settings/Display.php:204 -msgid "Hide the Dislike feature" -msgstr "Убрать функцию \"Не нравится\"" - -#: src/Module/Settings/Display.php:204 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "Убирает кнопку \"Не нравится\" и отображение реакции \"не нравится\" в постах и комментариях." - -#: src/Module/Settings/Display.php:206 -msgid "Beginning of week:" -msgstr "Начало недели:" - -#: src/Module/Settings/Profile/Index.php:86 -msgid "Profile Name is required." -msgstr "Необходимо имя профиля." - -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "Профиль обновлен." - -#: src/Module/Settings/Profile/Index.php:140 -msgid "Profile couldn't be updated." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 -msgid "Label:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 -msgid "Value:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 -msgid "Field Permissions" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 -msgid "(click to open/close)" -msgstr "(нажмите, чтобы открыть / закрыть)" - -#: src/Module/Settings/Profile/Index.php:211 -msgid "Add a new profile field" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Profile Actions" -msgstr "Действия профиля" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Edit Profile Details" -msgstr "Редактировать детали профиля" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Change Profile Photo" -msgstr "Изменить фото профиля" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Profile picture" -msgstr "Картинка профиля" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Location" -msgstr "Местонахождение" - -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 -msgid "Miscellaneous" -msgstr "Разное" - -#: src/Module/Settings/Profile/Index.php:252 -msgid "Custom Profile Fields" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Загрузить фото профиля" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Display name:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "Street Address:" -msgstr "Адрес:" - -#: src/Module/Settings/Profile/Index.php:262 -msgid "Locality/City:" -msgstr "Город / Населенный пункт:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "Region/State:" -msgstr "Район / Область:" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "Postal/Zip Code:" -msgstr "Почтовый индекс:" - -#: src/Module/Settings/Profile/Index.php:265 -msgid "Country:" -msgstr "Страна:" - -#: src/Module/Settings/Profile/Index.php:267 -msgid "XMPP (Jabber) address:" -msgstr "Адрес XMPP (Jabber):" - -#: src/Module/Settings/Profile/Index.php:267 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить." - -#: src/Module/Settings/Profile/Index.php:268 -msgid "Homepage URL:" -msgstr "Адрес домашней странички:" - -#: src/Module/Settings/Profile/Index.php:269 -msgid "Public Keywords:" -msgstr "Общественные ключевые слова:" - -#: src/Module/Settings/Profile/Index.php:269 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" - -#: src/Module/Settings/Profile/Index.php:270 -msgid "Private Keywords:" -msgstr "Личные ключевые слова:" - -#: src/Module/Settings/Profile/Index.php:270 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Используется для поиска профилей, никогда не показывается другим)" - -#: src/Module/Settings/Profile/Index.php:271 -#, php-format -msgid "" -"

Custom fields appear on your profile page.

\n" -"\t\t\t\t

You can use BBCodes in the field values.

\n" -"\t\t\t\t

Reorder by dragging the field title.

\n" -"\t\t\t\t

Empty the label field to remove a custom field.

\n" -"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Crop.php:102 -#: src/Module/Settings/Profile/Photo/Crop.php:118 -#: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Уменьшение размера изображения [%s] не удалось." - -#: src/Module/Settings/Profile/Photo/Crop.php:139 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." - -#: src/Module/Settings/Profile/Photo/Crop.php:147 -msgid "Unable to process image" -msgstr "Не удается обработать изображение" - -#: src/Module/Settings/Profile/Photo/Crop.php:166 -msgid "Photo not found." -msgstr "" - -#: src/Module/Settings/Profile/Photo/Crop.php:190 -msgid "Profile picture successfully updated." -msgstr "" - -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 -msgid "Crop Image" -msgstr "Обрезать изображение" - -#: src/Module/Settings/Profile/Photo/Crop.php:214 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." - -#: src/Module/Settings/Profile/Photo/Crop.php:216 -msgid "Use Image As Is" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:47 -msgid "Missing uploaded image." -msgstr "Отсутствует загруженное изображение" - -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "Изображение загружено успешно." - -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Profile Picture Settings" -msgstr "Настройки картинки профиля" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Current Profile Picture" -msgstr "Текущая картинка профиля" - -#: src/Module/Settings/Profile/Photo/Index.php:130 -msgid "Upload Profile Picture" -msgstr "Загрузить картинку профиля" - -#: src/Module/Settings/Profile/Photo/Index.php:131 -msgid "Upload Picture:" -msgstr "Загрузить картинку:" - -#: src/Module/Settings/Profile/Photo/Index.php:136 -msgid "or" -msgstr "или" - -#: src/Module/Settings/Profile/Photo/Index.php:138 -msgid "skip this step" -msgstr "пропустить этот шаг" - -#: src/Module/Settings/Profile/Photo/Index.php:140 -msgid "select a photo from your photo albums" -msgstr "выберите фото из ваших фотоальбомов" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "Пожалуйста, введите ваш пароль для доступа к этой странице." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 -msgid "" -"App-specific password generation failed: This description already exists." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 -msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 -msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 -msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "" - #: src/Module/Settings/TwoFactor/Index.php:67 msgid "Two-factor authentication successfully disabled." msgstr "" @@ -9497,36 +9043,11 @@ msgstr "Управление паролями приложений" msgid "Finish app configuration" msgstr "Закончить настройку приложения" -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "Новые коды восстановления успешно сгенерированы." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Коды восстановления для ДФА" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Сгенерировать новые коды восстановления." - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "" +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "Пожалуйста, введите ваш пароль для доступа к этой странице." #: src/Module/Settings/TwoFactor/Verify.php:78 msgid "Two-factor authentication successfully activated." @@ -9573,6 +9094,215 @@ msgstr "" msgid "Verify code and enable two-factor authentication" msgstr "" +#: src/Module/Settings/TwoFactor/Recovery.php:66 +msgid "New recovery codes successfully generated." +msgstr "Новые коды восстановления успешно сгенерированы." + +#: src/Module/Settings/TwoFactor/Recovery.php:92 +msgid "Two-factor recovery codes" +msgstr "Коды восстановления для ДФА" + +#: src/Module/Settings/TwoFactor/Recovery.php:94 +msgid "" +"

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Сгенерировать новые коды восстановления." + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Внешний вид" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "Общие настройки тем" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "Личные настройки тем" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "Настройки контента" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "Календарь" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "Показать тему:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "Мобильная тема:" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "Количество элементов, отображаемых на одной странице:" + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "Максимум 100 элементов" + +#: src/Module/Settings/Display.php:198 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "Обновление браузера каждые хх секунд" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Минимум 10 секунд. Введите -1 для отключения." + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "" + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "" + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "не показывать emoticons" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "" + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "Бесконечная прокрутка" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "Отключить умное ветвление" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "Отключить автоматическое удаление излишних отступов в ветках диалогов." + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "Убрать функцию \"Не нравится\"" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "Убирает кнопку \"Не нравится\" и отображение реакции \"не нравится\" в постах и комментариях." + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "Начало недели:" + #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "Экспорт аккаунта" @@ -9604,576 +9334,31 @@ msgid "" " e.g. Mastodon." msgstr "Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с Mastodon и др." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Ошибочный запрос" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "Система закрыта на техническое обслуживание" -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Нет авторизации" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Запрещено" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Не найдено" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "Внутренняя ошибка сервера" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Служба недоступна" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "" - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "" - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "" - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "" - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "" - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "" - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "" - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "" - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "" - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Добро пожаловать в Friendica" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "Новый контрольный список участников" - -#: src/Module/Welcome.php:46 -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 "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Начало работы" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica тур" - -#: src/Module/Welcome.php:50 -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 "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним." - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Перейти к вашим настройкам" - -#: src/Module/Welcome.php:54 -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 "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети." - -#: src/Module/Welcome.php:55 -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 "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." - -#: src/Module/Welcome.php:59 -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 "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "Редактировать профиль" - -#: src/Module/Welcome.php:61 -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 "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Ключевые слова профиля" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "" - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Подключение" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "Импортирование Email-ов" - -#: src/Module/Welcome.php:68 -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 "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты" - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Перейти на страницу ваших контактов" - -#: src/Module/Welcome.php:70 -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 "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Перейти в каталог вашего сайта" - -#: src/Module/Welcome.php:72 -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 "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Подписаться на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Поиск людей" - -#: src/Module/Welcome.php:74 -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 "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Группа \"ваши контакты\"" - -#: src/Module/Welcome.php:78 -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 "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть." - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Почему мои записи не публичные?" - -#: src/Module/Welcome.php:81 -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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Получить помощь" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Перейти в раздел справки" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса." - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "Вы можете посетить их в онлайне на %s" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s отправил/а/ обновление." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Эта запись была отредактирована" - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "Личное сообщение" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "закреплённая запись" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "Удалить для себя" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "Удалить везде" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "Убрать для себя" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "сохранить в папке" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "Я буду" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "Меня не будет" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "Возможно" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "игнорировать тему" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "не игнорировать тему" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "изменить статус игнорирования" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "Закрепить" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "Открепить" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "закрепить/открепить" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "закреплено" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "пометить" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "убрать метку" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "переключить статус" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "помечено" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "добавить ключевое слово (тег)" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "нравится" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "не нравится" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "Поделитесь этим" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "поделиться" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "%s (Получено %s)" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "к" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "через" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "Стена-на-Стену" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "через Стена-на-Стену:" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "Ещё" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "Постановка в очередь" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "Ожидается отправка адресатам" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "Отправка адресатам в процессе" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "Отправка адресатам почти завершилась" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "Отправка адресатам завершена" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d комментарий" -msgstr[1] "%d комментариев" -msgstr[2] "%d комментариев" -msgstr[3] "%d комментариев" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "Вложения:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s теперь подписан на %s." -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "следует" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s отписался от %s." -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "отписка от" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Родной город:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Сексуальные предпочтения:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Политические взгляды:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Религиозные взгляды:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Нравится:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Не нравится:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Заголовок / Описание:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Музыкальные интересы" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Книги, литература" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Телевидение" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Кино / танцы / культура / развлечения" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Хобби / Интересы" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Любовь / романтика" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Работа / занятость" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "Школа / образование" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Контактная информация и социальные сети" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Уведомления Friendica" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Вложения:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10194,6 +9379,10 @@ msgstr "%s администратор" msgid "thanks" msgstr "спасибо" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Уведомления Friendica" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD или MM-DD" @@ -10260,230 +9449,1016 @@ msgstr "в %1$d %2$s" msgid "%1$d %2$s ago" msgstr "%1$d %2$s назад" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(без темы)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "" +msgid "Database storage failed to update %s" +msgstr "Хранилищу БД не удалось обновить %s" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Хранилищу БД не удалось записать данные" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." -msgstr "" +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "Файловому хранилищу не удалось создать \"%s\". Проверьте, есть ли у вас разрешения на запись." -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "значение по умолчанию" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Вариации" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "Другое" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "Примечание" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям." - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "Выбор цветовой схемы" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "Скопируйте или вставьте строку оформления темы" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы." +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "Файловому хранилищу не удалось записать данные в \"%s\". Проверьте, есть ли у вас разрешения на запись." -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "Цвет фона навигационной панели" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Корневой каталог хранилища" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "Цвет иконок в навигационной панели" - -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "Цвет ссылок" - -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "Установить цвет фона" - -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "Прозрачность фона основного содержимого" - -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "Установить фоновую картинку" - -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "Стиль фонового изображения" - -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "Фоновое изображение страницы входа" - -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "Цвет фона страницы входа" - -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию." - -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "Пропустить до основного содержимого" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Верхний баннер" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Растянуть изображение по ширине экрана и показать заливку цветом под ним на длинных страницах." +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Каталог, куда сохраняются загруженные файлы. Для максимальной безопасности этот каталог должен быть размещён вне каталогов веб-сервера." -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Во весь экран" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Введите путь к существующему каталогу" -#: view/theme/frio/php/Image.php:41 +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "активность" + +#: src/Model/Item.php:3339 +msgid "post" +msgstr "сообщение" + +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "Предупреждение о контенте: %s" + +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "байт" + +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "Посмотреть в отдельной вкладке" + +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "посмотреть на отдельной вкладке" + +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "ссылка на сообщение" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[без темы]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "Отписаться" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Удалить контакт" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Организация" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "Новости" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Форум" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Connect-URL отсутствует." + +#: src/Model/Contact.php:2307 msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Растянуть изображение во весь экран, обрезав его часть справа или снизу." +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети." -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Мозаика в один ряд" - -#: view/theme/frio/php/Image.php:42 +#: src/Model/Contact.php:2348 msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Растянуть и размножить изображение в один ряд, вертикально или горизонтально." +"This site is not configured to allow communications with other networks." +msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями." -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Мозаика" +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Обнаружены несовместимые протоколы связи или каналы." -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Размножить изображение по всему экрану" +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "Указанный адрес профиля не дает адекватной информации." -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "Гость" +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "Автор или имя не найдены." -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "Посетитель" +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "Нет URL браузера, который соответствует этому адресу." -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Выравнивание" +#: src/Model/Contact.php:2371 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Не получается совместить этот адрес с известным протоколом или контактом электронной почты." -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Слева" +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Центр" +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Цветовая схема" +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Размер шрифта записей" +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "Невозможно получить контактную информацию." -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Размер шрифта текстовых полей" +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Начало:" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Разделенный запятыми список форумов помощи" +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Окончание:" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "не показывать" +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "Весь день" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "показывать" +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Сен" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Установить стиль" +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "Нет событий для показа" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Страницы сообщества" +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, j F" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "Профили сообщества" +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Редактировать мероприятие" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Помощь" +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Дубликат события" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "Подключить службы" +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Удалить событие" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Найти друзей" +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D g:i A" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "Последние пользователи" +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "g:i A" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "Быстрый запуск" +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Показать карту" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Скрыть карту" + +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "день рождения %s" + +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "С днём рождения %s" + +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "Вход не удался" + +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "Недостаточно информации для входа" + +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "Пароль не может быть пустым" + +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "Пароль не должен быть пустым." + +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой." + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "Пароль не может содержать символы с акцентами, пробелы или двоеточия (:)" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "Пароли не совпадают. Пароль не изменен." + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "Требуется приглашение." + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "Приглашение не может быть проверено." + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "Неверный URL OpenID" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "Пожалуйста, введите необходимую информацию." + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "system.username_min_length (%s) и system.username_max_length (%s) противоречат друг другу, меняем их местами." + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Имя пользователя должно быть хотя бы %s символ." +msgstr[1] "Имя пользователя должно быть хотя бы %s символа." +msgstr[2] "Имя пользователя должно быть хотя бы %s символов." +msgstr[3] "Имя пользователя должно быть хотя бы %s символов." + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Имя пользователя должно быть не больше %s символа." +msgstr[1] "Имя пользователя должно быть не больше %s символов" +msgstr[2] "Имя пользователя должно быть не больше %s символов." +msgstr[3] "Имя пользователя должно быть не больше %s символов." + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." + +#: src/Model/User.php:703 +msgid "Your email domain is not among those allowed on this site." +msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "Неверный адрес электронной почты." + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "Этот ник был заблокирован для регистрации администратором узла." + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "Нельзя использовать этот Email." + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Ваш ник может содержать только символы a-z, 0-9 и _." + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." + +#: src/Model/User.php:808 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз." + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Друзья" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "При создании группы контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз." + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\tУважаемый(ая) %1$s,\n\t\t\tадминистратор %2$s создал для вас учётную запись." + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "\n\t\tДанные для входа в систему:\n\n\t\tМестоположение сайта:\t%1$s\n\t\tЛогин:\t\t%2$s\n\t\tПароль:\t\t%3$s\n\n\t\tВы можете изменить пароль на странице \"Настройки\" после авторизации.\n\n\t\tПожалуйста, уделите время ознакомлению с другими другие настройками аккаунта на этой странице.\n\n\n\t\tВы также можете захотеть добавить немного базовой информации к вашему стандартному профилю\n\t\t(на странице \"Информация\") чтобы другим людям было проще вас найти.\n\n\t\tМы рекомендуем указать ваше полное имя, добавить фотографию,\n\t\tнемного \"ключевых слов\" (очень полезно, чтобы завести новых друзей)\n\t\tи возможно страну вашего проживания; если вы не хотите быть более конкретным.\n\n\t\tМы полностью уважаем ваше право на приватность, поэтому ничего из этого не является обязательным.\n\t\tЕсли же вы новичок и никого не знаете, это может помочь\n\t\tвам завести новых интересных друзей.\n\n\t\tЕсли вы когда-нибудь захотите удалить свой аккаунт, вы можете сделать это перейдя по ссылке %1$s/removeme\n\n\t\tСпасибо и добро пожаловать в %4$s." + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Подробности регистрации для %s" + +#: src/Model/User.php:1068 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tУважаемый %1$s,\n\t\t\t\tБлагодарим Вас за регистрацию на %2$s. Ваш аккаунт ожидает подтверждения администратором.\n\n\t\t\tВаши данные для входа в систему:\n\n\t\t\tМестоположение сайта:\t%3$s\n\t\t\tЛогин:\t\t%4$s\n\t\t\tПароль:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "Регистрация на %s" + +#: src/Model/User.php:1111 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tУважаемый(ая) %1$s,\n\t\t\t\tСпасибо за регистрацию на %2$s. Ваша учётная запись создана.\n\t\t\t" + +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tДанные для входа:\n\n\t\t\tАдрес сайта:\t%3$s\n\t\t\tИмя:\t\t%1$s\n\t\t\tПароль:\t\t%5$s\n\n\t\t\tВы можете сменить пароль в настройках учётной записи после входа.\n\t\t\t\n\n\t\t\tТакже обратите внимание на другие настройки на этой странице.\n\n\t\t\tВы можете захотеть добавить основную информацию о себе\n\t\t\tна странице \"Профиль\", чтобы другие люди легко вас нашли.\n\n\t\t\tМы рекомендуем указать полное имя и установить фото профиля,\n\t\t\tдобавить ключевые слова для поиска друзей по интересам,\n\t\t\tи, вероятно, страну вашего проживания.\n\n\t\t\tМы уважаем вашу приватность и ничто из вышеуказанного не обязательно.\n\t\t\tЕсли вы новичок и пока никого здесь не знаете, то это поможет\n\t\t\tвам найти новых интересных друзей.\n\n\t\t\tЕсли вы захотите удалить свою учётную запись, то сможете сделать это на %3$s/removeme\n\n\t\t\tСпасибо и добро пожаловать на %2$s." + +#: src/Model/Group.php:92 +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 "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием." + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Группа доступа по умолчанию для новых контактов" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Каждый" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "редактировать" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "добавить" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Редактировать группу" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Создать новую группу" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Редактировать группы" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Изменить фото профиля" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Фид Atom" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[сегодня]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Напоминания о днях рождения" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Дни рождения на этой неделе:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[без описания]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Напоминания о мероприятиях" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "События на ближайшие 7 дней:" + +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s приветствует %2$s" + +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Добавить контакт" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Введите адрес или веб-местонахождение" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Пример: bob@example.com, http://example.com/barbara" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Подключить" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d приглашение доступно" +msgstr[1] "%d приглашений доступно" +msgstr[2] "%d приглашений доступно" +msgstr[3] "%d приглашений доступно" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "Все" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "Отношения" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "Протоколы" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "Все протоколы" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Сохранённые папки" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Всё" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Категории" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d Контакт" +msgstr[1] "%d Контактов" +msgstr[2] "%d Контактов" +msgstr[3] "%d Контактов" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Архивы" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "Часто" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "Раз в час" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "Дважды в день" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "Раз в день" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "Раз в неделю" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "Раз в месяц" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "Diaspora Connector" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "GNU Social Connector" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "%s (через %s)" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Основные возможности" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Место фотографирования" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Популярные тэги" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Показать облако популярных тэгов на странице публичных записей сервера" + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Составление сообщений" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Автоматически отмечать форумы" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Добавлять/удалять упоминание, когда страница форума выбрана/убрана в списке получателей." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Явные отметки" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Вставлять отметки пользователей в поле комментариев, чтобы иметь ручной контроль над тем, кто будет упомянут в ответе." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Инструменты записей/комментариев" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Категории записей" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Добавить категории для ваших записей" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Расширенные настройки профиля" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "Список форумов" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Показывать посетителям публичные форумы на расширенной странице профиля." + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Облако тэгов" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Показывать ваше личное облако тэгов в вашем профиле" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Показывать дату регистрации" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Дата вашей регистрации будет отображаться в вашем профиле" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Ничего нового здесь" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Стереть уведомления" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@имя, !форум, #тег, контент" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "Завершить эту сессию" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Вход" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Личные заметки" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "Ваши личные заметки" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Мой профиль" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Главная страница" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Создать аккаунт" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Помощь и документация" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Приложения" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Дополнительные приложения, утилиты, игры" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "Поиск по сайту" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Контент" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Тэги" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Сообщество" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "Диалоги на этом и других серверах" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Каталог" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "Каталог участников" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "Информация об этом экземпляре Friendica" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "Условия оказания услуг для этого узла Friendica" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Запросы" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Запросы на добавление в список друзей" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "Посмотреть все уведомления" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Отметить все системные уведомления, как прочитанные" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Входящие" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Исходящие" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "Учётные записи" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Управление другими страницами" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Конфигурация сайта" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Навигация" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Карта сайта" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Удалить элемент" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "запомненные поиски" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Экспорт" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Экспортировать календарь в формат ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Экспортировать календарь в формат csv" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Популярные тэги (за %d час)" +msgstr[1] "Популярные тэги (за %d часа)" +msgstr[2] "Популярные тэги (за %d часов)" +msgstr[3] "Популярные тэги (за %d часов)" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "Больше популярных тэгов" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "Нет контактов" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d контакт" +msgstr[1] "%d контактов" +msgstr[2] "%d контактов" +msgstr[3] "%d контактов" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "Просмотр контактов" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "новее" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "старее" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Встраивание отключено" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Встроенное содержание" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "пред." + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "последний" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "Загружаю больше сообщений..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "Конец" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "Нажмите, чтобы открыть / закрыть" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Изображение / Фото" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 написал:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Зашифрованный контент" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Неправильный протокол источника" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Неправильная протокольная ссылка" + +#: src/BaseModule.php:150 +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 "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index 4ca1ae55c8..f40b906e79 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -6,20 +6,97 @@ function string_plural_select_ru($n){ return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "Дневной лимит в %d запись достигнут. Запись отклонена.", - 1 => "Дневной лимит в %d записи достигнут. Запись отклонена.", - 2 => "Дневной лимит в %d записей достигнут. Запись отклонена.", - 3 => "Дневной лимит в %d записей достигнут. Запись отклонена.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "Недельный лимит в %d запись достигнут. Запись была отклонена.", - 1 => "Недельный лимит в %d записи достигнут. Запись была отклонена.", - 2 => "Недельный лимит в %d записей достигнут. Запись была отклонена.", - 3 => "Недельный лимит в %d записей достигнут. Запись была отклонена.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Месячный лимит в %d записей достигнут. Запись была отклонена."; -$a->strings["Profile Photos"] = "Фотографии профиля"; +$a->strings["default"] = "значение по умолчанию"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "Подтвердить"; +$a->strings["Theme settings"] = "Настройки темы"; +$a->strings["Variations"] = "Вариации"; +$a->strings["Alignment"] = "Выравнивание"; +$a->strings["Left"] = "Слева"; +$a->strings["Center"] = "Центр"; +$a->strings["Color scheme"] = "Цветовая схема"; +$a->strings["Posts font size"] = "Размер шрифта записей"; +$a->strings["Textareas font size"] = "Размер шрифта текстовых полей"; +$a->strings["Comma separated list of helper forums"] = "Разделенный запятыми список форумов помощи"; +$a->strings["don't show"] = "не показывать"; +$a->strings["show"] = "показывать"; +$a->strings["Set style"] = "Установить стиль"; +$a->strings["Community Pages"] = "Страницы сообщества"; +$a->strings["Community Profiles"] = "Профили сообщества"; +$a->strings["Help or @NewHere ?"] = "Помощь"; +$a->strings["Connect Services"] = "Подключить службы"; +$a->strings["Find Friends"] = "Найти друзей"; +$a->strings["Last users"] = "Последние пользователи"; +$a->strings["Find People"] = "Поиск людей"; +$a->strings["Enter name or interest"] = "Введите имя или интерес"; +$a->strings["Connect/Follow"] = "Подключиться/Подписаться"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка"; +$a->strings["Find"] = "Найти"; +$a->strings["Friend Suggestions"] = "Предложения друзей"; +$a->strings["Similar Interests"] = "Похожие интересы"; +$a->strings["Random Profile"] = "Случайный профиль"; +$a->strings["Invite Friends"] = "Пригласить друзей"; +$a->strings["Global Directory"] = "Глобальный каталог"; +$a->strings["Local Directory"] = "Локальный каталог"; +$a->strings["Forums"] = "Форумы"; +$a->strings["External link to forum"] = "Внешняя ссылка на форум"; +$a->strings["show more"] = "показать больше"; +$a->strings["Quick Start"] = "Быстрый запуск"; +$a->strings["Help"] = "Помощь"; +$a->strings["Custom"] = "Другое"; +$a->strings["Note"] = "Примечание"; +$a->strings["Check image permissions if all users are allowed to see the image"] = "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям."; +$a->strings["Select color scheme"] = "Выбор цветовой схемы"; +$a->strings["Copy or paste schemestring"] = "Скопируйте или вставьте строку оформления темы"; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы."; +$a->strings["Navigation bar background color"] = "Цвет фона навигационной панели"; +$a->strings["Navigation bar icon color "] = "Цвет иконок в навигационной панели"; +$a->strings["Link color"] = "Цвет ссылок"; +$a->strings["Set the background color"] = "Установить цвет фона"; +$a->strings["Content background opacity"] = "Прозрачность фона основного содержимого"; +$a->strings["Set the background image"] = "Установить фоновую картинку"; +$a->strings["Background image style"] = "Стиль фонового изображения"; +$a->strings["Login page background image"] = "Фоновое изображение страницы входа"; +$a->strings["Login page background color"] = "Цвет фона страницы входа"; +$a->strings["Leave background image and color empty for theme defaults"] = "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию."; +$a->strings["Guest"] = "Гость"; +$a->strings["Visitor"] = "Посетитель"; +$a->strings["Status"] = "Записи"; +$a->strings["Your posts and conversations"] = "Ваши записи и диалоги"; +$a->strings["Profile"] = "Информация"; +$a->strings["Your profile page"] = "Информация о вас"; +$a->strings["Photos"] = "Фото"; +$a->strings["Your photos"] = "Ваши фотографии"; +$a->strings["Videos"] = "Видео"; +$a->strings["Your videos"] = "Ваши видео"; +$a->strings["Events"] = "Мероприятия"; +$a->strings["Your events"] = "Ваши события"; +$a->strings["Network"] = "Новости"; +$a->strings["Conversations from your friends"] = "Сообщения ваших друзей"; +$a->strings["Events and Calendar"] = "Календарь и события"; +$a->strings["Messages"] = "Сообщения"; +$a->strings["Private mail"] = "Личная почта"; +$a->strings["Settings"] = "Настройки"; +$a->strings["Account settings"] = "Настройки аккаунта"; +$a->strings["Contacts"] = "Контакты"; +$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; +$a->strings["Follow Thread"] = "Подписаться на тему"; +$a->strings["Skip to main content"] = "Пропустить до основного содержимого"; +$a->strings["Top Banner"] = "Верхний баннер"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Растянуть изображение по ширине экрана и показать заливку цветом под ним на длинных страницах."; +$a->strings["Full screen"] = "Во весь экран"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Растянуть изображение во весь экран, обрезав его часть справа или снизу."; +$a->strings["Single row mosaic"] = "Мозаика в один ряд"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Растянуть и размножить изображение в один ряд, вертикально или горизонтально."; +$a->strings["Mosaic"] = "Мозаика"; +$a->strings["Repeat image to fill the screen."] = "Размножить изображение по всему экрану"; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Обновляем author-id и owner-id в таблицах item и thread. "; +$a->strings["%s: Updating post-type."] = "%s: Обновляем post-type."; $a->strings["%1\$s poked %2\$s"] = "%1\$s ткнул %2\$s"; $a->strings["event"] = "мероприятие"; $a->strings["status"] = "статус"; @@ -30,12 +107,11 @@ $a->strings["Delete"] = "Удалить"; $a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]"; $a->strings["Categories:"] = "Категории:"; $a->strings["Filed under:"] = "В рубрике:"; -$a->strings["%s from %s"] = "%s с %s"; +$a->strings["%s from %s"] = "%s из %s"; $a->strings["View in context"] = "Смотреть в контексте"; $a->strings["Please wait"] = "Пожалуйста, подождите"; $a->strings["remove"] = "удалить"; $a->strings["Delete Selected Items"] = "Удалить выбранные позиции"; -$a->strings["Follow Thread"] = "Подписаться на тему"; $a->strings["View Status"] = "Просмотреть статус"; $a->strings["View Profile"] = "Просмотреть профиль"; $a->strings["View Photos"] = "Просмотреть фото"; @@ -45,7 +121,6 @@ $a->strings["Send PM"] = "Отправить ЛС"; $a->strings["Block"] = "Заблокировать"; $a->strings["Ignore"] = "Игнорировать"; $a->strings["Poke"] = "потыкать"; -$a->strings["Connect/Follow"] = "Подключиться/Подписаться"; $a->strings["%s likes this."] = "%s нравится это."; $a->strings["%s doesn't like this."] = "%s не нравится это."; $a->strings["%s attends."] = "%s посещает."; @@ -95,7 +170,7 @@ $a->strings["Categories (comma-separated list)"] = "Категории (спис $a->strings["Permission settings"] = "Настройки разрешений"; $a->strings["permissions"] = "разрешения"; $a->strings["Public post"] = "Публичное сообщение"; -$a->strings["Preview"] = "Предварительный просмотр"; +$a->strings["Preview"] = "Предпросмотр"; $a->strings["Cancel"] = "Отмена"; $a->strings["Post to Groups"] = "Запись в группу"; $a->strings["Post to Contacts"] = "Запись для контактов"; @@ -164,34 +239,38 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = " $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Вы получили [url=%1\$s]запрос регистрации[/url] от %2\$s."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Полное имя:\t%s\nРасположение:\t%s\nИмя для входа:\t%s (%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос."; -$a->strings["Item not found."] = "Пункт не найден."; -$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?"; -$a->strings["Yes"] = "Да"; -$a->strings["Permission denied."] = "Нет разрешения."; -$a->strings["Authorize application connection"] = "Разрешить связь с приложением"; -$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:"; -$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?"; -$a->strings["No"] = "Нет"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "Дневной лимит в %d запись достигнут. Запись отклонена.", + 1 => "Дневной лимит в %d записи достигнут. Запись отклонена.", + 2 => "Дневной лимит в %d записей достигнут. Запись отклонена.", + 3 => "Дневной лимит в %d записей достигнут. Запись отклонена.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "Недельный лимит в %d запись достигнут. Запись была отклонена.", + 1 => "Недельный лимит в %d записи достигнут. Запись была отклонена.", + 2 => "Недельный лимит в %d записей достигнут. Запись была отклонена.", + 3 => "Недельный лимит в %d записей достигнут. Запись была отклонена.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Месячный лимит в %d записей достигнут. Запись была отклонена."; +$a->strings["Profile Photos"] = "Фотографии профиля"; $a->strings["Access denied."] = "Доступ запрещен."; -$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; -$a->strings["Events"] = "Мероприятия"; -$a->strings["View"] = "Смотреть"; -$a->strings["Previous"] = "Назад"; -$a->strings["Next"] = "Далее"; -$a->strings["today"] = "сегодня"; -$a->strings["month"] = "мес."; -$a->strings["week"] = "неделя"; -$a->strings["day"] = "день"; -$a->strings["list"] = "список"; -$a->strings["User not found"] = "Пользователь не найден"; -$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается"; -$a->strings["No exportable data found"] = "Нет данных для экспорта"; -$a->strings["calendar"] = "календарь"; -$a->strings["No contacts in common."] = "Нет общих контактов."; -$a->strings["Common Friends"] = "Общие друзья"; -$a->strings["Profile not found."] = "Профиль не найден."; +$a->strings["Bad Request."] = "Ошибочный запрос."; $a->strings["Contact not found."] = "Контакт не найден."; +$a->strings["Permission denied."] = "Нет разрешения."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."; +$a->strings["No recipient selected."] = "Не выбран получатель."; +$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение."; +$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено."; +$a->strings["Message collection failure."] = "Неудача коллекции сообщения."; +$a->strings["No recipient."] = "Без адресата."; +$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:"; +$a->strings["Send Private Message"] = "Отправить личное сообщение"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей."; +$a->strings["To:"] = "Кому:"; +$a->strings["Subject:"] = "Тема:"; +$a->strings["Your message:"] = "Ваше сообщение:"; +$a->strings["Insert web link"] = "Вставить веб-ссылку"; +$a->strings["Profile not found."] = "Профиль не найден."; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."; $a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят."; $a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: "; @@ -208,271 +287,21 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе."; $a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе"; $a->strings["[Name Withheld]"] = "[Имя не разглашается]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s"; -$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."; -$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d требуемый параметр не был найден в заданном месте", - 1 => "%d требуемых параметров не были найдены в заданном месте", - 2 => "%d требуемых параметров не были найдены в заданном месте", - 3 => "%d требуемых параметров не были найдены в заданном месте", -]; -$a->strings["Introduction complete."] = "Запрос создан."; -$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола."; -$a->strings["Profile unavailable."] = "Профиль недоступен."; -$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение."; -$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа."; -$a->strings["Invalid locator"] = "Недопустимый локатор"; -$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь."; -$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s."; -$a->strings["Invalid profile URL."] = "Неверный URL профиля."; -$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля."; -$a->strings["Blocked domain"] = "Заблокированный домен"; -$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта."; -$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе."; -$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль."; -$a->strings["Confirm"] = "Подтвердить"; -$a->strings["Hide this contact"] = "Скрыть этот контакт"; -$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."; $a->strings["Public access denied."] = "Свободный доступ закрыт."; -$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой (например, Diaspora), вам нужно подписаться на %s непосредственно на вашей системе"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня."; -$a->strings["Your Webfinger address or profile URL:"] = "Ваш адрес Webfinger или ссылка на профиль:"; -$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:"; -$a->strings["Submit Request"] = "Отправить запрос"; -$a->strings["%s knows you"] = "%s знают Вас"; -$a->strings["Add a personal note:"] = "Добавить личную заметку:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "Запрошенная запись не существует или была удалена."; -$a->strings["The feed for this item is unavailable."] = "Лента недоступна для этого объекта."; -$a->strings["Item not found"] = "Элемент не найден"; -$a->strings["Edit post"] = "Редактировать сообщение"; -$a->strings["Save"] = "Сохранить"; -$a->strings["Insert web link"] = "Вставить веб-ссылку"; -$a->strings["web link"] = "веб-ссылка"; -$a->strings["Insert video link"] = "Вставить ссылку видео"; -$a->strings["video link"] = "видео-ссылка"; -$a->strings["Insert audio link"] = "Вставить ссылку аудио"; -$a->strings["audio link"] = "аудио-ссылка"; -$a->strings["CC: email addresses"] = "Копии на email адреса"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; -$a->strings["Event can not end before it has started."] = "Эвент не может закончится до старта."; -$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения."; -$a->strings["Create New Event"] = "Создать новое мероприятие"; -$a->strings["Event details"] = "Сведения о мероприятии"; -$a->strings["Starting date and Title are required."] = "Необходима дата старта и заголовок."; -$a->strings["Event Starts:"] = "Начало мероприятия:"; -$a->strings["Required"] = "Требуется"; -$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны"; -$a->strings["Event Finishes:"] = "Окончание мероприятия:"; -$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса"; -$a->strings["Description:"] = "Описание:"; -$a->strings["Location:"] = "Откуда:"; -$a->strings["Title:"] = "Титул:"; -$a->strings["Share this event"] = "Поделитесь этим мероприятием"; -$a->strings["Submit"] = "Подтвердить"; -$a->strings["Basic"] = "Базовый"; -$a->strings["Advanced"] = "Расширенный"; -$a->strings["Permissions"] = "Разрешения"; -$a->strings["Failed to remove event"] = "Ошибка удаления события"; -$a->strings["Event removed"] = "Событие удалено"; -$a->strings["Photos"] = "Фото"; -$a->strings["Contact Photos"] = "Фотографии контакта"; -$a->strings["Upload"] = "Загрузить"; -$a->strings["Files"] = "Файлы"; -$a->strings["The contact could not be added."] = "Не удалось добавить этот контакт."; -$a->strings["You already added this contact."] = "Вы уже добавили этот контакт."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Поддержка Diaspora не включена. Контакт не может быть добавлен."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Поддержка OStatus выключена. Контакт не может быть добавлен."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Тип сети не может быть определен. Контакт не может быть добавлен."; -$a->strings["Your Identity Address:"] = "Ваш адрес:"; -$a->strings["Profile URL"] = "URL профиля"; -$a->strings["Tags:"] = "Ключевые слова: "; -$a->strings["Status Messages and Posts"] = "Ваши записи"; -$a->strings["Unable to locate original post."] = "Не удалось найти оригинальную запись."; -$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; -$a->strings["Post updated."] = "Запись обновлена."; -$a->strings["Item wasn't stored."] = "Запись не была сохранена."; -$a->strings["Item couldn't be fetched."] = "Не удалось получить запись."; -$a->strings["Post published."] = "Запись опубликована."; -$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна."; -$a->strings["Visible to:"] = "Кто может видеть:"; -$a->strings["Followers"] = "Читатели"; -$a->strings["Mutuals"] = "Взаимные"; -$a->strings["No valid account found."] = "Не найдено действительного аккаунта."; -$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tПривет, %1\$s,\n\t\t\"%2\$s\" был получен запрос на сброс вашего пароля.\n\t\tЧтобы подтвердить запрос, перейдите по ссылке ниже или \n\t\tскопируйте её в адресную строку вашего браузера.\n\n\t\tЕсли вы НЕ отправляли этот запрос, то НЕ ПЕРЕХОДИТЕ по\n\t\tэтой ссылке, просто проигнорируйте это письмо. Запрос скоро отменится.\n\n\t\tВаш пароль не будет изменён до тех пор, пока вы не подтвердите,\n\t\tчто вы отправляли этот запрос как описано выше."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tПерейдите по этой ссылке для подтверждения вашей личности:\n\n\t\t%1\$s\n\n\t\tЗатем вы получите ещё одно письмо, содержащее ваш пароль.\n\t\tВы сможете сменить этот пароль в настройках вашей учётной записи после входа.\n\n\t\tДанные для входа:\n\n\t\tАдрес сервера:\t%2\$s\n\t\tИмя для входа:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."; -$a->strings["Request has expired, please make a new one."] = "Запрос истёк, пожалуйста, повторите его."; -$a->strings["Forgot your Password?"] = "Забыли пароль?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."; -$a->strings["Nickname or Email: "] = "Ник или E-mail: "; -$a->strings["Reset"] = "Сброс"; -$a->strings["Password Reset"] = "Сброс пароля"; -$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию."; -$a->strings["Your new password is"] = "Ваш новый пароль"; -$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем"; -$a->strings["click here to login"] = "нажмите здесь для входа"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменен на странице Настройки после успешного входа."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tПривет, %1\$s!\n\t\t\t\tВаш пароль был сменён по вашему запросу. Пожалуйста, сохраните эту информацию в надёжном месте (или сразу смените пароль на тот, который вы сможете запомнить).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tВаши данные для входа ниже:\n\n\t\t\tАдрес сервера:\t%1\$s\n\t\t\tИмя для входа:\t%2\$s\n\t\t\tПароль:\t%3\$s\n\n\t\t\tВы можете сменить этот пароль в настройках учётной записи после входа.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s"; +$a->strings["No videos selected"] = "Видео не выбрано"; +$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен."; +$a->strings["View Video"] = "Просмотреть видео"; +$a->strings["View Album"] = "Просмотреть альбом"; +$a->strings["Recent Videos"] = "Последние видео"; +$a->strings["Upload New Videos"] = "Загрузить новые видео"; $a->strings["No keywords to match. Please add keywords to your profile."] = "Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль."; -$a->strings["Connect"] = "Подключить"; $a->strings["first"] = "первый"; $a->strings["next"] = "след."; $a->strings["No matches"] = "Нет соответствий"; $a->strings["Profile Match"] = "Похожие профили"; -$a->strings["New Message"] = "Новое сообщение"; -$a->strings["No recipient selected."] = "Не выбран получатель."; -$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию."; -$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено."; -$a->strings["Message collection failure."] = "Неудача коллекции сообщения."; -$a->strings["Message sent."] = "Сообщение отправлено."; -$a->strings["Discard"] = "Отказаться"; -$a->strings["Messages"] = "Сообщения"; -$a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?"; -$a->strings["Conversation not found."] = "Диалог не найден."; -$a->strings["Message deleted."] = "Сообщение удалено."; -$a->strings["Conversation removed."] = "Беседа удалена."; -$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:"; -$a->strings["Send Private Message"] = "Отправить личное сообщение"; -$a->strings["To:"] = "Кому:"; -$a->strings["Subject:"] = "Тема:"; -$a->strings["Your message:"] = "Ваше сообщение:"; -$a->strings["No messages."] = "Нет сообщений."; -$a->strings["Message not available."] = "Сообщение не доступно."; -$a->strings["Delete message"] = "Удалить сообщение"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "Удалить историю общения"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя."; -$a->strings["Send Reply"] = "Отправить ответ"; -$a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s"; -$a->strings["You and %s"] = "Вы и %s"; -$a->strings["%s and You"] = "%s и Вы"; -$a->strings["%d message"] = [ - 0 => "%d сообщение", - 1 => "%d сообщений", - 2 => "%d сообщений", - 3 => "%d сообщений", -]; -$a->strings["No such group"] = "Нет такой группы"; -$a->strings["Group is empty"] = "Группа пуста"; -$a->strings["Group: %s"] = "Группа: %s"; -$a->strings["Invalid contact."] = "Недопустимый контакт."; -$a->strings["Latest Activity"] = "Недавняя активность"; -$a->strings["Sort by latest activity"] = "Отсортировать по свежей активности"; -$a->strings["Latest Posts"] = "Недавние записи"; -$a->strings["Sort by post received date"] = "Отсортировать по дате записей"; -$a->strings["Personal"] = "Личные"; -$a->strings["Posts that mention or involve you"] = "Записи, которые упоминают вас или в которых вы участвуете"; -$a->strings["New"] = "Новое"; -$a->strings["Activity Stream - by date"] = "Лента активности - по дате"; -$a->strings["Shared Links"] = "Ссылки, которыми поделились"; -$a->strings["Interesting Links"] = "Интересные ссылки"; -$a->strings["Starred"] = "Избранное"; -$a->strings["Favourite Posts"] = "Избранные записи"; -$a->strings["Personal Notes"] = "Личные заметки"; -$a->strings["Post successful."] = "Успешно добавлено."; -$a->strings["Subscribing to OStatus contacts"] = "Подписка на OStatus-контакты"; -$a->strings["No contact provided."] = "Не указан контакт."; -$a->strings["Couldn't fetch information for contact."] = "Невозможно получить информацию о контакте."; -$a->strings["Couldn't fetch friends for contact."] = "Невозможно получить друзей для контакта."; -$a->strings["Done"] = "Готово"; -$a->strings["success"] = "удачно"; -$a->strings["failed"] = "неудача"; -$a->strings["ignored"] = "игнорирован"; -$a->strings["Keep this window open until done."] = "Держать окно открытым до завершения."; -$a->strings["Photo Albums"] = "Фотоальбомы"; -$a->strings["Recent Photos"] = "Последние фото"; -$a->strings["Upload New Photos"] = "Загрузить новые фото"; -$a->strings["everybody"] = "каждый"; -$a->strings["Contact information unavailable"] = "Информация о контакте недоступна"; -$a->strings["Album not found."] = "Альбом не найден."; -$a->strings["Album successfully deleted"] = "Альбом успешно удалён"; -$a->strings["Album was empty."] = "Альбом был пуст."; -$a->strings["a photo"] = "фото"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s"; -$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s"; -$a->strings["Image upload didn't complete, please try again"] = "Не получилось загрузить изображение, попробуйте снова"; -$a->strings["Image file is missing"] = "Файл изображения не найден"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором"; -$a->strings["Image file is empty."] = "Файл изображения пуст."; -$a->strings["Unable to process image."] = "Невозможно обработать фото."; -$a->strings["Image upload failed."] = "Загрузка фото неудачная."; -$a->strings["No photos selected"] = "Не выбрано фото."; -$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен."; -$a->strings["Upload Photos"] = "Загрузить фото"; -$a->strings["New album name: "] = "Название нового альбома: "; -$a->strings["or select existing album:"] = "или выберите имеющийся альбом:"; -$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки"; -$a->strings["Show to Groups"] = "Показать в группах"; -$a->strings["Show to Contacts"] = "Показывать контактам"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?"; -$a->strings["Delete Album"] = "Удалить альбом"; -$a->strings["Edit Album"] = "Редактировать альбом"; -$a->strings["Drop Album"] = "Удалить альбом"; -$a->strings["Show Newest First"] = "Показать новые первыми"; -$a->strings["Show Oldest First"] = "Показать старые первыми"; -$a->strings["View Photo"] = "Просмотр фото"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен."; -$a->strings["Photo not available"] = "Фото недоступно"; -$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?"; -$a->strings["Delete Photo"] = "Удалить фото"; -$a->strings["View photo"] = "Просмотр фото"; -$a->strings["Edit photo"] = "Редактировать фото"; -$a->strings["Delete photo"] = "Удалить фото"; -$a->strings["Use as profile photo"] = "Использовать как фото профиля"; -$a->strings["Private Photo"] = "Закрытое фото"; -$a->strings["View Full Size"] = "Просмотреть полный размер"; -$a->strings["Tags: "] = "Ключевые слова: "; -$a->strings["[Select tags to remove]"] = "[выберите тэги для удаления]"; -$a->strings["New album name"] = "Название нового альбома"; -$a->strings["Caption"] = "Подпись"; -$a->strings["Add a Tag"] = "Добавить ключевое слово (тег)"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Не поворачивать"; -$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)"; -$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)"; -$a->strings["I like this (toggle)"] = "Нравится"; -$a->strings["I don't like this (toggle)"] = "Не нравится"; -$a->strings["This is you"] = "Это вы"; -$a->strings["Comment"] = "Оставить комментарий"; -$a->strings["Map"] = "Карта"; -$a->strings["View Album"] = "Просмотреть альбом"; -$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; -$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; -$a->strings["Poke/Prod"] = "Потыкать/Потолкать"; -$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то"; -$a->strings["Recipient"] = "Получатель"; -$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; -$a->strings["Make this post private"] = "Сделать эту запись личной"; -$a->strings["User deleted their account"] = "Пользователь удалил свою учётную запись"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий."; -$a->strings["The user id is %d"] = "id пользователя: %d"; -$a->strings["Remove My Account"] = "Удалить мой аккаунт"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."; -$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:"; -$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты."; -$a->strings["Error"] = [ - 0 => "Ошибка", - 1 => "Ошибки", - 2 => "Ошибки", - 3 => "Ошибки", -]; $a->strings["Missing some important data!"] = "Не хватает важных данных!"; $a->strings["Update"] = "Обновление"; $a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."; -$a->strings["Email settings updated."] = "Настройки эл. почты обновлены."; -$a->strings["Features updated"] = "Настройки обновлены"; $a->strings["Contact CSV file upload error"] = "Ошибка загрузки CSV с контактами"; $a->strings["Importing Contacts done"] = "Импорт контактов завершён"; $a->strings["Relocate message has been send to your contacts"] = "Перемещённое сообщение было отправлено списку контактов"; @@ -487,7 +316,7 @@ $a->strings["Invalid email."] = "Неправильный адрес почты" $a->strings["Cannot change to that email."] = "Нельзя установить этот адрес почты"; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию."; -$a->strings["Settings updated."] = "Настройки обновлены."; +$a->strings["Settings were not updated."] = "Настройки не были изменены."; $a->strings["Add application"] = "Добавить приложения"; $a->strings["Save Settings"] = "Сохранить настройки"; $a->strings["Name"] = "Имя"; @@ -645,15 +474,164 @@ $a->strings["Upload File"] = "Загрузить файл"; $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["Contact suggestion successfully ignored."] = "Предложенный контакт проигнорирован"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; -$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?"; -$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть"; -$a->strings["Friend Suggestions"] = "Предложения друзей"; -$a->strings["Tag(s) removed"] = "Тэги удалены"; +$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; +$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; +$a->strings["No contacts in common."] = "Нет общих контактов."; +$a->strings["Common Friends"] = "Общие друзья"; +$a->strings["No items found"] = "Записи не найдены"; +$a->strings["No such group"] = "Нет такой группы"; +$a->strings["Group is empty"] = "Группа пуста"; +$a->strings["Group: %s"] = "Группа: %s"; +$a->strings["Invalid contact."] = "Недопустимый контакт."; +$a->strings["Latest Activity"] = "Недавняя активность"; +$a->strings["Sort by latest activity"] = "Отсортировать по свежей активности"; +$a->strings["Latest Posts"] = "Недавние записи"; +$a->strings["Sort by post received date"] = "Отсортировать по дате записей"; +$a->strings["Personal"] = "Личные"; +$a->strings["Posts that mention or involve you"] = "Записи, которые упоминают вас или в которых вы участвуете"; +$a->strings["Starred"] = "Избранное"; +$a->strings["Favourite Posts"] = "Избранные записи"; +$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты."; +$a->strings["Error"] = [ + 0 => "Ошибка", + 1 => "Ошибки", + 2 => "Ошибки", + 3 => "Ошибки", +]; +$a->strings["Done"] = "Готово"; +$a->strings["Keep this window open until done."] = "Держать окно открытым до завершения."; +$a->strings["You aren't following this contact."] = "Вы не подписаны на этот контакт."; +$a->strings["Unfollowing is currently not supported by your network."] = "Отписка в настоящий момент не предусмотрена этой сетью"; +$a->strings["Disconnect/Unfollow"] = "Отсоединиться/Отписаться"; +$a->strings["Your Identity Address:"] = "Ваш адрес:"; +$a->strings["Submit Request"] = "Отправить запрос"; +$a->strings["Profile URL"] = "URL профиля"; +$a->strings["Status Messages and Posts"] = "Ваши записи"; +$a->strings["New Message"] = "Новое сообщение"; +$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию."; +$a->strings["Discard"] = "Отказаться"; +$a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?"; +$a->strings["Yes"] = "Да"; +$a->strings["Conversation not found."] = "Беседа не найдена."; +$a->strings["Message was not deleted."] = "Сообщение не было удалено."; +$a->strings["Conversation was not removed."] = "Беседа не была удалена."; +$a->strings["No messages."] = "Нет сообщений."; +$a->strings["Message not available."] = "Сообщение не доступно."; +$a->strings["Delete message"] = "Удалить сообщение"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "Удалить историю общения"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя."; +$a->strings["Send Reply"] = "Отправить ответ"; +$a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s"; +$a->strings["You and %s"] = "Вы и %s"; +$a->strings["%s and You"] = "%s и Вы"; +$a->strings["%d message"] = [ + 0 => "%d сообщение", + 1 => "%d сообщений", + 2 => "%d сообщений", + 3 => "%d сообщений", +]; +$a->strings["Subscribing to OStatus contacts"] = "Подписка на OStatus-контакты"; +$a->strings["No contact provided."] = "Не указан контакт."; +$a->strings["Couldn't fetch information for contact."] = "Невозможно получить информацию о контакте."; +$a->strings["Couldn't fetch friends for contact."] = "Невозможно получить друзей для контакта."; +$a->strings["success"] = "удачно"; +$a->strings["failed"] = "неудача"; +$a->strings["ignored"] = "игнорирован"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s"; +$a->strings["User deleted their account"] = "Пользователь удалил свою учётную запись"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий."; +$a->strings["The user id is %d"] = "id пользователя: %d"; +$a->strings["Remove My Account"] = "Удалить мой аккаунт"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."; +$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:"; $a->strings["Remove Item Tag"] = "Удалить ключевое слово"; $a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: "; $a->strings["Remove"] = "Удалить"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; +$a->strings["The requested item doesn't exist or has been deleted."] = "Запрошенная запись не существует или была удалена."; +$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; +$a->strings["The feed for this item is unavailable."] = "Лента недоступна для этого объекта."; +$a->strings["Invalid request."] = "Неверный запрос."; +$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s"; +$a->strings["Unable to process image."] = "Невозможно обработать фото."; +$a->strings["Wall Photos"] = "Фото стены"; +$a->strings["Image upload failed."] = "Загрузка фото неудачная."; +$a->strings["No valid account found."] = "Не найдено действительного аккаунта."; +$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tПривет, %1\$s,\n\t\t\"%2\$s\" был получен запрос на сброс вашего пароля.\n\t\tЧтобы подтвердить запрос, перейдите по ссылке ниже или \n\t\tскопируйте её в адресную строку вашего браузера.\n\n\t\tЕсли вы НЕ отправляли этот запрос, то НЕ ПЕРЕХОДИТЕ по\n\t\tэтой ссылке, просто проигнорируйте это письмо. Запрос скоро отменится.\n\n\t\tВаш пароль не будет изменён до тех пор, пока вы не подтвердите,\n\t\tчто вы отправляли этот запрос как описано выше."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tПерейдите по этой ссылке для подтверждения вашей личности:\n\n\t\t%1\$s\n\n\t\tЗатем вы получите ещё одно письмо, содержащее ваш пароль.\n\t\tВы сможете сменить этот пароль в настройках вашей учётной записи после входа.\n\n\t\tДанные для входа:\n\n\t\tАдрес сервера:\t%2\$s\n\t\tИмя для входа:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."; +$a->strings["Request has expired, please make a new one."] = "Запрос истёк, пожалуйста, повторите его."; +$a->strings["Forgot your Password?"] = "Забыли пароль?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."; +$a->strings["Nickname or Email: "] = "Ник или E-mail: "; +$a->strings["Reset"] = "Сброс"; +$a->strings["Password Reset"] = "Сброс пароля"; +$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию."; +$a->strings["Your new password is"] = "Ваш новый пароль"; +$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем"; +$a->strings["click here to login"] = "нажмите здесь для входа"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменен на странице Настройки после успешного входа."; +$a->strings["Your password has been reset."] = "Ваш пароль был сброшен."; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tПривет, %1\$s!\n\t\t\t\tВаш пароль был сменён по вашему запросу. Пожалуйста, сохраните эту информацию в надёжном месте (или сразу смените пароль на тот, который вы сможете запомнить).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tВаши данные для входа ниже:\n\n\t\t\tАдрес сервера:\t%1\$s\n\t\t\tИмя для входа:\t%2\$s\n\t\t\tПароль:\t%3\$s\n\n\t\t\tВы можете сменить этот пароль в настройках учётной записи после входа.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s"; +$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."; +$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d требуемый параметр не был найден в заданном месте", + 1 => "%d требуемых параметров не были найдены в заданном месте", + 2 => "%d требуемых параметров не были найдены в заданном месте", + 3 => "%d требуемых параметров не были найдены в заданном месте", +]; +$a->strings["Introduction complete."] = "Запрос создан."; +$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола."; +$a->strings["Profile unavailable."] = "Профиль недоступен."; +$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение."; +$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа."; +$a->strings["Invalid locator"] = "Недопустимый локатор"; +$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь."; +$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s."; +$a->strings["Invalid profile URL."] = "Неверный URL профиля."; +$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля."; +$a->strings["Blocked domain"] = "Заблокированный домен"; +$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта."; +$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе."; +$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в этот профиль."; +$a->strings["Confirm"] = "Подтвердить"; +$a->strings["Hide this contact"] = "Скрыть этот контакт"; +$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."; +$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой (например, Diaspora), вам нужно подписаться на %s непосредственно на вашей системе"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня."; +$a->strings["Your Webfinger address or profile URL:"] = "Ваш адрес Webfinger или ссылка на профиль:"; +$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:"; +$a->strings["%s knows you"] = "%s знают Вас"; +$a->strings["Add a personal note:"] = "Добавить личную заметку:"; +$a->strings["Authorize application connection"] = "Разрешить связь с приложением"; +$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:"; +$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?"; +$a->strings["No"] = "Нет"; +$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 %s"] = "Файл превышает лимит размера в %s"; +$a->strings["File upload failed."] = "Загрузка файла не удалась."; +$a->strings["Unable to locate original post."] = "Не удалось найти оригинальную запись."; +$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; +$a->strings["Post updated."] = "Запись обновлена."; +$a->strings["Item wasn't stored."] = "Запись не была сохранена."; +$a->strings["Item couldn't be fetched."] = "Не удалось получить запись."; +$a->strings["Item not found."] = "Пункт не найден."; +$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?"; $a->strings["User imports on closed servers can only be done by an administrator."] = "Импорт пользователей на закрытых серверах может быть произведён только администратором."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."; $a->strings["Import"] = "Импорт"; @@ -663,244 +641,139 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora"; $a->strings["Account file"] = "Файл аккаунта"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""; -$a->strings["You aren't following this contact."] = "Вы не подписаны на этот контакт."; -$a->strings["Unfollowing is currently not supported by your network."] = "Отписка в настоящий момент не предусмотрена этой сетью"; -$a->strings["Contact unfollowed"] = "Вы отписались от контакта"; -$a->strings["Disconnect/Unfollow"] = "Отсоединиться/Отписаться"; -$a->strings["No videos selected"] = "Видео не выбрано"; -$a->strings["View Video"] = "Просмотреть видео"; -$a->strings["Recent Videos"] = "Последние видео"; -$a->strings["Upload New Videos"] = "Загрузить новые видео"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."; -$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение."; -$a->strings["No recipient."] = "Без адресата."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей."; -$a->strings["Invalid request."] = "Неверный запрос."; -$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 %s"] = "Файл превышает лимит размера в %s"; -$a->strings["File upload failed."] = "Загрузка файла не удалась."; -$a->strings["Wall Photos"] = "Фото стены"; +$a->strings["User not found."] = "Пользователь не найден."; +$a->strings["View"] = "Смотреть"; +$a->strings["Previous"] = "Назад"; +$a->strings["Next"] = "Далее"; +$a->strings["today"] = "сегодня"; +$a->strings["month"] = "мес."; +$a->strings["week"] = "неделя"; +$a->strings["day"] = "день"; +$a->strings["list"] = "список"; +$a->strings["User not found"] = "Пользователь не найден"; +$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается"; +$a->strings["No exportable data found"] = "Нет данных для экспорта"; +$a->strings["calendar"] = "календарь"; +$a->strings["Item not found"] = "Элемент не найден"; +$a->strings["Edit post"] = "Редактировать сообщение"; +$a->strings["Save"] = "Сохранить"; +$a->strings["web link"] = "веб-ссылка"; +$a->strings["Insert video link"] = "Вставить ссылку видео"; +$a->strings["video link"] = "видео-ссылка"; +$a->strings["Insert audio link"] = "Вставить ссылку аудио"; +$a->strings["audio link"] = "аудио-ссылка"; +$a->strings["CC: email addresses"] = "Копии на email адреса"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Эвент не может закончится до старта."; +$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения."; +$a->strings["Create New Event"] = "Создать новое мероприятие"; +$a->strings["Event details"] = "Сведения о мероприятии"; +$a->strings["Starting date and Title are required."] = "Необходима дата старта и заголовок."; +$a->strings["Event Starts:"] = "Начало мероприятия:"; +$a->strings["Required"] = "Требуется"; +$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны"; +$a->strings["Event Finishes:"] = "Окончание мероприятия:"; +$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса"; +$a->strings["Description:"] = "Описание:"; +$a->strings["Location:"] = "Откуда:"; +$a->strings["Title:"] = "Титул:"; +$a->strings["Share this event"] = "Поделитесь этим мероприятием"; +$a->strings["Basic"] = "Базовый"; +$a->strings["Advanced"] = "Расширенный"; +$a->strings["Permissions"] = "Разрешения"; +$a->strings["Failed to remove event"] = "Ошибка удаления события"; +$a->strings["The contact could not be added."] = "Не удалось добавить этот контакт."; +$a->strings["You already added this contact."] = "Вы уже добавили этот контакт."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Тип сети не может быть определен. Контакт не может быть добавлен."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Поддержка Diaspora не включена. Контакт не может быть добавлен."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Поддержка OStatus выключена. Контакт не может быть добавлен."; +$a->strings["Tags:"] = "Ключевые слова: "; +$a->strings["Contact Photos"] = "Фотографии контакта"; +$a->strings["Upload"] = "Загрузить"; +$a->strings["Files"] = "Файлы"; +$a->strings["Personal Notes"] = "Личные заметки"; +$a->strings["Photo Albums"] = "Фотоальбомы"; +$a->strings["Recent Photos"] = "Последние фото"; +$a->strings["Upload New Photos"] = "Загрузить новые фото"; +$a->strings["everybody"] = "каждый"; +$a->strings["Contact information unavailable"] = "Информация о контакте недоступна"; +$a->strings["Album not found."] = "Альбом не найден."; +$a->strings["Album successfully deleted"] = "Альбом успешно удалён"; +$a->strings["Album was empty."] = "Альбом был пуст."; +$a->strings["Failed to delete the photo."] = "Не получилось удалить фото."; +$a->strings["a photo"] = "фото"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = "Не получилось загрузить изображение, попробуйте снова"; +$a->strings["Image file is missing"] = "Файл изображения не найден"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором"; +$a->strings["Image file is empty."] = "Файл изображения пуст."; +$a->strings["No photos selected"] = "Не выбрано фото."; +$a->strings["Upload Photos"] = "Загрузить фото"; +$a->strings["New album name: "] = "Название нового альбома: "; +$a->strings["or select existing album:"] = "или выберите имеющийся альбом:"; +$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки"; +$a->strings["Show to Groups"] = "Показать в группах"; +$a->strings["Show to Contacts"] = "Показывать контактам"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?"; +$a->strings["Delete Album"] = "Удалить альбом"; +$a->strings["Edit Album"] = "Редактировать альбом"; +$a->strings["Drop Album"] = "Удалить альбом"; +$a->strings["Show Newest First"] = "Показать новые первыми"; +$a->strings["Show Oldest First"] = "Показать старые первыми"; +$a->strings["View Photo"] = "Просмотр фото"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен."; +$a->strings["Photo not available"] = "Фото недоступно"; +$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?"; +$a->strings["Delete Photo"] = "Удалить фото"; +$a->strings["View photo"] = "Просмотр фото"; +$a->strings["Edit photo"] = "Редактировать фото"; +$a->strings["Delete photo"] = "Удалить фото"; +$a->strings["Use as profile photo"] = "Использовать как фото профиля"; +$a->strings["Private Photo"] = "Закрытое фото"; +$a->strings["View Full Size"] = "Просмотреть полный размер"; +$a->strings["Tags: "] = "Ключевые слова: "; +$a->strings["[Select tags to remove]"] = "[выберите тэги для удаления]"; +$a->strings["New album name"] = "Название нового альбома"; +$a->strings["Caption"] = "Подпись"; +$a->strings["Add a Tag"] = "Добавить ключевое слово (тег)"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Не поворачивать"; +$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)"; +$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)"; +$a->strings["I like this (toggle)"] = "Нравится"; +$a->strings["I don't like this (toggle)"] = "Не нравится"; +$a->strings["This is you"] = "Это вы"; +$a->strings["Comment"] = "Оставить комментарий"; +$a->strings["Map"] = "Карта"; +$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; +$a->strings["Delete this item?"] = "Удалить этот элемент?"; +$a->strings["toggle mobile"] = "мобильная версия"; $a->strings["Login failed."] = "Войти не удалось."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."; $a->strings["The error message was:"] = "Сообщение об ошибке было:"; $a->strings["Login failed. Please check your credentials."] = "Ошибка входа. Пожалуйста, проверьте данные для входа."; $a->strings["Welcome %s"] = "Добро пожаловать, %s"; $a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля."; -$a->strings["Welcome back %s"] = "Добро пожаловать, %s"; -$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; -$a->strings["Delete this item?"] = "Удалить этот элемент?"; -$a->strings["toggle mobile"] = "мобильная версия"; $a->strings["Method not allowed for this module. Allowed method(s): %s"] = "Метод не разрешён для этого модуля. Разрешенный метод(ы): %s"; $a->strings["Page not found."] = "Страница не найдена."; -$a->strings["No system theme config value set."] = "Настройки системной темы не установлены."; -$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."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Не удалось найти не архивированных контактов для этой URL (%s)"; -$a->strings["The contact entries have been archived"] = "Записи этого контакта были архивированы."; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Не удалось найти контактных данных по этой ссылке (%s)"; -$a->strings["The contact has been blocked from the node"] = "Контакт был заблокирован на узле."; -$a->strings["Post update version number has been set to %s."] = "Номер версии обновления записи установлен на %s."; -$a->strings["Check for pending update actions."] = "Проверить наличие отложенных действий."; -$a->strings["Done."] = "Готово."; -$a->strings["Execute pending post updates."] = "Выполнить обновления записей из очереди."; -$a->strings["All pending post updates are done."] = "Все операции по обновлению записей выполнены."; -$a->strings["Enter new password: "] = "Введите новый пароль:"; -$a->strings["Enter user name: "] = "Введите имя пользователя:"; -$a->strings["Enter user nickname: "] = "Введите ник пользователя:"; -$a->strings["Enter user email address: "] = "Введите адрес почты пользователя:"; -$a->strings["Enter a language (optional): "] = "Введите язык (не обязательно):"; -$a->strings["User is not pending."] = "Пользователь не в ожидании"; -$a->strings["Type \"yes\" to delete %s"] = "Введите \"yes\" для удаления %s"; -$a->strings["newer"] = "новее"; -$a->strings["older"] = "старее"; -$a->strings["Frequently"] = "Часто"; -$a->strings["Hourly"] = "Раз в час"; -$a->strings["Twice daily"] = "Дважды в день"; -$a->strings["Daily"] = "Раз в день"; -$a->strings["Weekly"] = "Раз в неделю"; -$a->strings["Monthly"] = "Раз в месяц"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Эл. почта"; -$a->strings["Diaspora"] = "Diaspora"; -$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["Discourse"] = "Discourse"; -$a->strings["Diaspora Connector"] = "Diaspora Connector"; -$a->strings["GNU Social Connector"] = "GNU Social Connector"; -$a->strings["ActivityPub"] = "ActivityPub"; -$a->strings["pnut"] = "pnut"; -$a->strings["%s (via %s)"] = "%s (через %s)"; -$a->strings["General Features"] = "Основные возможности"; -$a->strings["Photo Location"] = "Место фотографирования"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте."; -$a->strings["Export Public Calendar"] = "Экспортировать публичный календарь"; -$a->strings["Ability for visitors to download the public calendar"] = "Возможность скачивать публичный календарь посетителями"; -$a->strings["Trending Tags"] = "Популярные тэги"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Показать облако популярных тэгов на странице публичных записей сервера"; -$a->strings["Post Composition Features"] = "Составление сообщений"; -$a->strings["Auto-mention Forums"] = "Автоматически отмечать форумы"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Добавлять/удалять упоминание, когда страница форума выбрана/убрана в списке получателей."; -$a->strings["Explicit Mentions"] = "Явные отметки"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Вставлять отметки пользователей в поле комментариев, чтобы иметь ручной контроль над тем, кто будет упомянут в ответе."; -$a->strings["Network Sidebar"] = "Панель Сеть"; -$a->strings["Archives"] = "Архивы"; -$a->strings["Ability to select posts by date ranges"] = "Возможность выбора записей по диапазону дат"; -$a->strings["Protocol Filter"] = "Фильтр протоколов"; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "Включить возможность фильтрации записей по протоколам на панели Сеть"; -$a->strings["Network Tabs"] = "Сетевые вкладки"; -$a->strings["Network New Tab"] = "Новая вкладка сеть"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)"; -$a->strings["Network Shared Links Tab"] = "Вкладка shared ссылок сети"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Включить вкладку для отображения только сообщений сети со ссылками на них"; -$a->strings["Post/Comment Tools"] = "Инструменты записей/комментариев"; -$a->strings["Post Categories"] = "Категории записей"; -$a->strings["Add categories to your posts"] = "Добавить категории для ваших записей"; -$a->strings["Advanced Profile Settings"] = "Расширенные настройки профиля"; -$a->strings["List Forums"] = "Список форумов"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Показывать посетителям публичные форумы на расширенной странице профиля."; -$a->strings["Tag Cloud"] = "Облако тэгов"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Показывать ваше личное облако тэгов в вашем профиле"; -$a->strings["Display Membership Date"] = "Показывать дату регистрации"; -$a->strings["Display membership date in profile"] = "Дата вашей регистрации будет отображаться в вашем профиле"; -$a->strings["Forums"] = "Форумы"; -$a->strings["External link to forum"] = "Внешняя ссылка на форум"; -$a->strings["show more"] = "показать больше"; -$a->strings["Nothing new here"] = "Ничего нового здесь"; -$a->strings["Go back"] = "Назад"; -$a->strings["Clear notifications"] = "Стереть уведомления"; -$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент"; -$a->strings["Logout"] = "Выход"; -$a->strings["End this session"] = "Завершить эту сессию"; -$a->strings["Login"] = "Вход"; -$a->strings["Sign in"] = "Вход"; -$a->strings["Status"] = "Записи"; -$a->strings["Your posts and conversations"] = "Ваши записи и диалоги"; -$a->strings["Profile"] = "Информация"; -$a->strings["Your profile page"] = "Информация о вас"; -$a->strings["Your photos"] = "Ваши фотографии"; -$a->strings["Videos"] = "Видео"; -$a->strings["Your videos"] = "Ваши видео"; -$a->strings["Your events"] = "Ваши события"; -$a->strings["Personal notes"] = "Личные заметки"; -$a->strings["Your personal notes"] = "Ваши личные заметки"; -$a->strings["Home"] = "Мой профиль"; -$a->strings["Home Page"] = "Главная страница"; -$a->strings["Register"] = "Регистрация"; -$a->strings["Create an account"] = "Создать аккаунт"; -$a->strings["Help"] = "Помощь"; -$a->strings["Help and documentation"] = "Помощь и документация"; -$a->strings["Apps"] = "Приложения"; -$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры"; -$a->strings["Search"] = "Поиск"; -$a->strings["Search site content"] = "Поиск по сайту"; -$a->strings["Full Text"] = "Контент"; -$a->strings["Tags"] = "Тэги"; -$a->strings["Contacts"] = "Контакты"; -$a->strings["Community"] = "Сообщество"; -$a->strings["Conversations on this and other servers"] = "Диалоги на этом и других серверах"; -$a->strings["Events and Calendar"] = "Календарь и события"; -$a->strings["Directory"] = "Каталог"; -$a->strings["People directory"] = "Каталог участников"; -$a->strings["Information"] = "Информация"; -$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica"; -$a->strings["Terms of Service"] = "Условия оказания услуг"; -$a->strings["Terms of Service of this Friendica instance"] = "Условия оказания услуг для этого узла Friendica"; -$a->strings["Network"] = "Новости"; -$a->strings["Conversations from your friends"] = "Сообщения ваших друзей"; -$a->strings["Introductions"] = "Запросы"; -$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; -$a->strings["Notifications"] = "Уведомления"; -$a->strings["See all notifications"] = "Посмотреть все уведомления"; -$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные"; -$a->strings["Private mail"] = "Личная почта"; -$a->strings["Inbox"] = "Входящие"; -$a->strings["Outbox"] = "Исходящие"; -$a->strings["Accounts"] = "Учётные записи"; -$a->strings["Manage other pages"] = "Управление другими страницами"; -$a->strings["Settings"] = "Настройки"; -$a->strings["Account settings"] = "Настройки аккаунта"; -$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; -$a->strings["Admin"] = "Администратор"; -$a->strings["Site setup and configuration"] = "Конфигурация сайта"; -$a->strings["Navigation"] = "Навигация"; -$a->strings["Site map"] = "Карта сайта"; -$a->strings["Embedding disabled"] = "Встраивание отключено"; -$a->strings["Embedded content"] = "Встроенное содержание"; -$a->strings["prev"] = "пред."; -$a->strings["last"] = "последний"; -$a->strings["Image/photo"] = "Изображение / Фото"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть"; -$a->strings["$1 wrote:"] = "$1 написал:"; -$a->strings["Encrypted content"] = "Зашифрованный контент"; -$a->strings["Invalid source protocol"] = "Неправильный протокол источника"; -$a->strings["Invalid link protocol"] = "Неправильная протокольная ссылка"; -$a->strings["Loading more entries..."] = "Загружаю больше сообщений..."; -$a->strings["The end"] = "Конец"; -$a->strings["Follow"] = "Подписаться"; -$a->strings["Export"] = "Экспорт"; -$a->strings["Export calendar as ical"] = "Экспортировать календарь в формат ical"; -$a->strings["Export calendar as csv"] = "Экспортировать календарь в формат csv"; -$a->strings["No contacts"] = "Нет контактов"; -$a->strings["%d Contact"] = [ - 0 => "%d контакт", - 1 => "%d контактов", - 2 => "%d контактов", - 3 => "%d контактов", -]; -$a->strings["View Contacts"] = "Просмотр контактов"; -$a->strings["Remove term"] = "Удалить элемент"; -$a->strings["Saved Searches"] = "запомненные поиски"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "Популярные тэги (за %d час)", - 1 => "Популярные тэги (за %d часа)", - 2 => "Популярные тэги (за %d часов)", - 3 => "Популярные тэги (за %d часов)", -]; -$a->strings["More Trending Tags"] = "Больше популярных тэгов"; -$a->strings["Add New Contact"] = "Добавить контакт"; -$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = [ - 0 => "%d приглашение доступно", - 1 => "%d приглашений доступно", - 2 => "%d приглашений доступно", - 3 => "%d приглашений доступно", -]; -$a->strings["Find People"] = "Поиск людей"; -$a->strings["Enter name or interest"] = "Введите имя или интерес"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка"; -$a->strings["Find"] = "Найти"; -$a->strings["Similar Interests"] = "Похожие интересы"; -$a->strings["Random Profile"] = "Случайный профиль"; -$a->strings["Invite Friends"] = "Пригласить друзей"; -$a->strings["Global Directory"] = "Глобальный каталог"; -$a->strings["Local Directory"] = "Локальный каталог"; -$a->strings["Groups"] = "Группы"; -$a->strings["Everyone"] = "Все"; -$a->strings["Following"] = "Подписчики"; -$a->strings["Mutual friends"] = "Взаимные друзья"; -$a->strings["Relationships"] = "Отношения"; -$a->strings["All Contacts"] = "Все контакты"; -$a->strings["Protocols"] = "Протоколы"; -$a->strings["All Protocols"] = "Все протоколы"; -$a->strings["Saved Folders"] = "Сохранённые папки"; -$a->strings["Everything"] = "Всё"; -$a->strings["Categories"] = "Категории"; -$a->strings["%d contact in common"] = [ - 0 => "%d Контакт", - 1 => "%d Контактов", - 2 => "%d Контактов", - 3 => "%d Контактов", -]; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "В MyISAM или InnoDB нет таблиц в формате Antelope."; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nОшибка %d возникла при обновлении базы данных:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Ошибки, возникшие при применении изменений базы данных: "; +$a->strings["Another database update is currently running."] = "Другая операция обновления базы данных уже запущена."; +$a->strings["%s: Database update"] = "%s: Обновление базы данных"; +$a->strings["%s: updating %s table."] = "%s: обновляется %s таблица."; +$a->strings["Database error %d \"%s\" at \"%s\""] = "Ошибка базы данных %d \"%s\" в \"%s\""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = "Friendica не может отобразить эту страницу в данный момент, пожалуйста, свяжитесь с администратором."; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tРазработчики Френдики недавно выпустили обновление %s,\n\t\t\t\tно при установке что-то пошло не так.\n\t\t\t\tЭто нужно исправить в ближайшее время и у меня не получается сделать это самостоятельно. Пожалуйста, свяжитесь с разработчиками Френдики, если вы не можете мне помочь сами. База данных может быть повреждена."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = "[Friendica Notify] Обновление базы данных"; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tБаза данных Френдики была успешно обновлена с версии %s на %s."; $a->strings["Yourself"] = "Вы"; +$a->strings["Followers"] = "Читатели"; +$a->strings["Mutuals"] = "Взаимные"; $a->strings["Post to Email"] = "Отправить на Email"; $a->strings["Public"] = "Публично"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "Это будет показано всем вашим подписчикам и так же будет доступно в общей ленте и по прямой ссылке."; @@ -913,7 +786,7 @@ $a->strings["The database configuration file \"config/local.config.php\" could n $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\"."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Если у вас нет доступа к командной строке PHP на вашем сервере, вы не сможете использовать фоновые задания. Посмотрите 'Настройка фоновых заданий'"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; $a->strings["PHP executable path"] = "PHP executable path"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."; $a->strings["Command line PHP"] = "Command line PHP"; @@ -1016,11 +889,6 @@ $a->strings["finger"] = "указатель"; $a->strings["fingered"] = "пощупали"; $a->strings["rebuff"] = "ребаф"; $a->strings["rebuffed"] = "ребафнут"; -$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tРазработчики Френдики недавно выпустили обновление %s,\n\t\t\t\tно при установке что-то пошло не так.\n\t\t\t\tЭто нужно исправить в ближайшее время и у меня не получается сделать это самостоятельно. Пожалуйста, свяжитесь с разработчиками Френдики, если вы не можете мне помочь сами. База данных может быть повреждена."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = "[Friendica Notify] Обновление базы данных"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tБаза данных Френдики была успешно обновлена с версии %s на %s."; $a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"; $a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!"; @@ -1033,11 +901,108 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "Ошибка создания профиля пользователя"; $a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "В MyISAM или InnoDB нет таблиц в формате Antelope."; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nОшибка %d возникла при обновлении базы данных:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Ошибки, возникшие при применении изменений базы данных: "; -$a->strings["%s: Database update"] = "%s: Обновление базы данных"; -$a->strings["%s: updating %s table."] = "%s: обновляется %s таблица."; +$a->strings["Legacy module file not found: %s"] = "Legacy-модуль не найден: %s"; +$a->strings["(no subject)"] = "(без темы)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica."; +$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."; +$a->strings["%s posted an update."] = "%s отправил/а/ обновление."; +$a->strings["This entry was edited"] = "Эта запись была отредактирована"; +$a->strings["Private Message"] = "Личное сообщение"; +$a->strings["pinned item"] = "закреплённая запись"; +$a->strings["Delete locally"] = "Удалить для себя"; +$a->strings["Delete globally"] = "Удалить везде"; +$a->strings["Remove locally"] = "Убрать для себя"; +$a->strings["save to folder"] = "сохранить в папке"; +$a->strings["I will attend"] = "Я буду"; +$a->strings["I will not attend"] = "Меня не будет"; +$a->strings["I might attend"] = "Возможно"; +$a->strings["ignore thread"] = "игнорировать тему"; +$a->strings["unignore thread"] = "не игнорировать тему"; +$a->strings["toggle ignore status"] = "изменить статус игнорирования"; +$a->strings["pin"] = "Закрепить"; +$a->strings["unpin"] = "Открепить"; +$a->strings["toggle pin status"] = "закрепить/открепить"; +$a->strings["pinned"] = "закреплено"; +$a->strings["add star"] = "пометить"; +$a->strings["remove star"] = "убрать метку"; +$a->strings["toggle star status"] = "переключить статус"; +$a->strings["starred"] = "помечено"; +$a->strings["add tag"] = "добавить ключевое слово (тег)"; +$a->strings["like"] = "нравится"; +$a->strings["dislike"] = "не нравится"; +$a->strings["Share this"] = "Поделитесь этим"; +$a->strings["share"] = "поделиться"; +$a->strings["%s (Received %s)"] = "%s (Получено %s)"; +$a->strings["Comment this item on your system"] = ""; +$a->strings["remote comment"] = ""; +$a->strings["Pushed"] = ""; +$a->strings["Pulled"] = ""; +$a->strings["to"] = "к"; +$a->strings["via"] = "через"; +$a->strings["Wall-to-Wall"] = "Стена-на-Стену"; +$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:"; +$a->strings["Reply to %s"] = "Ответ %s"; +$a->strings["More"] = "Ещё"; +$a->strings["Notifier task is pending"] = "Постановка в очередь"; +$a->strings["Delivery to remote servers is pending"] = "Ожидается отправка адресатам"; +$a->strings["Delivery to remote servers is underway"] = "Отправка адресатам в процессе"; +$a->strings["Delivery to remote servers is mostly done"] = "Отправка адресатам почти завершилась"; +$a->strings["Delivery to remote servers is done"] = "Отправка адресатам завершена"; +$a->strings["%d comment"] = [ + 0 => "%d комментарий", + 1 => "%d комментариев", + 2 => "%d комментариев", + 3 => "%d комментариев", +]; +$a->strings["Show more"] = "Показать больше"; +$a->strings["Show fewer"] = "Показать меньше"; +$a->strings["comment"] = [ + 0 => "", + 1 => "", + 2 => "комментарий", + 3 => "комментарий", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Не удалось найти не архивированных контактов для этой URL (%s)"; +$a->strings["The contact entries have been archived"] = "Записи этого контакта были архивированы."; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Не удалось найти контактных данных по этой ссылке (%s)"; +$a->strings["The contact has been blocked from the node"] = "Контакт был заблокирован на узле."; +$a->strings["Enter new password: "] = "Введите новый пароль:"; +$a->strings["Enter user name: "] = "Введите имя пользователя:"; +$a->strings["Enter user nickname: "] = "Введите ник пользователя:"; +$a->strings["Enter user email address: "] = "Введите адрес почты пользователя:"; +$a->strings["Enter a language (optional): "] = "Введите язык (не обязательно):"; +$a->strings["User is not pending."] = "Пользователь не в ожидании"; +$a->strings["User has already been marked for deletion."] = "Пользователь уже помечен для удаления."; +$a->strings["Type \"yes\" to delete %s"] = "Введите \"yes\" для удаления %s"; +$a->strings["Deletion aborted."] = "Удаление отменено."; +$a->strings["Post update version number has been set to %s."] = "Номер версии обновления записи установлен на %s."; +$a->strings["Check for pending update actions."] = "Проверить наличие отложенных действий."; +$a->strings["Done."] = "Готово."; +$a->strings["Execute pending post updates."] = "Выполнить обновления записей из очереди."; +$a->strings["All pending post updates are done."] = "Все операции по обновлению записей выполнены."; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "Родной город:"; +$a->strings["Marital Status:"] = "Семейное положение:"; +$a->strings["With:"] = "Вместе:"; +$a->strings["Since:"] = "С:"; +$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:"; +$a->strings["Political Views:"] = "Политические взгляды:"; +$a->strings["Religious Views:"] = "Религиозные взгляды:"; +$a->strings["Likes:"] = "Нравится:"; +$a->strings["Dislikes:"] = "Не нравится:"; +$a->strings["Title/Description:"] = "Заголовок / Описание:"; +$a->strings["Summary"] = "Резюме"; +$a->strings["Musical interests"] = "Музыкальные интересы"; +$a->strings["Books, literature"] = "Книги, литература"; +$a->strings["Television"] = "Телевидение"; +$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; +$a->strings["Hobbies/Interests"] = "Хобби / Интересы"; +$a->strings["Love/romance"] = "Любовь / романтика"; +$a->strings["Work/employment"] = "Работа / занятость"; +$a->strings["School/education"] = "Школа / образование"; +$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети"; +$a->strings["No system theme config value set."] = "Настройки системной темы не установлены."; $a->strings["Friend Suggestion"] = "Предложение в друзья"; $a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение"; $a->strings["New Follower"] = "Новый фолловер"; @@ -1049,192 +1014,550 @@ $a->strings["%s is attending %s's event"] = "%s будет присутство $a->strings["%s is not attending %s's event"] = "%s не будет присутствовать на событии %s"; $a->strings["%s may attending %s's event"] = "%s возможно будет присутствовать на событии %s"; $a->strings["%s is now friends with %s"] = "%s теперь друзья с %s"; -$a->strings["Legacy module file not found: %s"] = "Legacy-модуль не найден: %s"; -$a->strings["UnFollow"] = "Отписаться"; -$a->strings["Drop Contact"] = "Удалить контакт"; +$a->strings["Network Notifications"] = "Уведомления сети"; +$a->strings["System Notifications"] = "Уведомления системы"; +$a->strings["Personal Notifications"] = "Личные уведомления"; +$a->strings["Home Notifications"] = "Уведомления"; +$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s."; +$a->strings["Show unread"] = "Показать непрочитанные"; +$a->strings["Show all"] = "Показать все"; +$a->strings["You must be logged in to show this page."] = "Вам нужно войти, чтобы увидеть эту страницу."; +$a->strings["Notifications"] = "Уведомления"; +$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; +$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; +$a->strings["Notification type:"] = "Тип уведомления:"; +$a->strings["Suggested by:"] = ""; +$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других"; $a->strings["Approve"] = "Одобрить"; -$a->strings["Organisation"] = "Организация"; -$a->strings["News"] = "Новости"; -$a->strings["Forum"] = "Форум"; -$a->strings["Connect URL missing."] = "Connect-URL отсутствует."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети."; -$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы."; -$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации."; -$a->strings["An author or name was not found."] = "Автор или имя не найдены."; -$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Не получается совместить этот адрес с известным протоколом или контактом электронной почты."; -$a->strings["Use mailto: in front of address to force email check."] = "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."; -$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию."; +$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; +$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Принимая %s как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него."; +$a->strings["Friend"] = "Друг"; +$a->strings["Subscriber"] = "Подписчик"; +$a->strings["About:"] = "О себе:"; +$a->strings["Network:"] = "Сеть:"; +$a->strings["No introductions."] = "Запросов нет."; +$a->strings["A Decentralized Social Network"] = "Децентрализованная социальная сеть"; +$a->strings["Logged out."] = "Выход из системы."; +$a->strings["Invalid code, please retry."] = "Неправильный код, попробуйте ещё."; +$a->strings["Two-factor authentication"] = "Двухфакторная аутентификация"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = ""; +$a->strings["Please enter a code from your authentication app"] = "Пожалуйста, введите код из вашего приложения для аутентификации"; +$a->strings["Verify code and complete login"] = ""; +$a->strings["Remaining recovery codes: %d"] = "Осталось кодов для восстановления: %d"; +$a->strings["Two-factor recovery"] = "Двухфакторное восстановление доступа"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = ""; +$a->strings["Please enter a recovery code"] = "Пожалуйста, введите код восстановления"; +$a->strings["Submit recovery code and complete login"] = "Отправить код восстановления и завершить вход"; +$a->strings["Create a New Account"] = "Создать новый аккаунт"; +$a->strings["Register"] = "Регистрация"; +$a->strings["Your OpenID: "] = "Ваш OpenID: "; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = ""; +$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: "; +$a->strings["Logout"] = "Выход"; +$a->strings["Login"] = "Вход"; +$a->strings["Password: "] = "Пароль: "; +$a->strings["Remember me"] = "Запомнить"; +$a->strings["Forgot your password?"] = "Забыли пароль?"; +$a->strings["Website Terms of Service"] = "Правила сайта"; +$a->strings["terms of service"] = "правила"; +$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера"; +$a->strings["privacy policy"] = "политика конфиденциальности"; +$a->strings["OpenID protocol error. No ID returned"] = ""; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = ""; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = ""; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Начало:"; -$a->strings["Finishes:"] = "Окончание:"; -$a->strings["all-day"] = "Весь день"; -$a->strings["Sept"] = "Сен"; -$a->strings["No events to display"] = "Нет событий для показа"; -$a->strings["l, F j"] = "l, j F"; -$a->strings["Edit event"] = "Редактировать мероприятие"; -$a->strings["Duplicate event"] = "Дубликат события"; -$a->strings["Delete event"] = "Удалить событие"; -$a->strings["link to source"] = "ссылка на сообщение"; -$a->strings["D g:i A"] = "D g:i A"; -$a->strings["g:i A"] = "g:i A"; -$a->strings["Show map"] = "Показать карту"; -$a->strings["Hide map"] = "Скрыть карту"; -$a->strings["%s's birthday"] = "день рождения %s"; -$a->strings["Happy Birthday %s"] = "С днём рождения %s"; -$a->strings["Item filed"] = "Элемент заполнен"; -$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."] = "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."; -$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов"; -$a->strings["Everybody"] = "Каждый"; -$a->strings["edit"] = "редактировать"; -$a->strings["add"] = "добавить"; -$a->strings["Edit group"] = "Редактировать группу"; -$a->strings["Contacts not in any group"] = "Контакты не состоят в группе"; -$a->strings["Create a new group"] = "Создать новую группу"; -$a->strings["Group Name: "] = "Название группы: "; -$a->strings["Edit groups"] = "Редактировать группы"; -$a->strings["activity"] = "активность"; -$a->strings["comment"] = [ +$a->strings["Time Conversion"] = "История общения"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."; +$a->strings["UTC time: %s"] = "UTC время: %s"; +$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s"; +$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s"; +$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:"; +$a->strings["Source input"] = ""; +$a->strings["BBCode::toPlaintext"] = ""; +$a->strings["BBCode::convert (raw HTML)"] = ""; +$a->strings["BBCode::convert"] = ""; +$a->strings["BBCode::convert => HTML::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; +$a->strings["Item Body"] = ""; +$a->strings["Item Tags"] = ""; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = ""; +$a->strings["Source input (Markdown)"] = ""; +$a->strings["Markdown::convert (raw HTML)"] = ""; +$a->strings["Markdown::convert"] = ""; +$a->strings["Markdown::toBBCode"] = ""; +$a->strings["Raw HTML input"] = ""; +$a->strings["HTML Input"] = ""; +$a->strings["HTML::toBBCode"] = ""; +$a->strings["HTML::toBBCode => BBCode::convert"] = ""; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = ""; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; +$a->strings["HTML::toMarkdown"] = ""; +$a->strings["HTML::toPlaintext"] = ""; +$a->strings["HTML::toPlaintext (compact)"] = ""; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = ""; +$a->strings["BBCode"] = ""; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Markdown"] = ""; +$a->strings["HTML"] = ""; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = ""; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = "Вы должны быть залогинены для использования этого модуля"; +$a->strings["Source URL"] = "Исходный URL"; +$a->strings["Lookup address"] = ""; +$a->strings["%s's timeline"] = "Лента %s"; +$a->strings["%s's posts"] = "Записи %s"; +$a->strings["%s's comments"] = "Комментарии %s"; +$a->strings["No contacts."] = "Нет контактов."; +$a->strings["Follower (%s)"] = [ 0 => "", 1 => "", - 2 => "комментарий", - 3 => "комментарий", + 2 => "", + 3 => "", +]; +$a->strings["Following (%s)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Mutual friend (%s)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Contact (%s)"] = [ + 0 => "Контакт (%s)", + 1 => "Контакты (%s)", + 2 => "Контакты (%s)", + 3 => "Контакты (%s)", +]; +$a->strings["All contacts"] = "Все контакты"; +$a->strings["Following"] = "Подписчики"; +$a->strings["Mutual friends"] = "Взаимные друзья"; +$a->strings["You're currently viewing your profile as %s Cancel"] = "Сейчас вы видите свой профиль как %s Отмена"; +$a->strings["Member since:"] = "Зарегистрирован с:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "День рождения:"; +$a->strings["Age: "] = "Возраст: "; +$a->strings["%d year old"] = [ + 0 => "%dгод", + 1 => "%dгода", + 2 => "%dлет", + 3 => "%dлет", ]; -$a->strings["post"] = "сообщение"; -$a->strings["Content warning: %s"] = "Предупреждение о контенте: %s"; -$a->strings["bytes"] = "байт"; -$a->strings["View on separate page"] = "Посмотреть в отдельной вкладке"; -$a->strings["view on separate page"] = "посмотреть на отдельной вкладке"; -$a->strings["[no subject]"] = "[без темы]"; -$a->strings["Edit profile"] = "Редактировать профиль"; -$a->strings["Change profile photo"] = "Изменить фото профиля"; -$a->strings["Homepage:"] = "Домашняя страничка:"; -$a->strings["About:"] = "О себе:"; $a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Домашняя страничка:"; +$a->strings["Forums:"] = "Форумы:"; +$a->strings["View profile as:"] = "Посмотреть профиль как:"; +$a->strings["Edit profile"] = "Редактировать профиль"; +$a->strings["View as"] = "Посмотреть как"; +$a->strings["Only parent users can create additional accounts."] = "Только основные пользователи могут создавать дополнительные учётные записи."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = ""; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."; +$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):"; +$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?"; +$a->strings["Note for the admin"] = "Сообщение для администратора"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\""; +$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению."; +$a->strings["Your invitation code: "] = "Ваш код приглашения:"; +$a->strings["Registration"] = "Регистрация"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Ваше полное имя (например, Иван Иванов):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Ваш адрес электронной почты: (Информация для входа будет отправлена туда, это должен быть существующий адрес.)"; +$a->strings["Please repeat your e-mail address:"] = "Пожалуйста, введите адрес электронной почты ещё раз:"; +$a->strings["Leave empty for an auto generated password."] = "Оставьте пустым для автоматической генерации пароля."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = ""; +$a->strings["Choose a nickname: "] = "Выберите псевдоним: "; +$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica"; +$a->strings["Terms of Service"] = "Условия оказания услуг"; +$a->strings["Note: This node explicitly contains adult content"] = "Внимание: на этом сервере размещаются материалы для взрослых."; +$a->strings["Parent Password:"] = "Родительский пароль:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; +$a->strings["Password doesn't match."] = "Пароль не совпадает"; +$a->strings["Please enter your password."] = "Пожалуйста, введите ваш пароль."; +$a->strings["You have entered too much information."] = "Вы ввели слишком много информации."; +$a->strings["Please enter the identical mail address in the second field."] = ""; +$a->strings["The additional account was created."] = ""; +$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Ошибка отправки письма. Вот ваши учетные данные:
логин: %s
пароль: %s

Вы сможете изменить пароль после входа."; +$a->strings["Registration successful."] = "Регистрация успешна."; +$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; +$a->strings["You have to leave a request note for the admin."] = ""; +$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта."; +$a->strings["Bad Request"] = "Ошибочный запрос"; +$a->strings["Unauthorized"] = "Нет авторизации"; +$a->strings["Forbidden"] = "Запрещено"; +$a->strings["Not Found"] = "Не найдено"; +$a->strings["Internal Server Error"] = "Внутренняя ошибка сервера"; +$a->strings["Service Unavailable"] = "Служба недоступна"; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; +$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; +$a->strings["The requested resource could not be found but may be available in the future."] = ""; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; +$a->strings["Go back"] = "Назад"; +$a->strings["Welcome to %s"] = "Добро пожаловать на %s!"; +$a->strings["No friends to display."] = "Нет друзей."; +$a->strings["Suggested contact not found."] = ""; +$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; +$a->strings["Suggest Friends"] = "Предложить друзей"; +$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; +$a->strings["Credits"] = "Признательность"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["System check"] = "Проверить систему"; +$a->strings["Check again"] = "Проверить еще раз"; +$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться"; +$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"; +$a->strings["Base settings"] = ""; +$a->strings["SSL link policy"] = "Политика SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL"; +$a->strings["Host name"] = "Имя хоста"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = ""; +$a->strings["Base path to installation"] = "Путь для установки"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; +$a->strings["Sub path of the URL"] = ""; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = ""; +$a->strings["Database connection"] = "Подключение к базе данных"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."; +$a->strings["Database Server Name"] = "Имя сервера базы данных"; +$a->strings["Database Login Name"] = "Логин базы данных"; +$a->strings["Database Login Password"] = "Пароль базы данных"; +$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым"; +$a->strings["Database Name"] = "Имя базы данных"; +$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; +$a->strings["Site settings"] = "Настройки сайта"; +$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."; +$a->strings["System Language:"] = "Язык системы:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем."; +$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; +$a->strings["Installation finished"] = "Установка завершена"; +$a->strings["

What next

"] = "

Что далее

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "ВАЖНО: Вам нужно будет [вручную] настроить фоновое задание в планировщике."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; +$a->strings["- select -"] = "- выбрать -"; +$a->strings["Item was not removed"] = "Запись не была удалена"; +$a->strings["Item was not deleted"] = "Запись не была удалена"; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна."; +$a->strings["Visible to:"] = "Кто может видеть:"; +$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "Выберите учётную запись:"; +$a->strings["Local Community"] = "Местное сообщество"; +$a->strings["Posts from local users on this server"] = "Записи пользователей с этого сервера"; +$a->strings["Global Community"] = "Глобальное сообщество"; +$a->strings["Posts from users of the whole federated network"] = "Записи пользователей со всей федеративной сети"; +$a->strings["No results."] = "Нет результатов."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера."; +$a->strings["Community option not available."] = ""; +$a->strings["Not available."] = "Недоступно."; +$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica"; +$a->strings["New Member Checklist"] = "Новый контрольный список участников"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."; +$a->strings["Getting Started"] = "Начало работы"; +$a->strings["Friendica Walk-Through"] = "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."] = "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."; +$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."; +$a->strings["Upload Profile Photo"] = "Загрузить фото профиля"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."; +$a->strings["Edit Your Profile"] = "Редактировать профиль"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."; +$a->strings["Profile Keywords"] = "Ключевые слова профиля"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; +$a->strings["Connecting"] = "Подключение"; +$a->strings["Importing Emails"] = "Импортирование 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"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; +$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт."; +$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Подписаться на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."; +$a->strings["Finding New People"] = "Поиск людей"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."; +$a->strings["Groups"] = "Группы"; +$a->strings["Group Your Contacts"] = "Группа \"ваши контакты\""; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."; +$a->strings["Why Aren't My Posts Public?"] = "Почему мои записи не публичные?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."; +$a->strings["Getting Help"] = "Получить помощь"; +$a->strings["Go to the Help Section"] = "Перейти в раздел справки"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса."; +$a->strings["This page is missing a url parameter."] = ""; +$a->strings["The post was created"] = "Запись создана"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "Информация"; +$a->strings["Overview"] = "Общая информация"; +$a->strings["Federation Statistics"] = "Статистика федерации"; +$a->strings["Configuration"] = "Конфигурация"; +$a->strings["Site"] = "Сайт"; +$a->strings["Users"] = "Пользователи"; +$a->strings["Addons"] = "Дополнения"; +$a->strings["Themes"] = "Темы"; +$a->strings["Additional features"] = "Дополнительные возможности"; +$a->strings["Database"] = "База данных"; +$a->strings["DB updates"] = "Обновление БД"; +$a->strings["Inspect Deferred Workers"] = "Посмотреть отложенные задания"; +$a->strings["Inspect worker Queue"] = "Посмотреть очередь заданий"; +$a->strings["Tools"] = "Инструменты"; +$a->strings["Contact Blocklist"] = "Чёрный список контактов"; +$a->strings["Server Blocklist"] = "Чёрный список серверов"; +$a->strings["Delete Item"] = "Удалить запись"; +$a->strings["Logs"] = "Журналы"; +$a->strings["View Logs"] = "Просмотр логов"; +$a->strings["Diagnostics"] = "Диагностика"; +$a->strings["PHP Info"] = ""; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Item Source"] = ""; +$a->strings["Babel"] = ""; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "Администратор"; +$a->strings["Addon Features"] = ""; +$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения"; +$a->strings["%d contact edited."] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; +$a->strings["Follow"] = "Подписаться"; $a->strings["Unfollow"] = "Отписаться"; -$a->strings["Atom feed"] = "Фид Atom"; -$a->strings["Network:"] = "Сеть:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[сегодня]"; -$a->strings["Birthday Reminders"] = "Напоминания о днях рождения"; -$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:"; -$a->strings["[No description]"] = "[без описания]"; -$a->strings["Event Reminders"] = "Напоминания о мероприятиях"; -$a->strings["Upcoming events the next 7 days:"] = "События на ближайшие 7 дней:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s приветствует %2\$s"; -$a->strings["Database storage failed to update %s"] = "Хранилищу БД не удалось обновить %s"; -$a->strings["Database storage failed to insert data"] = "Хранилищу БД не удалось записать данные"; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Файловому хранилищу не удалось создать \"%s\". Проверьте, есть ли у вас разрешения на запись."; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Файловому хранилищу не удалось записать данные в \"%s\". Проверьте, есть ли у вас разрешения на запись."; -$a->strings["Storage base path"] = "Корневой каталог хранилища"; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Каталог, куда сохраняются загруженные файлы. Для максимальной безопасности этот каталог должен быть размещён вне каталогов веб-сервера."; -$a->strings["Enter a valid existing folder"] = "Введите путь к существующему каталогу"; -$a->strings["Login failed"] = "Вход не удался"; -$a->strings["Not enough information to authenticate"] = "Недостаточно информации для входа"; -$a->strings["Password can't be empty"] = "Пароль не может быть пустым"; -$a->strings["Empty passwords are not allowed."] = "Пароль не должен быть пустым."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Пароль не может содержать символы с акцентами, пробелы или двоеточия (:)"; -$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен."; -$a->strings["An invitation is required."] = "Требуется приглашение."; -$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; -$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; -$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; -$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) и system.username_max_length (%s) противоречат друг другу, меняем их местами."; -$a->strings["Username should be at least %s character."] = [ - 0 => "Имя пользователя должно быть хотя бы %s символ.", - 1 => "Имя пользователя должно быть хотя бы %s символа.", - 2 => "Имя пользователя должно быть хотя бы %s символов.", - 3 => "Имя пользователя должно быть хотя бы %s символов.", +$a->strings["Contact not found"] = "Контакт не найден"; +$a->strings["Contact has been blocked"] = "Контакт заблокирован"; +$a->strings["Contact has been unblocked"] = "Контакт разблокирован"; +$a->strings["Contact has been ignored"] = "Контакт проигнорирован"; +$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование"; +$a->strings["Contact has been archived"] = "Контакт заархивирован"; +$a->strings["Contact has been unarchived"] = "Контакт разархивирован"; +$a->strings["Drop contact"] = "Удалить контакт"; +$a->strings["Do you really want to delete this contact?"] = "Вы действительно хотите удалить этот контакт?"; +$a->strings["Contact has been removed."] = "Контакт удален."; +$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s"; +$a->strings["You are sharing with %s"] = "Вы делитесь с %s"; +$a->strings["%s is sharing with you"] = "%s делится с Вами"; +$a->strings["Private communications are not available for this contact."] = "Приватные коммуникации недоступны для этого контакта."; +$a->strings["Never"] = "Никогда"; +$a->strings["(Update was successful)"] = "(Обновление было успешно)"; +$a->strings["(Update was not successful)"] = "(Обновление не удалось)"; +$a->strings["Suggest friends"] = "Предложить друзей"; +$a->strings["Network type: %s"] = "Сеть: %s"; +$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!"; +$a->strings["Fetch further information for feeds"] = "Получить подробную информацию о фидах"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Извлекать картинки предпросмотра, заголовок и вступление из записи ленты. Вы можете включить эту опцию, если лента не содержит много текста. Ключевые слова берутся из метаданных записи и публикуются как теги."; +$a->strings["Disabled"] = "Отключенный"; +$a->strings["Fetch information"] = "Получить информацию"; +$a->strings["Fetch keywords"] = "Получить ключевые слова"; +$a->strings["Fetch information and keywords"] = "Получить информацию и ключевые слова"; +$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки"; +$a->strings["Contact Settings"] = "Настройки контакта"; +$a->strings["Contact"] = "Контакт"; +$a->strings["Their personal note"] = "Персональная заметка"; +$a->strings["Edit contact notes"] = "Редактировать заметки контакта"; +$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]"; +$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт"; +$a->strings["Ignore contact"] = "Игнорировать контакт"; +$a->strings["View conversations"] = "Просмотр бесед"; +$a->strings["Last update:"] = "Последнее обновление: "; +$a->strings["Update public posts"] = "Обновить публичные сообщения"; +$a->strings["Update now"] = "Обновить сейчас"; +$a->strings["Unblock"] = "Разблокировать"; +$a->strings["Unignore"] = "Не игнорировать"; +$a->strings["Currently blocked"] = "В настоящее время заблокирован"; +$a->strings["Currently ignored"] = "В настоящее время игнорируется"; +$a->strings["Currently archived"] = "В данный момент архивирован"; +$a->strings["Awaiting connection acknowledge"] = "Ожидаем подтверждения соединения"; +$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["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Actions"] = "Действия"; +$a->strings["All Contacts"] = "Все контакты"; +$a->strings["Show all contacts"] = "Показать все контакты"; +$a->strings["Pending"] = "В ожидании"; +$a->strings["Only show pending contacts"] = "Показать только контакты \"в ожидании\""; +$a->strings["Blocked"] = "Заблокирован"; +$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты"; +$a->strings["Ignored"] = "Игнорирован"; +$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты"; +$a->strings["Archived"] = "Архивированные"; +$a->strings["Only show archived contacts"] = "Показывать только архивные контакты"; +$a->strings["Hidden"] = "Скрытые"; +$a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты"; +$a->strings["Organize your contact groups"] = "Настроить группы контактов"; +$a->strings["Search your contacts"] = "Поиск ваших контактов"; +$a->strings["Results for: %s"] = "Результаты для: %s"; +$a->strings["Archive"] = "Архивировать"; +$a->strings["Unarchive"] = "Разархивировать"; +$a->strings["Batch Actions"] = "Пакетные действия"; +$a->strings["Conversations started by this contact"] = ""; +$a->strings["Posts and Comments"] = "Записи и комментарии"; +$a->strings["Profile Details"] = "Информация о вас"; +$a->strings["View all contacts"] = "Показать все контакты"; +$a->strings["View all common friends"] = "Показать все общие поля"; +$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта"; +$a->strings["Mutual Friendship"] = "Взаимная дружба"; +$a->strings["is a fan of yours"] = "является вашим поклонником"; +$a->strings["you are a fan of"] = "Вы - поклонник"; +$a->strings["Pending outgoing contact request"] = ""; +$a->strings["Pending incoming contact request"] = ""; +$a->strings["Refetch contact data"] = "Обновить данные контакта"; +$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)"; +$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования"; +$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)"; +$a->strings["Delete contact"] = "Удалить контакт"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["Privacy Statement"] = ""; +$a->strings["Help:"] = "Помощь:"; +$a->strings["Method Not Allowed."] = "Метод не разрешён"; +$a->strings["Profile not found"] = "Профиль не найден"; +$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; +$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; +$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."; +$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась."; +$a->strings["%d message sent."] = [ + 0 => "%d сообщение отправлено.", + 1 => "%d сообщений отправлено.", + 2 => "%d сообщений отправлено.", + 3 => "%d сообщений отправлено.", ]; -$a->strings["Username should be at most %s character."] = [ - 0 => "Имя пользователя должно быть не больше %s символа.", - 1 => "Имя пользователя должно быть не больше %s символов", - 2 => "Имя пользователя должно быть не больше %s символов.", - 3 => "Имя пользователя должно быть не больше %s символов.", -]; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя."; -$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; -$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; -$a->strings["The nickname was blocked from registration by the nodes admin."] = "Этот ник был заблокирован для регистрации администратором узла."; -$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Ваш ник может содержать только символы a-z, 0-9 и _."; -$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; -$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; -$a->strings["An error occurred creating your self contact. Please try again."] = "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз."; -$a->strings["Friends"] = "Друзья"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "При создании группы контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tУважаемый(ая) %1\$s,\n\t\t\tадминистратор %2\$s создал для вас учётную запись."; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tДанные для входа в систему:\n\n\t\tМестоположение сайта:\t%1\$s\n\t\tЛогин:\t\t%2\$s\n\t\tПароль:\t\t%3\$s\n\n\t\tВы можете изменить пароль на странице \"Настройки\" после авторизации.\n\n\t\tПожалуйста, уделите время ознакомлению с другими другие настройками аккаунта на этой странице.\n\n\n\t\tВы также можете захотеть добавить немного базовой информации к вашему стандартному профилю\n\t\t(на странице \"Информация\") чтобы другим людям было проще вас найти.\n\n\t\tМы рекомендуем указать ваше полное имя, добавить фотографию,\n\t\tнемного \"ключевых слов\" (очень полезно, чтобы завести новых друзей)\n\t\tи возможно страну вашего проживания; если вы не хотите быть более конкретным.\n\n\t\tМы полностью уважаем ваше право на приватность, поэтому ничего из этого не является обязательным.\n\t\tЕсли же вы новичок и никого не знаете, это может помочь\n\t\tвам завести новых интересных друзей.\n\n\t\tЕсли вы когда-нибудь захотите удалить свой аккаунт, вы можете сделать это перейдя по ссылке %1\$s/removeme\n\n\t\tСпасибо и добро пожаловать в %4\$s."; -$a->strings["Registration details for %s"] = "Подробности регистрации для %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tУважаемый %1\$s,\n\t\t\t\tБлагодарим Вас за регистрацию на %2\$s. Ваш аккаунт ожидает подтверждения администратором.\n\n\t\t\tВаши данные для входа в систему:\n\n\t\t\tМестоположение сайта:\t%3\$s\n\t\t\tЛогин:\t\t%4\$s\n\t\t\tПароль:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Регистрация на %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tУважаемый(ая) %1\$s,\n\t\t\t\tСпасибо за регистрацию на %2\$s. Ваша учётная запись создана.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tДанные для входа:\n\n\t\t\tАдрес сайта:\t%3\$s\n\t\t\tИмя:\t\t%1\$s\n\t\t\tПароль:\t\t%5\$s\n\n\t\t\tВы можете сменить пароль в настройках учётной записи после входа.\n\t\t\t\n\n\t\t\tТакже обратите внимание на другие настройки на этой странице.\n\n\t\t\tВы можете захотеть добавить основную информацию о себе\n\t\t\tна странице \"Профиль\", чтобы другие люди легко вас нашли.\n\n\t\t\tМы рекомендуем указать полное имя и установить фото профиля,\n\t\t\tдобавить ключевые слова для поиска друзей по интересам,\n\t\t\tи, вероятно, страну вашего проживания.\n\n\t\t\tМы уважаем вашу приватность и ничто из вышеуказанного не обязательно.\n\t\t\tЕсли вы новичок и пока никого здесь не знаете, то это поможет\n\t\t\tвам найти новых интересных друзей.\n\n\t\t\tЕсли вы захотите удалить свою учётную запись, то сможете сделать это на %3\$s/removeme\n\n\t\t\tСпасибо и добро пожаловать на %2\$s."; -$a->strings["Addon not found."] = "Дополнение не найдено."; -$a->strings["Addon %s disabled."] = "Дополнение %s отключено."; -$a->strings["Addon %s enabled."] = "Дополнение %s включено."; +$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере 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."] = "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."; +$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."] = "Серверы Френдики взаимосвязаны друг с другом и образуют огромную социальную сеть, которой владеют все её члены. Так же они могут соединяться со многими традиционными социальными сетями."; +$a->strings["To accept this invitation, please visit and register at %s."] = "Чтобы принять это приглашение, пожалуйста зайдите на %s и зарегистрируйтесь."; +$a->strings["Send invitations"] = "Отправить приглашения"; +$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Чтобы узнать больше о проекте Friendica и почему мы считаем это важным, посетите http://friendi.ca"; +$a->strings["People Search - %s"] = "Поиск по людям - %s"; +$a->strings["Forum Search - %s"] = "Поиск по форумам - %s"; $a->strings["Disable"] = "Отключить"; $a->strings["Enable"] = "Включить"; +$a->strings["Theme %s disabled."] = "Тема %s отключена."; +$a->strings["Theme %s successfully enabled."] = "Тема %s успешно включена."; +$a->strings["Theme %s failed to install."] = "Не удалось установить тему %s."; +$a->strings["Screenshot"] = "Скриншот"; $a->strings["Administration"] = "Администрация"; -$a->strings["Addons"] = "Дополнения"; $a->strings["Toggle"] = "Переключить"; $a->strings["Author: "] = "Автор:"; $a->strings["Maintainer: "] = "Программа обслуживания: "; -$a->strings["Addon %s failed to install."] = "Не удалось установить дополнение %s."; -$a->strings["Reload active addons"] = "Перезагрузить активные дополнения"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1\$s и найти больше интересных дополнений в открытой библиотеке на %2\$s"; -$a->strings["%s contact unblocked"] = [ - 0 => "%s контакт разблокирован", - 1 => "%s контакта разблокированы", - 2 => "%s контактов разблокировано", - 3 => "%s контактов разблокировано", +$a->strings["Unknown theme."] = "Неизвестная тема."; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Перезагрузить активные темы"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Ни одной темы не найдено на сервере. Они должны быть размещены в %1\$s"; +$a->strings["[Experimental]"] = "[экспериментально]"; +$a->strings["[Unsupported]"] = "[Неподдерживаемое]"; +$a->strings["Lock feature %s"] = "Заблокировать %s"; +$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями"; +$a->strings["%s user blocked"] = [ + 0 => "%s пользователь заблокирован", + 1 => "%s пользователя заблокировано", + 2 => "%s пользователей заблокировано", + 3 => "%s пользователей заблокировано", ]; -$a->strings["Remote Contact Blocklist"] = "Чёрный список удалённых контактов"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов."; -$a->strings["Block Remote Contact"] = "Заблокировать удалённый контакт"; +$a->strings["%s user unblocked"] = [ + 0 => "%s пользователь разблокирован", + 1 => "%s пользователя разблокировано", + 2 => "%s пользователей разблокировано", + 3 => "%s пользователей разблокировано", +]; +$a->strings["You can't remove yourself"] = "Вы не можете удалить самого себя"; +$a->strings["%s user deleted"] = [ + 0 => "%s человек удален", + 1 => "%s чел. удалено", + 2 => "%s чел. удалено", + 3 => "%s чел. удалено", +]; +$a->strings["%s user approved"] = [ + 0 => "%s пользователь одобрен", + 1 => "%s пользователя одобрено", + 2 => "%s пользователей одобрено", + 3 => "%s пользователей одобрено", +]; +$a->strings["%s registration revoked"] = [ + 0 => "%s регистрация отменена", + 1 => "%s регистрации отменены", + 2 => "%s регистраций отменены", + 3 => "%s регистраций отменены", +]; +$a->strings["User \"%s\" deleted"] = "Пользователь \"%s\" удалён"; +$a->strings["User \"%s\" blocked"] = "Пользователь \"%s\" заблокирован"; +$a->strings["User \"%s\" unblocked"] = "Пользователь \"%s\" разблокирован"; +$a->strings["Account approved."] = "Аккаунт утвержден."; +$a->strings["Registration revoked"] = "Регистрация отменена"; +$a->strings["Private Forum"] = "Закрытый форум"; +$a->strings["Relay"] = "Ретранслятор"; +$a->strings["Email"] = "Эл. почта"; +$a->strings["Register date"] = "Дата регистрации"; +$a->strings["Last login"] = "Последний вход"; +$a->strings["Last public item"] = "Последняя публичная запись"; +$a->strings["Type"] = "Тип"; +$a->strings["Add User"] = "Добавить пользователя"; $a->strings["select all"] = "выбрать все"; -$a->strings["select none"] = "сбросить выбор"; -$a->strings["Unblock"] = "Разблокировать"; -$a->strings["No remote contact is blocked from this node."] = "Для этого узла нет заблокированных контактов."; -$a->strings["Blocked Remote Contacts"] = "Заблокированные контакты"; -$a->strings["Block New Remote Contact"] = "Заблокировать новый контакт"; -$a->strings["Photo"] = "Фото"; -$a->strings["Reason"] = "Причина"; -$a->strings["%s total blocked contact"] = [ - 0 => "%s заблокированный контакт", - 1 => "%s заблокированных контакта", - 2 => "%s заблокированных контактов", - 3 => "%s заблокированных контактов", -]; -$a->strings["URL of the remote contact to block."] = "URL блокируемого контакта."; -$a->strings["Block Reason"] = "Причина блокировки"; -$a->strings["Server domain pattern added to blocklist."] = "Маска адреса сервера добавлена в чёрный список."; -$a->strings["Site blocklist updated."] = "Черный список узлов обновлён."; -$a->strings["Blocked server domain pattern"] = "Маска домена блокируемого сервера"; -$a->strings["Reason for the block"] = "Причина блокировки"; -$a->strings["Delete server domain pattern"] = "Удалить маску домена"; -$a->strings["Check to delete this entry from the blocklist"] = "Отметьте, чтобы удалить эту запись из черного списка"; -$a->strings["Server Domain Pattern Blocklist"] = "Чёрный список доменов"; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "На этой странице можно настроить чёрный список доменов узлов федеративной сети, которые не должны взаимодействовать с вашим узлом. Для каждой записи вы должны предоставить причину блокировки."; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей."; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

Маска домена узла нечувствительна к регистру и представляет собой выражение shell из следующих специальных символов:

\n
    \n\t
  • *: Любые символы в любом количестве
  • \n\t
  • ?: Один любой символ
  • \n\t
  • [<char1><char2>...]: char1 или char2
  • \n
"; -$a->strings["Add new entry to block list"] = "Добавить новую запись в чёрный список"; -$a->strings["Server Domain Pattern"] = "Маска домена узла"; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола."; -$a->strings["Block reason"] = "Причина блокировки"; -$a->strings["The reason why you blocked this server domain pattern."] = "Причина блокировки вами этого домена."; -$a->strings["Add Entry"] = "Добавить запись"; -$a->strings["Save changes to the blocklist"] = "Сохранить изменения чёрного списка"; -$a->strings["Current Entries in the Blocklist"] = "Текущие значения чёрного списка"; -$a->strings["Delete entry from blocklist"] = "Удалить запись из чёрного списка"; -$a->strings["Delete entry from blocklist?"] = "Удалить запись из чёрного списка?"; +$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения"; +$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления"; +$a->strings["Request date"] = "Запрос даты"; +$a->strings["No registrations."] = "Нет регистраций."; +$a->strings["Note from the user"] = "Сообщение от пользователя"; +$a->strings["Deny"] = "Отклонить"; +$a->strings["User blocked"] = "Пользователь заблокирован"; +$a->strings["Site admin"] = "Админ сайта"; +$a->strings["Account expired"] = "Аккаунт просрочен"; +$a->strings["New User"] = "Новый пользователь"; +$a->strings["Permanent deletion"] = "Постоянное удаление"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; +$a->strings["Name of the new user."] = "Имя нового пользователя."; +$a->strings["Nickname"] = "Ник"; +$a->strings["Nickname of the new user."] = "Ник нового пользователя."; +$a->strings["Email address of the new user."] = "Email адрес нового пользователя."; +$a->strings["Inspect Deferred Worker Queue"] = "Посмотреть очередь отложенных заданий"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза."; +$a->strings["Inspect Worker Queue"] = "Посмотреть очередь заданий"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке."; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = "Параметры задания"; +$a->strings["Created"] = "Создано"; +$a->strings["Priority"] = "Приоритет"; $a->strings["Update has been marked successful"] = "Обновление было успешно отмечено"; $a->strings["Database structure update %s was successfully applied."] = "Обновление базы данных %s успешно применено."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Выполнение обновления базы данных %s завершено с ошибкой: %s"; @@ -1248,27 +1571,15 @@ $a->strings["Failed Updates"] = "Неудавшиеся обновления"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Эта цифра не включает обновления до 1139, которое не возвращает статус."; $a->strings["Mark success (if update was manually applied)"] = "Отмечено успешно (если обновление было применено вручную)"; $a->strings["Attempt to execute this update step automatically"] = "Попытаться выполнить этот шаг обновления автоматически"; -$a->strings["Lock feature %s"] = "Заблокировать %s"; -$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями"; $a->strings["Other"] = "Другой"; $a->strings["unknown"] = "неизвестно"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "На этой странице вы можете увидеть немного статистики из известной вашему узлу федеративной сети. Эти данные неполные и только отражают ту часть сети, с которой ваш узел взаимодействовал."; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "Автообнаружение контактов не включено, эта функция улучшила бы отображаемую здесь статистику."; -$a->strings["Federation Statistics"] = "Статистика федерации"; $a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "В настоящий момент этому узлу известно %d узлов с %d зарегистрированных пользователей со следующих платформ:"; -$a->strings["Item marked for deletion."] = "Запись помечена для удаления."; -$a->strings["Delete Item"] = "Удалить запись"; -$a->strings["Delete this Item"] = "Удалить эту запись"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "GUID записи, которую вы хотите удалить."; -$a->strings["Item Guid"] = "GUID записи"; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Не получается открыть файл журнала %1\$s \\r\\n
Проверьте, что файл %1\$s существует и читается веб-сервером."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Не получается открыть файл журнала %1\$s \\r\\n
Проверьте, что файл %1\$s доступен для чтения веб-сервером."; $a->strings["The logfile '%s' is not writable. No logging possible"] = "Файл журнала '%s' недоступен для записи. Журналирование невозможно."; -$a->strings["Log settings updated."] = "Настройки журнала обновлены."; $a->strings["PHP log currently enabled."] = "Лог PHP включен."; $a->strings["PHP log currently disabled."] = "Лог PHP выключен."; -$a->strings["Logs"] = "Журналы"; $a->strings["Clear"] = "Очистить"; $a->strings["Enable Debugging"] = "Включить отладку"; $a->strings["Log file"] = "Лог-файл"; @@ -1276,20 +1587,9 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Уровень лога"; $a->strings["PHP logging"] = "PHP логирование"; $a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Чтобы временно включить журналирование ошибок и предупреждений PHP, вы можете добавить следующее в файл index.php вашей установки. Имя файла, установленное в 'error_log', задаётся относительно каталога установки Френдики и у веб-сервера должно быть разрешение на запись в этот файл. Настройка 1' для 'log_errors' и 'display_errors' включает журналирование и отображение ошибок, '0' отключает."; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Не получается открыть файл журнала %1\$s \\r\\n
Проверьте, что файл %1\$s существует и читается веб-сервером."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Не получается открыть файл журнала %1\$s \\r\\n
Проверьте, что файл %1\$s доступен для чтения веб-сервером."; -$a->strings["View Logs"] = "Просмотр логов"; -$a->strings["Inspect Deferred Worker Queue"] = "Посмотреть очередь отложенных заданий"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза."; -$a->strings["Inspect Worker Queue"] = "Посмотреть очередь заданий"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке."; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = "Параметры задания"; -$a->strings["Created"] = "Создано"; -$a->strings["Priority"] = "Приоритет"; $a->strings["Can not parse base url. Must have at least ://"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - ://"; +$a->strings["Relocation started. Could take a while to complete."] = "Перемещение начато. Это может занять много времени."; $a->strings["Invalid storage backend setting value."] = "Недопустимое значение типа хранилища."; -$a->strings["Site settings updated."] = "Установки сайта обновлены."; $a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; $a->strings["%s - (Experimental)"] = "%s - (экспериментально)"; $a->strings["No community page for local users"] = "Нет общей ленты записей локальных пользователей"; @@ -1297,31 +1597,18 @@ $a->strings["No community page"] = "Нет общей ленты записей" $a->strings["Public postings from users of this site"] = "Публичные записи от пользователей этого узла"; $a->strings["Public postings from the federated network"] = "Публичные записи федеративной сети"; $a->strings["Public postings from local users and the federated network"] = "Публичные записи от местных пользователей и федеративной сети."; -$a->strings["Disabled"] = "Отключенный"; -$a->strings["Users"] = "Пользователи"; -$a->strings["Users, Global Contacts"] = "Users, Global Contacts"; -$a->strings["Users, Global Contacts/fallback"] = "Users, Global Contacts/fallback"; -$a->strings["One month"] = "Один месяц"; -$a->strings["Three months"] = "Три месяца"; -$a->strings["Half a year"] = "Пол года"; -$a->strings["One year"] = "Один год"; $a->strings["Multi user instance"] = "Многопользовательский вид"; $a->strings["Closed"] = "Закрыто"; $a->strings["Requires approval"] = "Требуется подтверждение"; $a->strings["Open"] = "Открыто"; -$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться"; -$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"; $a->strings["Don't check"] = "Не проверять"; $a->strings["check the stable version"] = "проверить стабильную версию"; $a->strings["check the development version"] = "проверить development-версию"; $a->strings["none"] = "нет"; -$a->strings["Direct contacts"] = "Прямые контакты"; -$a->strings["Contacts of contacts"] = "Контакты контактов"; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; $a->strings["Database (legacy)"] = "База данных (устаревшее)"; -$a->strings["Site"] = "Сайт"; $a->strings["Republish users to directory"] = "Переопубликовать пользователей в каталог"; -$a->strings["Registration"] = "Регистрация"; $a->strings["File upload"] = "Загрузка файлов"; $a->strings["Policies"] = "Политики"; $a->strings["Auto Discovered Contact Directory"] = "Каталог автообнаружения контактов"; @@ -1346,8 +1633,6 @@ $a->strings["System theme"] = "Системная тема"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = "Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию"; $a->strings["Mobile system theme"] = "Мобильная тема системы"; $a->strings["Theme for mobile devices"] = "Тема для мобильных устройств"; -$a->strings["SSL link policy"] = "Политика SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL"; $a->strings["Force SSL"] = "SSL принудительно"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Форсировать не-SSL запросы как SSL. Внимание: на некоторых системах это может привести к бесконечным циклам."; $a->strings["Hide help entry from navigation menu"] = "Скрыть пункт \"помощь\" в меню навигации"; @@ -1428,20 +1713,19 @@ $a->strings["Maximum Load Average (Frontend)"] = "Максимальная на $a->strings["Maximum system load before the frontend quits service - default 50."] = "Максимальная нагрузка на систему, прежде чем frontend отключится - по-умолчанию 50."; $a->strings["Minimal Memory"] = "Минимум памяти"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено)."; -$a->strings["Maximum table size for optimization"] = "Максимальный размер таблицы для оптимизации"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Максимальный размер таблицы (в MB) для автоматической оптимизации. Введите -1, чтобы отключить это."; -$a->strings["Minimum level of fragmentation"] = "Минимальная фрагментация"; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Минимальный уровень фрагментации для автоматической оптимизации - по умолчанию 30%."; -$a->strings["Periodical check of global contacts"] = "Периодически проверять глобальные контакты"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Если включено, глобальные контакты периодически проверяются для актуализации данных и проверки жизнеспособности контактов и серверов."; -$a->strings["Discover followers/followings from global contacts"] = "Обнаруживать подписки среди глобальных контактов"; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = "Если включено, у глобальных контактов будут так же проверяться их новые подписки и подписчики. Эта настройка создаст очень много заданий, поэтому её имеет смысл включать на мощных серверах."; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Интервал запросов"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Интервал в днях, с которым контакты сервера будут перепроверяться."; $a->strings["Discover contacts from other servers"] = "Обнаруживать контакты с других серверов"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = "Периодически опрашивать другие серверы на предмет контактов. Вы можете выбрать \"Users\": пользователи удалённого сервера, \"Global Contacts\": активные контакты, про которые серверу известно. Fallback предназначен для серверов Redmatrix и старых серверов Френдики, где глобальные контакты недоступны. Это увеличивает нагрузку, поэтому рекомендованная настройка: \"Users, Global Contacts\"."; -$a->strings["Timeframe for fetching global contacts"] = "Период активности глобальных контактов"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Когда обнаружение включено, это значение определяет период активности, за который глобальные контакты загружаются с удалённых серверов."; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Искать в местном каталоге"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах."; $a->strings["Publish server information"] = "Опубликовать информацию о сервере"; @@ -1464,6 +1748,8 @@ $a->strings["Cache duration in seconds"] = "Время жизни кэша в с $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Как долго кэш должен хранить содержимое? Значение по умолчанию 86400 секунд (один день). Чтобы отключить, установите значение -1."; $a->strings["Maximum numbers of comments per post"] = "Максимальное число комментариев для записи"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100."; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Временная папка"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь."; $a->strings["Disable picture proxy"] = "Отключить проксирование картинок"; @@ -1498,8 +1784,10 @@ $a->strings["Comma separated list of tags for the \"tags\" subscription."] = "С $a->strings["Allow user tags"] = "Разрешить пользовательские тэги"; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = "Если включено, то тэги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тэгам сервера."; $a->strings["Start Relocation"] = "Начать перемещение"; +$a->strings["Template engine (%s) error: %s"] = ""; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; $a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = ""; $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = ""; $a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = ""; @@ -1521,23 +1809,10 @@ $a->strings["Blog Account"] = "Аккаунт блога"; $a->strings["Private Forum Account"] = "Закрытый форум"; $a->strings["Message queues"] = "Очереди сообщений"; $a->strings["Server Settings"] = "Настройки сервера"; -$a->strings["Summary"] = "Резюме"; $a->strings["Registered users"] = "Зарегистрированные пользователи"; $a->strings["Pending registrations"] = "Ожидающие регистрации"; $a->strings["Version"] = "Версия"; $a->strings["Active addons"] = "Активные дополнения"; -$a->strings["Theme settings updated."] = "Настройки темы обновлены."; -$a->strings["Theme %s disabled."] = "Тема %s отключена."; -$a->strings["Theme %s successfully enabled."] = "Тема %s успешно включена."; -$a->strings["Theme %s failed to install."] = "Не удалось установить тему %s."; -$a->strings["Screenshot"] = "Скриншот"; -$a->strings["Themes"] = "Темы"; -$a->strings["Unknown theme."] = "Неизвестная тема."; -$a->strings["Reload active themes"] = "Перезагрузить активные темы"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Ни одной темы не найдено на сервере. Они должны быть размещены в %1\$s"; -$a->strings["[Experimental]"] = "[экспериментально]"; -$a->strings["[Unsupported]"] = "[Неподдерживаемое]"; -$a->strings["The Terms of Service settings have been updated."] = "Настройки Условий Оказания Услуг были обновлены."; $a->strings["Display Terms of Service"] = "Показать Условия оказания услуг"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Включить страницу с Условиями Оказания Услуг. Если эта настройка активна, ссылка на страницу с Условиями будет добавлена в форму регистрации и на страницу общей информации."; $a->strings["Display Privacy Statement"] = "Показать Положение о конфиденциальности"; @@ -1545,104 +1820,133 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Предпросмотр Положения о конфиденциальности"; $a->strings["The Terms of Service"] = "Условия оказания услуг"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже."; -$a->strings["%s user blocked"] = [ - 0 => "%s пользователь заблокирован", - 1 => "%s пользователя заблокировано", - 2 => "%s пользователей заблокировано", - 3 => "%s пользователей заблокировано", +$a->strings["Server domain pattern added to blocklist."] = "Маска адреса сервера добавлена в чёрный список."; +$a->strings["Blocked server domain pattern"] = "Маска домена блокируемого сервера"; +$a->strings["Reason for the block"] = "Причина блокировки"; +$a->strings["Delete server domain pattern"] = "Удалить маску домена"; +$a->strings["Check to delete this entry from the blocklist"] = "Отметьте, чтобы удалить эту запись из черного списка"; +$a->strings["Server Domain Pattern Blocklist"] = "Чёрный список доменов"; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей."; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

Маска домена узла нечувствительна к регистру и представляет собой выражение shell из следующих специальных символов:

\n
    \n\t
  • *: Любые символы в любом количестве
  • \n\t
  • ?: Один любой символ
  • \n\t
  • [<char1><char2>...]: char1 или char2
  • \n
"; +$a->strings["Add new entry to block list"] = "Добавить новую запись в чёрный список"; +$a->strings["Server Domain Pattern"] = "Маска домена узла"; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола."; +$a->strings["Block reason"] = "Причина блокировки"; +$a->strings["The reason why you blocked this server domain pattern."] = "Причина блокировки вами этого домена."; +$a->strings["Add Entry"] = "Добавить запись"; +$a->strings["Save changes to the blocklist"] = "Сохранить изменения чёрного списка"; +$a->strings["Current Entries in the Blocklist"] = "Текущие значения чёрного списка"; +$a->strings["Delete entry from blocklist"] = "Удалить запись из чёрного списка"; +$a->strings["Delete entry from blocklist?"] = "Удалить запись из чёрного списка?"; +$a->strings["%s contact unblocked"] = [ + 0 => "%s контакт разблокирован", + 1 => "%s контакта разблокированы", + 2 => "%s контактов разблокировано", + 3 => "%s контактов разблокировано", ]; -$a->strings["%s user unblocked"] = [ - 0 => "%s пользователь разблокирован", - 1 => "%s пользователя разблокировано", - 2 => "%s пользователей разблокировано", - 3 => "%s пользователей разблокировано", +$a->strings["Remote Contact Blocklist"] = "Чёрный список удалённых контактов"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов."; +$a->strings["Block Remote Contact"] = "Заблокировать удалённый контакт"; +$a->strings["select none"] = "сбросить выбор"; +$a->strings["No remote contact is blocked from this node."] = "Для этого узла нет заблокированных контактов."; +$a->strings["Blocked Remote Contacts"] = "Заблокированные контакты"; +$a->strings["Block New Remote Contact"] = "Заблокировать новый контакт"; +$a->strings["Photo"] = "Фото"; +$a->strings["Reason"] = "Причина"; +$a->strings["%s total blocked contact"] = [ + 0 => "%s заблокированный контакт", + 1 => "%s заблокированных контакта", + 2 => "%s заблокированных контактов", + 3 => "%s заблокированных контактов", ]; -$a->strings["You can't remove yourself"] = "Вы не можете удалить самого себя"; -$a->strings["%s user deleted"] = [ - 0 => "%s человек удален", - 1 => "%s чел. удалено", - 2 => "%s чел. удалено", - 3 => "%s чел. удалено", -]; -$a->strings["%s user approved"] = [ - 0 => "%s пользователь одобрен", - 1 => "%s пользователя одобрено", - 2 => "%s пользователей одобрено", - 3 => "%s пользователей одобрено", -]; -$a->strings["%s registration revoked"] = [ - 0 => "%s регистрация отменена", - 1 => "%s регистрации отменены", - 2 => "%s регистраций отменены", - 3 => "%s регистраций отменены", -]; -$a->strings["User \"%s\" deleted"] = "Пользователь \"%s\" удалён"; -$a->strings["User \"%s\" blocked"] = "Пользователь \"%s\" заблокирован"; -$a->strings["User \"%s\" unblocked"] = "Пользователь \"%s\" разблокирован"; -$a->strings["Account approved."] = "Аккаунт утвержден."; -$a->strings["Registration revoked"] = "Регистрация отменена"; -$a->strings["Private Forum"] = "Закрытый форум"; -$a->strings["Relay"] = "Ретранслятор"; -$a->strings["Register date"] = "Дата регистрации"; -$a->strings["Last login"] = "Последний вход"; -$a->strings["Last public item"] = "Последняя публичная запись"; -$a->strings["Type"] = ""; -$a->strings["Add User"] = "Добавить пользователя"; -$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения"; -$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления"; -$a->strings["Request date"] = "Запрос даты"; -$a->strings["No registrations."] = "Нет регистраций."; -$a->strings["Note from the user"] = "Сообщение от пользователя"; -$a->strings["Deny"] = "Отклонить"; -$a->strings["User blocked"] = "Пользователь заблокирован"; -$a->strings["Site admin"] = "Админ сайта"; -$a->strings["Account expired"] = "Аккаунт просрочен"; -$a->strings["New User"] = "Новый пользователь"; -$a->strings["Permanent deletion"] = "Постоянное удаление"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"; -$a->strings["Name of the new user."] = "Имя нового пользователя."; -$a->strings["Nickname"] = "Ник"; -$a->strings["Nickname of the new user."] = "Ник нового пользователя."; -$a->strings["Email address of the new user."] = "Email адрес нового пользователя."; -$a->strings["No friends to display."] = "Нет друзей."; -$a->strings["No installed applications."] = "Нет установленных приложений."; -$a->strings["Applications"] = "Приложения"; +$a->strings["URL of the remote contact to block."] = "URL блокируемого контакта."; +$a->strings["Block Reason"] = "Причина блокировки"; +$a->strings["Item Guid"] = "GUID записи"; +$a->strings["Item marked for deletion."] = "Запись помечена для удаления."; +$a->strings["Delete this Item"] = "Удалить эту запись"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "GUID записи, которую вы хотите удалить."; +$a->strings["Addon not found."] = "Дополнение не найдено."; +$a->strings["Addon %s disabled."] = "Дополнение %s отключено."; +$a->strings["Addon %s enabled."] = "Дополнение %s включено."; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = "Не удалось установить дополнение %s."; +$a->strings["Reload active addons"] = "Перезагрузить активные дополнения"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1\$s и найти больше интересных дополнений в открытой библиотеке на %2\$s"; +$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; +$a->strings["Find on this site"] = "Найти на этом сайте"; +$a->strings["Results for:"] = "Результаты для:"; +$a->strings["Site Directory"] = "Каталог сайта"; $a->strings["Item was not found."] = "Пункт не был найден."; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = "При делегировании доступ к странице администратора невозможен. Пожалуйста, зайдите под учётной записью администратора напрямую."; -$a->strings["Overview"] = "Общая информация"; -$a->strings["Configuration"] = "Конфигурация"; -$a->strings["Additional features"] = "Дополнительные возможности"; -$a->strings["Database"] = "База данных"; -$a->strings["DB updates"] = "Обновление БД"; -$a->strings["Inspect Deferred Workers"] = "Посмотреть отложенные задания"; -$a->strings["Inspect worker Queue"] = "Посмотреть очередь заданий"; -$a->strings["Tools"] = "Инструменты"; -$a->strings["Contact Blocklist"] = "Чёрный список контактов"; -$a->strings["Server Blocklist"] = "Чёрный список серверов"; -$a->strings["Diagnostics"] = "Диагностика"; -$a->strings["PHP Info"] = ""; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Item Source"] = ""; -$a->strings["Babel"] = ""; -$a->strings["Addon Features"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения"; -$a->strings["Profile Details"] = "Информация о вас"; +$a->strings["Please enter a post body."] = "Пожалуйста, введите текст записи."; +$a->strings["This feature is only available with the frio theme."] = "Эта функция доступна только для темы frio."; +$a->strings["Compose new personal note"] = "Создать новую личную заметку"; +$a->strings["Compose new post"] = "Создать новую запись"; +$a->strings["Visibility"] = "Видимость"; +$a->strings["Clear the location"] = "Очистить локацию"; +$a->strings["Location services are unavailable on your device"] = "Геолокация на вашем устройстве недоступна"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Геолокация отключена. Пожалуйста, проверьте разрешения этого сайта на вашем устройстве"; +$a->strings["Installed addons/apps:"] = ""; +$a->strings["No installed addons/apps"] = ""; +$a->strings["Read about the Terms of Service of this node."] = ""; +$a->strings["On this server the following remote servers are blocked."] = "На этом сервере заблокированы следующие удалённые серверы."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = ""; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = ""; +$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите"; +$a->strings["the bugtracker at github"] = "багтрекер на github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; $a->strings["Only You Can See This"] = "Только вы можете это видеть"; $a->strings["Tips for New Members"] = "Советы для новых участников"; -$a->strings["People Search - %s"] = "Поиск по людям - %s"; -$a->strings["Forum Search - %s"] = "Поиск по форумам - %s"; +$a->strings["The Photo with id %s is not available."] = ""; +$a->strings["Invalid photo with id %s."] = ""; +$a->strings["The provided profile link doesn't seem to be valid"] = ""; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; $a->strings["Account"] = "Аккаунт"; -$a->strings["Two-factor authentication"] = ""; $a->strings["Display"] = "Внешний вид"; $a->strings["Manage Accounts"] = "Управление учётными записями"; $a->strings["Connected apps"] = "Подключенные приложения"; $a->strings["Export personal data"] = "Экспорт личных данных"; $a->strings["Remove account"] = "Удалить аккаунт"; -$a->strings["This page is missing a url parameter."] = ""; -$a->strings["The post was created"] = "Запись создана"; -$a->strings["Contact settings applied."] = "Установки контакта приняты."; +$a->strings["Could not create group."] = "Не удалось создать группу."; +$a->strings["Group not found."] = "Группа не найдена."; +$a->strings["Group name was not changed."] = "Название группы не изменено."; +$a->strings["Unknown group."] = "Неизвестная группа."; +$a->strings["Contact is deleted."] = "Контакт удалён."; +$a->strings["Unable to add the contact to the group."] = "Не удалось добавить контакт в группу."; +$a->strings["Contact successfully added to group."] = "Контакт успешно добавлен в группу."; +$a->strings["Unable to remove the contact from the group."] = "Не удалось удалить контакт из группы."; +$a->strings["Contact successfully removed from group."] = "Контакт успешно удалён из группы."; +$a->strings["Unknown group command."] = "Неизвестная команда для группы."; +$a->strings["Bad request."] = "Ошибочный запрос."; +$a->strings["Save Group"] = "Сохранить группу"; +$a->strings["Filter"] = "Фильтр"; +$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей."; +$a->strings["Group Name: "] = "Название группы: "; +$a->strings["Contacts not in any group"] = "Контакты не состоят в группе"; +$a->strings["Unable to remove group."] = "Не удается удалить группу."; +$a->strings["Delete Group"] = "Удалить группу"; +$a->strings["Edit Group Name"] = "Изменить имя группы"; +$a->strings["Members"] = "Участники"; +$a->strings["Remove contact from group"] = "Удалить контакт из группы"; +$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; +$a->strings["Add contact to group"] = "Добавить контакт в группу"; +$a->strings["Only logged in users are permitted to perform a search."] = "Только зарегистрированные пользователи могут использовать поиск."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Незарегистрированные пользователи могут выполнять поиск раз в минуту."; +$a->strings["Search"] = "Поиск"; +$a->strings["Items tagged with: %s"] = "Элементы с тегами: %s"; +$a->strings["You must be logged in to use this module."] = "Вам нужно войти, чтобы использовать этот модуль."; +$a->strings["Search term was not saved."] = "Поисковый запрос не сохранён."; +$a->strings["Search term already saved."] = "Такой запрос уже сохранён."; +$a->strings["Search term was not removed."] = "Поисковый запрос не был удалён."; +$a->strings["No profile"] = "Нет профиля"; +$a->strings["Error while sending poke, please retry."] = "Ошибка при отправке тычка, попробуйте ещё."; +$a->strings["Poke/Prod"] = "Потыкать/Потолкать"; +$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то"; +$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; +$a->strings["Make this post private"] = "Сделать эту запись личной"; $a->strings["Contact update failed."] = "Обновление контакта неудачное."; $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."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' сейчас, если вы не уверены, что делаете на этой странице."; @@ -1650,7 +1954,6 @@ $a->strings["No mirroring"] = "Не зеркалировать"; $a->strings["Mirror as forwarded posting"] = "Зеркалировать как переадресованные сообщения"; $a->strings["Mirror as my own posting"] = "Зеркалировать как мои сообщения"; $a->strings["Return to contact editor"] = "Возврат к редактору контакта"; -$a->strings["Refetch contact data"] = "Обновить данные контакта"; $a->strings["Remote Self"] = "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."] = "Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта."; @@ -1663,446 +1966,23 @@ $a->strings["Friend Confirm URL"] = "URL подтверждения друга"; $a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления"; $a->strings["Poll/Feed URL"] = "URL опроса/ленты"; $a->strings["New photo from this URL"] = "Новое фото из этой URL"; -$a->strings["%d contact edited."] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; -$a->strings["Contact updated."] = "Контакт обновлен."; -$a->strings["Contact not found"] = "Контакт не найден"; -$a->strings["Contact has been blocked"] = "Контакт заблокирован"; -$a->strings["Contact has been unblocked"] = "Контакт разблокирован"; -$a->strings["Contact has been ignored"] = "Контакт проигнорирован"; -$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование"; -$a->strings["Contact has been archived"] = "Контакт заархивирован"; -$a->strings["Contact has been unarchived"] = "Контакт разархивирован"; -$a->strings["Drop contact"] = "Удалить контакт"; -$a->strings["Do you really want to delete this contact?"] = "Вы действительно хотите удалить этот контакт?"; -$a->strings["Contact has been removed."] = "Контакт удален."; -$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s"; -$a->strings["You are sharing with %s"] = "Вы делитесь с %s"; -$a->strings["%s is sharing with you"] = "%s делится с Вами"; -$a->strings["Private communications are not available for this contact."] = "Приватные коммуникации недоступны для этого контакта."; -$a->strings["Never"] = "Никогда"; -$a->strings["(Update was successful)"] = "(Обновление было успешно)"; -$a->strings["(Update was not successful)"] = "(Обновление не удалось)"; -$a->strings["Suggest friends"] = "Предложить друзей"; -$a->strings["Network type: %s"] = "Сеть: %s"; -$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!"; -$a->strings["Fetch further information for feeds"] = "Получить подробную информацию о фидах"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = ""; -$a->strings["Fetch information"] = "Получить информацию"; -$a->strings["Fetch keywords"] = "Получить ключевые слова"; -$a->strings["Fetch information and keywords"] = "Получить информацию и ключевые слова"; -$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки"; -$a->strings["Contact Settings"] = "Настройки контакта"; -$a->strings["Contact"] = "Контакт"; -$a->strings["Their personal note"] = "Персональная заметка"; -$a->strings["Edit contact notes"] = "Редактировать заметки контакта"; -$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]"; -$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт"; -$a->strings["Ignore contact"] = "Игнорировать контакт"; -$a->strings["View conversations"] = "Просмотр бесед"; -$a->strings["Last update:"] = "Последнее обновление: "; -$a->strings["Update public posts"] = "Обновить публичные сообщения"; -$a->strings["Update now"] = "Обновить сейчас"; -$a->strings["Unignore"] = "Не игнорировать"; -$a->strings["Currently blocked"] = "В настоящее время заблокирован"; -$a->strings["Currently ignored"] = "В настоящее время игнорируется"; -$a->strings["Currently archived"] = "В данный момент архивирован"; -$a->strings["Awaiting connection acknowledge"] = "Ожидаем подтверждения соединения"; -$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["Blacklisted keywords"] = "Черный список ключевых слов"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; -$a->strings["Actions"] = "Действия"; -$a->strings["Show all contacts"] = "Показать все контакты"; -$a->strings["Pending"] = "В ожидании"; -$a->strings["Only show pending contacts"] = "Показать только контакты \"в ожидании\""; -$a->strings["Blocked"] = "Заблокирован"; -$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты"; -$a->strings["Ignored"] = "Игнорирован"; -$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты"; -$a->strings["Archived"] = "Архивированные"; -$a->strings["Only show archived contacts"] = "Показывать только архивные контакты"; -$a->strings["Hidden"] = "Скрытые"; -$a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты"; -$a->strings["Organize your contact groups"] = "Настроить группы контактов"; -$a->strings["Search your contacts"] = "Поиск ваших контактов"; -$a->strings["Results for: %s"] = "Результаты для: %s"; -$a->strings["Archive"] = "Архивировать"; -$a->strings["Unarchive"] = "Разархивировать"; -$a->strings["Batch Actions"] = "Пакетные действия"; -$a->strings["Conversations started by this contact"] = ""; -$a->strings["Posts and Comments"] = "Записи и комментарии"; -$a->strings["View all contacts"] = "Показать все контакты"; -$a->strings["View all common friends"] = "Показать все общие поля"; -$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта"; -$a->strings["Mutual Friendship"] = "Взаимная дружба"; -$a->strings["is a fan of yours"] = "является вашим поклонником"; -$a->strings["you are a fan of"] = "Вы - поклонник"; -$a->strings["Pending outgoing contact request"] = ""; -$a->strings["Pending incoming contact request"] = ""; -$a->strings["Edit contact"] = "Редактировать контакт"; -$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)"; -$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования"; -$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)"; -$a->strings["Delete contact"] = "Удалить контакт"; -$a->strings["Local Community"] = "Местное сообщество"; -$a->strings["Posts from local users on this server"] = "Записи пользователей с этого сервера"; -$a->strings["Global Community"] = "Глобальное сообщество"; -$a->strings["Posts from users of the whole federated network"] = "Записи пользователей со всей федеративной сети"; -$a->strings["No results."] = "Нет результатов."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера."; -$a->strings["Community option not available."] = ""; -$a->strings["Not available."] = "Недоступно."; -$a->strings["Credits"] = "Признательность"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!"; -$a->strings["Source input"] = ""; -$a->strings["BBCode::toPlaintext"] = ""; -$a->strings["BBCode::convert (raw HTML)"] = ""; -$a->strings["BBCode::convert"] = ""; -$a->strings["BBCode::convert => HTML::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; -$a->strings["Item Body"] = ""; -$a->strings["Item Tags"] = ""; -$a->strings["Source input (Diaspora format)"] = ""; -$a->strings["Source input (Markdown)"] = ""; -$a->strings["Markdown::convert (raw HTML)"] = ""; -$a->strings["Markdown::convert"] = ""; -$a->strings["Markdown::toBBCode"] = ""; -$a->strings["Raw HTML input"] = ""; -$a->strings["HTML Input"] = ""; -$a->strings["HTML::toBBCode"] = ""; -$a->strings["HTML::toBBCode => BBCode::convert"] = ""; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = ""; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; -$a->strings["HTML::toMarkdown"] = ""; -$a->strings["HTML::toPlaintext"] = ""; -$a->strings["HTML::toPlaintext (compact)"] = ""; -$a->strings["Source text"] = ""; -$a->strings["BBCode"] = ""; -$a->strings["Markdown"] = ""; -$a->strings["HTML"] = ""; -$a->strings["You must be logged in to use this module"] = "Вы должны быть залогинены для использования этого модуля"; -$a->strings["Source URL"] = "Исходный URL"; -$a->strings["Time Conversion"] = "История общения"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."; -$a->strings["UTC time: %s"] = "UTC время: %s"; -$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s"; -$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s"; -$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:"; -$a->strings["Only logged in users are permitted to perform a probing."] = ""; -$a->strings["Lookup address"] = ""; -$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; -$a->strings["Select an identity to manage: "] = "Выберите учётную запись:"; -$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; -$a->strings["Find on this site"] = "Найти на этом сайте"; -$a->strings["Results for:"] = "Результаты для:"; -$a->strings["Site Directory"] = "Каталог сайта"; -$a->strings["Filetag %s saved to item"] = ""; -$a->strings["- select -"] = "- выбрать -"; -$a->strings["Installed addons/apps:"] = ""; -$a->strings["No installed addons/apps"] = ""; -$a->strings["Read about the Terms of Service of this node."] = ""; -$a->strings["On this server the following remote servers are blocked."] = "На этом сервере заблокированы следующие удалённые серверы."; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = ""; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = ""; -$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите"; -$a->strings["the bugtracker at github"] = "багтрекер на github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; -$a->strings["Suggested contact not found."] = ""; -$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; -$a->strings["Suggest Friends"] = "Предложить друзей"; -$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; -$a->strings["Group created."] = "Группа создана."; -$a->strings["Could not create group."] = "Не удалось создать группу."; -$a->strings["Group not found."] = "Группа не найдена."; -$a->strings["Group name changed."] = "Название группы изменено."; -$a->strings["Unknown group."] = ""; -$a->strings["Contact is deleted."] = ""; -$a->strings["Unable to add the contact to the group."] = ""; -$a->strings["Contact successfully added to group."] = ""; -$a->strings["Unable to remove the contact from the group."] = ""; -$a->strings["Contact successfully removed from group."] = ""; -$a->strings["Unknown group command."] = ""; -$a->strings["Bad request."] = ""; -$a->strings["Save Group"] = "Сохранить группу"; -$a->strings["Filter"] = ""; -$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей."; -$a->strings["Group removed."] = "Группа удалена."; -$a->strings["Unable to remove group."] = "Не удается удалить группу."; -$a->strings["Delete Group"] = ""; -$a->strings["Edit Group Name"] = ""; -$a->strings["Members"] = "Участники"; -$a->strings["Remove contact from group"] = ""; -$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; -$a->strings["Add contact to group"] = ""; -$a->strings["Help:"] = "Помощь:"; -$a->strings["Welcome to %s"] = "Добро пожаловать на %s!"; -$a->strings["No profile"] = "Нет профиля"; -$a->strings["Method Not Allowed."] = ""; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["System check"] = "Проверить систему"; -$a->strings["Check again"] = "Проверить еще раз"; -$a->strings["Base settings"] = ""; -$a->strings["Host name"] = "Имя хоста"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = ""; -$a->strings["Base path to installation"] = "Путь для установки"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; -$a->strings["Sub path of the URL"] = ""; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = ""; -$a->strings["Database connection"] = "Подключение к базе данных"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."; -$a->strings["Database Server Name"] = "Имя сервера базы данных"; -$a->strings["Database Login Name"] = "Логин базы данных"; -$a->strings["Database Login Password"] = "Пароль базы данных"; -$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым"; -$a->strings["Database Name"] = "Имя базы данных"; -$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; -$a->strings["Site settings"] = "Настройки сайта"; -$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."; -$a->strings["System Language:"] = "Язык системы:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем."; -$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; -$a->strings["Installation finished"] = "Установка завершена"; -$a->strings["

What next

"] = "

Что далее

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "ВАЖНО: Вам нужно будет [вручную] настроить фоновое задание в планировщике."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; -$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; -$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; -$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."; -$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась."; -$a->strings["%d message sent."] = [ - 0 => "%d сообщение отправлено.", - 1 => "%d сообщений отправлено.", - 2 => "%d сообщений отправлено.", - 3 => "%d сообщений отправлено.", -]; -$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере 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."] = "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."; -$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."] = "Серверы Френдики взаимосвязаны друг с другом и образуют огромную социальную сеть, которой владеют все её члены. Так же они могут соединяться со многими традиционными социальными сетями."; -$a->strings["To accept this invitation, please visit and register at %s."] = "Чтобы принять это приглашение, пожалуйста зайдите на %s и зарегистрируйтесь."; -$a->strings["Send invitations"] = "Отправить приглашения"; -$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Чтобы узнать больше о проекте Friendica и почему мы считаем это важным, посетите http://friendi.ca"; -$a->strings["Please enter a post body."] = "Пожалуйста, введите текст записи."; -$a->strings["This feature is only available with the frio theme."] = "Эта функция доступна только для темы frio."; -$a->strings["Compose new personal note"] = "Создать новую личную заметку"; -$a->strings["Compose new post"] = "Создать новую запись"; -$a->strings["Visibility"] = "Видимость"; -$a->strings["Clear the location"] = "Очистить локацию"; -$a->strings["Location services are unavailable on your device"] = "Геолокация на вашем устройстве недоступна"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Геолокация отключена. Пожалуйста, проверьте разрешения этого сайта на вашем устройстве"; -$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; -$a->strings["A Decentralized Social Network"] = "Децентрализованная социальная сеть"; -$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; -$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; -$a->strings["Notification type:"] = "Тип уведомления:"; -$a->strings["Suggested by:"] = ""; -$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; -$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Принимая %s как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него."; -$a->strings["Friend"] = "Друг"; -$a->strings["Subscriber"] = "Подписчик"; -$a->strings["No introductions."] = "Запросов нет."; -$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s."; -$a->strings["You must be logged in to show this page."] = "Вам нужно войти, чтобы увидеть эту страницу."; -$a->strings["Network Notifications"] = "Уведомления сети"; -$a->strings["System Notifications"] = "Уведомления системы"; -$a->strings["Personal Notifications"] = "Личные уведомления"; -$a->strings["Home Notifications"] = "Уведомления"; -$a->strings["Show unread"] = "Показать непрочитанные"; -$a->strings["Show all"] = "Показать все"; -$a->strings["The Photo with id %s is not available."] = ""; -$a->strings["Invalid photo with id %s."] = ""; -$a->strings["User not found."] = "Пользователь не найден."; -$a->strings["No contacts."] = "Нет контактов."; -$a->strings["Follower (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Following (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Contact (%s)"] = [ - 0 => "Контакт (%s)", - 1 => "Контакты (%s)", - 2 => "Контакты (%s)", - 3 => "Контакты (%s)", -]; -$a->strings["All contacts"] = "Все контакты"; -$a->strings["Member since:"] = "Зарегистрирован с:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "День рождения:"; -$a->strings["Age: "] = "Возраст: "; -$a->strings["%d year old"] = [ - 0 => "%dгод", - 1 => "%dгода", - 2 => "%dлет", - 3 => "%dлет", -]; -$a->strings["Forums:"] = "Форумы:"; -$a->strings["View profile as:"] = "Посмотреть профиль как:"; -$a->strings["%s's timeline"] = "Лента %s"; -$a->strings["%s's posts"] = "Записи %s"; -$a->strings["%s's comments"] = "Комментарии %s"; -$a->strings["Only parent users can create additional accounts."] = "Только основные пользователи могут создавать дополнительные учётные записи."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = ""; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."; -$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):"; -$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?"; -$a->strings["Note for the admin"] = "Сообщение для администратора"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\""; -$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению."; -$a->strings["Your invitation code: "] = "Ваш код приглашения:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Ваше полное имя (например, Иван Иванов):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Ваш адрес электронной почты: (Информация для входа будет отправлена туда, это должен быть существующий адрес.)"; -$a->strings["Please repeat your e-mail address:"] = "Пожалуйста, введите адрес электронной почты ещё раз:"; -$a->strings["Leave empty for an auto generated password."] = "Оставьте пустым для автоматической генерации пароля."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = ""; -$a->strings["Choose a nickname: "] = "Выберите псевдоним: "; -$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica"; -$a->strings["Note: This node explicitly contains adult content"] = "Внимание: на этом сервере размещаются материалы для взрослых."; -$a->strings["Parent Password:"] = "Родительский пароль:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; -$a->strings["Password doesn't match."] = ""; -$a->strings["Please enter your password."] = ""; -$a->strings["You have entered too much information."] = ""; -$a->strings["Please enter the identical mail address in the second field."] = ""; -$a->strings["The additional account was created."] = ""; -$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Ошибка отправки письма. Вот ваши учетные данные:
логин: %s
пароль: %s

Вы сможете изменить пароль после входа."; -$a->strings["Registration successful."] = "Регистрация успешна."; -$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; -$a->strings["You have to leave a request note for the admin."] = ""; -$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта."; -$a->strings["The provided profile link doesn't seem to be valid"] = ""; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; -$a->strings["You must be logged in to use this module."] = "Вам нужно войти, чтобы использовать этот модуль."; -$a->strings["Only logged in users are permitted to perform a search."] = "Только зарегистрированные пользователи могут использовать поиск."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Незарегистрированные пользователи могут выполнять поиск раз в минуту."; -$a->strings["Items tagged with: %s"] = "Элементы с тегами: %s"; -$a->strings["Search term successfully saved."] = "Поисковый запрос сохранён."; -$a->strings["Search term already saved."] = "Такой запрос уже сохранён."; -$a->strings["Search term successfully removed."] = "Сохранённый запрос успешно удалён."; -$a->strings["Create a New Account"] = "Создать новый аккаунт"; -$a->strings["Your OpenID: "] = "Ваш OpenID: "; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = ""; -$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: "; -$a->strings["Password: "] = "Пароль: "; -$a->strings["Remember me"] = "Запомнить"; -$a->strings["Forgot your password?"] = "Забыли пароль?"; -$a->strings["Website Terms of Service"] = "Правила сайта"; -$a->strings["terms of service"] = "правила"; -$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера"; -$a->strings["privacy policy"] = "политика конфиденциальности"; -$a->strings["Logged out."] = "Выход из системы."; -$a->strings["OpenID protocol error. No ID returned"] = ""; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = ""; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = ""; -$a->strings["Remaining recovery codes: %d"] = "Осталось кодов для восстановления: %d"; -$a->strings["Invalid code, please retry."] = "Неправильный код, попробуйте ещё."; -$a->strings["Two-factor recovery"] = "Двухфакторное восстановление доступа"; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = ""; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = ""; -$a->strings["Please enter a recovery code"] = "Пожалуйста, введите код восстановления"; -$a->strings["Submit recovery code and complete login"] = "Отправить код восстановления и завершить вход"; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

"; -$a->strings["Please enter a code from your authentication app"] = "Пожалуйста, введите код из вашего приложения для аутентификации"; -$a->strings["Verify code and complete login"] = ""; -$a->strings["Delegation successfully granted."] = "Делегирование успешно предоставлено."; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "Родительский пользователь не найден, недоступен или пароль не совпадает."; -$a->strings["Delegation successfully revoked."] = "Делегирование успешно отменено."; -$a->strings["Delegated administrators can view but not change delegation permissions."] = ""; -$a->strings["Delegate user not found."] = ""; -$a->strings["No parent user"] = "Нет родительского пользователя"; -$a->strings["Parent User"] = "Родительский пользователь"; -$a->strings["Additional Accounts"] = ""; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = ""; -$a->strings["Register an additional account"] = ""; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; -$a->strings["Delegates"] = "Делегаты"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."; -$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы"; -$a->strings["Potential Delegates"] = "Возможные доверенные лица"; -$a->strings["Add"] = "Добавить"; -$a->strings["No entries."] = "Нет записей."; -$a->strings["The theme you chose isn't available."] = ""; -$a->strings["%s - (Unsupported)"] = ""; -$a->strings["Display Settings"] = "Параметры дисплея"; -$a->strings["General Theme Settings"] = "Общие настройки тем"; -$a->strings["Custom Theme Settings"] = "Личные настройки тем"; -$a->strings["Content Settings"] = "Настройки контента"; -$a->strings["Theme settings"] = "Настройки темы"; -$a->strings["Calendar"] = "Календарь"; -$a->strings["Display Theme:"] = "Показать тему:"; -$a->strings["Mobile Theme:"] = "Мобильная тема:"; -$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["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Минимум 10 секунд. Введите -1 для отключения."; -$a->strings["Automatic updates only at the top of the post stream pages"] = ""; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; -$a->strings["Don't show emoticons"] = "не показывать emoticons"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = ""; -$a->strings["Infinite scroll"] = "Бесконечная прокрутка"; -$a->strings["Automatic fetch new items when reaching the page end."] = ""; -$a->strings["Disable Smart Threading"] = "Отключить умное ветвление"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Отключить автоматическое удаление излишних отступов в ветках диалогов."; -$a->strings["Hide the Dislike feature"] = "Убрать функцию \"Не нравится\""; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Убирает кнопку \"Не нравится\" и отображение реакции \"не нравится\" в постах и комментариях."; -$a->strings["Beginning of week:"] = "Начало недели:"; +$a->strings["No installed applications."] = "Нет установленных приложений."; +$a->strings["Applications"] = "Приложения"; $a->strings["Profile Name is required."] = "Необходимо имя профиля."; -$a->strings["Profile updated."] = "Профиль обновлен."; -$a->strings["Profile couldn't be updated."] = ""; -$a->strings["Label:"] = ""; -$a->strings["Value:"] = ""; -$a->strings["Field Permissions"] = ""; +$a->strings["Profile couldn't be updated."] = "Профиль не получилось обновить."; +$a->strings["Label:"] = "Поле:"; +$a->strings["Value:"] = "Значение:"; +$a->strings["Field Permissions"] = "Право просмотра поля"; $a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)"; -$a->strings["Add a new profile field"] = ""; +$a->strings["Add a new profile field"] = "Добавить новое поле профиля"; $a->strings["Profile Actions"] = "Действия профиля"; $a->strings["Edit Profile Details"] = "Редактировать детали профиля"; $a->strings["Change Profile Photo"] = "Изменить фото профиля"; $a->strings["Profile picture"] = "Картинка профиля"; $a->strings["Location"] = "Местонахождение"; $a->strings["Miscellaneous"] = "Разное"; -$a->strings["Custom Profile Fields"] = ""; -$a->strings["Upload Profile Photo"] = "Загрузить фото профиля"; -$a->strings["Display name:"] = ""; +$a->strings["Custom Profile Fields"] = "Произвольные поля профиля"; +$a->strings["Display name:"] = "Отображаемое имя:"; $a->strings["Street Address:"] = "Адрес:"; $a->strings["Locality/City:"] = "Город / Населенный пункт:"; $a->strings["Region/State:"] = "Район / Область:"; @@ -2115,17 +1995,16 @@ $a->strings["Public Keywords:"] = "Общественные ключевые с $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)"; $a->strings["Private Keywords:"] = "Личные ключевые слова:"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)"; -$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = ""; +$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = "

Произвольные поля видны на вашей странице профиля.

\n\t\t\t\t

В значениях полей можно использовать BBCode.

\n\t\t\t\t

Меняйте порядок перетаскиванием.

\n\t\t\t\t

Сотрите название для удаления поля.

\n\t\t\t\t

Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных групп.

"; $a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."; $a->strings["Unable to process image"] = "Не удается обработать изображение"; -$a->strings["Photo not found."] = ""; -$a->strings["Profile picture successfully updated."] = ""; +$a->strings["Photo not found."] = "Фото не найдено."; +$a->strings["Profile picture successfully updated."] = "Картинка профиля успешно обновлена."; $a->strings["Crop Image"] = "Обрезать изображение"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра."; -$a->strings["Use Image As Is"] = ""; +$a->strings["Use Image As Is"] = "Использовать картинку как есть"; $a->strings["Missing uploaded image."] = "Отсутствует загруженное изображение"; -$a->strings["Image uploaded successfully."] = "Изображение загружено успешно."; $a->strings["Profile Picture Settings"] = "Настройки картинки профиля"; $a->strings["Current Profile Picture"] = "Текущая картинка профиля"; $a->strings["Upload Profile Picture"] = "Загрузить картинку профиля"; @@ -2133,23 +2012,23 @@ $a->strings["Upload Picture:"] = "Загрузить картинку:"; $a->strings["or"] = "или"; $a->strings["skip this step"] = "пропустить этот шаг"; $a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов"; -$a->strings["Please enter your password to access this page."] = "Пожалуйста, введите ваш пароль для доступа к этой странице."; -$a->strings["App-specific password generation failed: The description is empty."] = ""; -$a->strings["App-specific password generation failed: This description already exists."] = ""; -$a->strings["New app-specific password generated."] = ""; -$a->strings["App-specific passwords successfully revoked."] = ""; -$a->strings["App-specific password successfully revoked."] = ""; -$a->strings["Two-factor app-specific passwords"] = ""; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; -$a->strings["Description"] = ""; -$a->strings["Last Used"] = ""; -$a->strings["Revoke"] = ""; -$a->strings["Revoke All"] = ""; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = ""; -$a->strings["Generate new app-specific password"] = ""; -$a->strings["Friendiqa on my Fairphone 2..."] = ""; -$a->strings["Generate"] = ""; +$a->strings["Delegation successfully granted."] = "Делегирование успешно предоставлено."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "Родительский пользователь не найден, недоступен или пароль не совпадает."; +$a->strings["Delegation successfully revoked."] = "Делегирование успешно отменено."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "Администраторы-делегаты могут видеть, но не менять разрешения делегирования."; +$a->strings["Delegate user not found."] = "Пользователь-делегат не найден."; +$a->strings["No parent user"] = "Нет родительского пользователя"; +$a->strings["Parent User"] = "Родительский пользователь"; +$a->strings["Additional Accounts"] = "Дополнительные учётные записи"; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = ""; +$a->strings["Register an additional account"] = ""; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; +$a->strings["Delegates"] = "Делегаты"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."; +$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы"; +$a->strings["Potential Delegates"] = "Возможные доверенные лица"; +$a->strings["Add"] = "Добавить"; +$a->strings["No entries."] = "Нет записей."; $a->strings["Two-factor authentication successfully disabled."] = ""; $a->strings["Wrong Password"] = "Неверный пароль."; $a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = ""; @@ -2171,152 +2050,76 @@ $a->strings["Disable two-factor authentication"] = ""; $a->strings["Show recovery codes"] = "Показать коды восстановления"; $a->strings["Manage app-specific passwords"] = "Управление паролями приложений"; $a->strings["Finish app configuration"] = "Закончить настройку приложения"; -$a->strings["New recovery codes successfully generated."] = "Новые коды восстановления успешно сгенерированы."; -$a->strings["Two-factor recovery codes"] = "Коды восстановления для ДФА"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = ""; -$a->strings["Generate new recovery codes"] = "Сгенерировать новые коды восстановления."; -$a->strings["Next: Verification"] = ""; +$a->strings["Please enter your password to access this page."] = "Пожалуйста, введите ваш пароль для доступа к этой странице."; $a->strings["Two-factor authentication successfully activated."] = ""; $a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = ""; $a->strings["Two-factor code verification"] = ""; $a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = ""; $a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = ""; $a->strings["Verify code and enable two-factor authentication"] = ""; +$a->strings["New recovery codes successfully generated."] = "Новые коды восстановления успешно сгенерированы."; +$a->strings["Two-factor recovery codes"] = "Коды восстановления для ДФА"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = ""; +$a->strings["Generate new recovery codes"] = "Сгенерировать новые коды восстановления."; +$a->strings["Next: Verification"] = ""; +$a->strings["App-specific password generation failed: The description is empty."] = ""; +$a->strings["App-specific password generation failed: This description already exists."] = ""; +$a->strings["New app-specific password generated."] = ""; +$a->strings["App-specific passwords successfully revoked."] = ""; +$a->strings["App-specific password successfully revoked."] = ""; +$a->strings["Two-factor app-specific passwords"] = ""; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; +$a->strings["Description"] = ""; +$a->strings["Last Used"] = ""; +$a->strings["Revoke"] = ""; +$a->strings["Revoke All"] = ""; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = ""; +$a->strings["Generate new app-specific password"] = ""; +$a->strings["Friendiqa on my Fairphone 2..."] = ""; +$a->strings["Generate"] = ""; +$a->strings["The theme you chose isn't available."] = ""; +$a->strings["%s - (Unsupported)"] = ""; +$a->strings["Display Settings"] = "Внешний вид"; +$a->strings["General Theme Settings"] = "Общие настройки тем"; +$a->strings["Custom Theme Settings"] = "Личные настройки тем"; +$a->strings["Content Settings"] = "Настройки контента"; +$a->strings["Calendar"] = "Календарь"; +$a->strings["Display Theme:"] = "Показать тему:"; +$a->strings["Mobile Theme:"] = "Мобильная тема:"; +$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["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Минимум 10 секунд. Введите -1 для отключения."; +$a->strings["Automatic updates only at the top of the post stream pages"] = ""; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; +$a->strings["Don't show emoticons"] = "не показывать emoticons"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = ""; +$a->strings["Infinite scroll"] = "Бесконечная прокрутка"; +$a->strings["Automatic fetch new items when reaching the page end."] = ""; +$a->strings["Disable Smart Threading"] = "Отключить умное ветвление"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Отключить автоматическое удаление излишних отступов в ветках диалогов."; +$a->strings["Hide the Dislike feature"] = "Убрать функцию \"Не нравится\""; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Убирает кнопку \"Не нравится\" и отображение реакции \"не нравится\" в постах и комментариях."; +$a->strings["Beginning of week:"] = "Начало недели:"; $a->strings["Export account"] = "Экспорт аккаунта"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."; $a->strings["Export all"] = "Экспорт всего"; $a->strings["Export your account 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)"] = "Выгрузить информацию о вашей учётной записи, контактах и всех ваших записях как файл JSON. Это может занять много времени и создать очень большой файл. Используйте это для создания резервной копии вашей учётной записи (изображения в неё не войдут)."; $a->strings["Export Contacts to CSV"] = "Экспорт контактов в CSV"; $a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с Mastodon и др."; -$a->strings["Bad Request"] = "Ошибочный запрос"; -$a->strings["Unauthorized"] = "Нет авторизации"; -$a->strings["Forbidden"] = "Запрещено"; -$a->strings["Not Found"] = "Не найдено"; -$a->strings["Internal Server Error"] = "Внутренняя ошибка сервера"; -$a->strings["Service Unavailable"] = "Служба недоступна"; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; -$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; -$a->strings["The requested resource could not be found but may be available in the future."] = ""; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; -$a->strings["Privacy Statement"] = ""; -$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica"; -$a->strings["New Member Checklist"] = "Новый контрольный список участников"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."; -$a->strings["Getting Started"] = "Начало работы"; -$a->strings["Friendica Walk-Through"] = "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."] = "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."; -$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."; -$a->strings["Edit Your Profile"] = "Редактировать профиль"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."; -$a->strings["Profile Keywords"] = "Ключевые слова профиля"; -$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; -$a->strings["Connecting"] = "Подключение"; -$a->strings["Importing Emails"] = "Импортирование 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"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; -$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт."; -$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Подписаться на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."; -$a->strings["Finding New People"] = "Поиск людей"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."; -$a->strings["Group Your Contacts"] = "Группа \"ваши контакты\""; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."; -$a->strings["Why Aren't My Posts Public?"] = "Почему мои записи не публичные?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."; -$a->strings["Getting Help"] = "Получить помощь"; -$a->strings["Go to the Help Section"] = "Перейти в раздел справки"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica."; -$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."; -$a->strings["%s posted an update."] = "%s отправил/а/ обновление."; -$a->strings["This entry was edited"] = "Эта запись была отредактирована"; -$a->strings["Private Message"] = "Личное сообщение"; -$a->strings["pinned item"] = "закреплённая запись"; -$a->strings["Delete locally"] = "Удалить для себя"; -$a->strings["Delete globally"] = "Удалить везде"; -$a->strings["Remove locally"] = "Убрать для себя"; -$a->strings["save to folder"] = "сохранить в папке"; -$a->strings["I will attend"] = "Я буду"; -$a->strings["I will not attend"] = "Меня не будет"; -$a->strings["I might attend"] = "Возможно"; -$a->strings["ignore thread"] = "игнорировать тему"; -$a->strings["unignore thread"] = "не игнорировать тему"; -$a->strings["toggle ignore status"] = "изменить статус игнорирования"; -$a->strings["pin"] = "Закрепить"; -$a->strings["unpin"] = "Открепить"; -$a->strings["toggle pin status"] = "закрепить/открепить"; -$a->strings["pinned"] = "закреплено"; -$a->strings["add star"] = "пометить"; -$a->strings["remove star"] = "убрать метку"; -$a->strings["toggle star status"] = "переключить статус"; -$a->strings["starred"] = "помечено"; -$a->strings["add tag"] = "добавить ключевое слово (тег)"; -$a->strings["like"] = "нравится"; -$a->strings["dislike"] = "не нравится"; -$a->strings["Share this"] = "Поделитесь этим"; -$a->strings["share"] = "поделиться"; -$a->strings["%s (Received %s)"] = "%s (Получено %s)"; -$a->strings["Comment this item on your system"] = ""; -$a->strings["remote comment"] = ""; -$a->strings["Pushed"] = ""; -$a->strings["Pulled"] = ""; -$a->strings["to"] = "к"; -$a->strings["via"] = "через"; -$a->strings["Wall-to-Wall"] = "Стена-на-Стену"; -$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:"; -$a->strings["Reply to %s"] = ""; -$a->strings["More"] = "Ещё"; -$a->strings["Notifier task is pending"] = "Постановка в очередь"; -$a->strings["Delivery to remote servers is pending"] = "Ожидается отправка адресатам"; -$a->strings["Delivery to remote servers is underway"] = "Отправка адресатам в процессе"; -$a->strings["Delivery to remote servers is mostly done"] = "Отправка адресатам почти завершилась"; -$a->strings["Delivery to remote servers is done"] = "Отправка адресатам завершена"; -$a->strings["%d comment"] = [ - 0 => "%d комментарий", - 1 => "%d комментариев", - 2 => "%d комментариев", - 3 => "%d комментариев", -]; -$a->strings["Show more"] = ""; -$a->strings["Show fewer"] = ""; -$a->strings["Attachments:"] = "Вложения:"; +$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; $a->strings["%s is now following %s."] = "%s теперь подписан на %s."; $a->strings["following"] = "следует"; $a->strings["%s stopped following %s."] = "%s отписался от %s."; $a->strings["stopped following"] = "отписка от"; -$a->strings["Hometown:"] = "Родной город:"; -$a->strings["Marital Status:"] = ""; -$a->strings["With:"] = ""; -$a->strings["Since:"] = ""; -$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:"; -$a->strings["Political Views:"] = "Политические взгляды:"; -$a->strings["Religious Views:"] = "Религиозные взгляды:"; -$a->strings["Likes:"] = "Нравится:"; -$a->strings["Dislikes:"] = "Не нравится:"; -$a->strings["Title/Description:"] = "Заголовок / Описание:"; -$a->strings["Musical interests"] = "Музыкальные интересы"; -$a->strings["Books, literature"] = "Книги, литература"; -$a->strings["Television"] = "Телевидение"; -$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; -$a->strings["Hobbies/Interests"] = "Хобби / Интересы"; -$a->strings["Love/romance"] = "Любовь / романтика"; -$a->strings["Work/employment"] = "Работа / занятость"; -$a->strings["School/education"] = "Школа / образование"; -$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети"; -$a->strings["Friendica Notification"] = "Уведомления Friendica"; +$a->strings["Attachments:"] = "Вложения:"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, администратор %2\$s"; $a->strings["%s Administrator"] = "%s администратор"; $a->strings["thanks"] = "спасибо"; +$a->strings["Friendica Notification"] = "Уведомления Friendica"; $a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD"; $a->strings["never"] = "никогда"; $a->strings["less than a second ago"] = "менее сек. назад"; @@ -2333,58 +2136,248 @@ $a->strings["second"] = "секунда"; $a->strings["seconds"] = "сек."; $a->strings["in %1\$d %2\$s"] = "в %1\$d %2\$s"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; -$a->strings["(no subject)"] = "(без темы)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; -$a->strings["%s: Updating post-type."] = ""; -$a->strings["default"] = "значение по умолчанию"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Вариации"; -$a->strings["Custom"] = "Другое"; -$a->strings["Note"] = "Примечание"; -$a->strings["Check image permissions if all users are allowed to see the image"] = "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям."; -$a->strings["Select color scheme"] = "Выбор цветовой схемы"; -$a->strings["Copy or paste schemestring"] = "Скопируйте или вставьте строку оформления темы"; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы."; -$a->strings["Navigation bar background color"] = "Цвет фона навигационной панели"; -$a->strings["Navigation bar icon color "] = "Цвет иконок в навигационной панели"; -$a->strings["Link color"] = "Цвет ссылок"; -$a->strings["Set the background color"] = "Установить цвет фона"; -$a->strings["Content background opacity"] = "Прозрачность фона основного содержимого"; -$a->strings["Set the background image"] = "Установить фоновую картинку"; -$a->strings["Background image style"] = "Стиль фонового изображения"; -$a->strings["Login page background image"] = "Фоновое изображение страницы входа"; -$a->strings["Login page background color"] = "Цвет фона страницы входа"; -$a->strings["Leave background image and color empty for theme defaults"] = "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию."; -$a->strings["Skip to main content"] = "Пропустить до основного содержимого"; -$a->strings["Top Banner"] = "Верхний баннер"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Растянуть изображение по ширине экрана и показать заливку цветом под ним на длинных страницах."; -$a->strings["Full screen"] = "Во весь экран"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Растянуть изображение во весь экран, обрезав его часть справа или снизу."; -$a->strings["Single row mosaic"] = "Мозаика в один ряд"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Растянуть и размножить изображение в один ряд, вертикально или горизонтально."; -$a->strings["Mosaic"] = "Мозаика"; -$a->strings["Repeat image to fill the screen."] = "Размножить изображение по всему экрану"; -$a->strings["Guest"] = "Гость"; -$a->strings["Visitor"] = "Посетитель"; -$a->strings["Alignment"] = "Выравнивание"; -$a->strings["Left"] = "Слева"; -$a->strings["Center"] = "Центр"; -$a->strings["Color scheme"] = "Цветовая схема"; -$a->strings["Posts font size"] = "Размер шрифта записей"; -$a->strings["Textareas font size"] = "Размер шрифта текстовых полей"; -$a->strings["Comma separated list of helper forums"] = "Разделенный запятыми список форумов помощи"; -$a->strings["don't show"] = "не показывать"; -$a->strings["show"] = "показывать"; -$a->strings["Set style"] = "Установить стиль"; -$a->strings["Community Pages"] = "Страницы сообщества"; -$a->strings["Community Profiles"] = "Профили сообщества"; -$a->strings["Help or @NewHere ?"] = "Помощь"; -$a->strings["Connect Services"] = "Подключить службы"; -$a->strings["Find Friends"] = "Найти друзей"; -$a->strings["Last users"] = "Последние пользователи"; -$a->strings["Quick Start"] = "Быстрый запуск"; +$a->strings["Database storage failed to update %s"] = "Хранилищу БД не удалось обновить %s"; +$a->strings["Database storage failed to insert data"] = "Хранилищу БД не удалось записать данные"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Файловому хранилищу не удалось создать \"%s\". Проверьте, есть ли у вас разрешения на запись."; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Файловому хранилищу не удалось записать данные в \"%s\". Проверьте, есть ли у вас разрешения на запись."; +$a->strings["Storage base path"] = "Корневой каталог хранилища"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Каталог, куда сохраняются загруженные файлы. Для максимальной безопасности этот каталог должен быть размещён вне каталогов веб-сервера."; +$a->strings["Enter a valid existing folder"] = "Введите путь к существующему каталогу"; +$a->strings["activity"] = "активность"; +$a->strings["post"] = "сообщение"; +$a->strings["Content warning: %s"] = "Предупреждение о контенте: %s"; +$a->strings["bytes"] = "байт"; +$a->strings["View on separate page"] = "Посмотреть в отдельной вкладке"; +$a->strings["view on separate page"] = "посмотреть на отдельной вкладке"; +$a->strings["link to source"] = "ссылка на сообщение"; +$a->strings["[no subject]"] = "[без темы]"; +$a->strings["UnFollow"] = "Отписаться"; +$a->strings["Drop Contact"] = "Удалить контакт"; +$a->strings["Organisation"] = "Организация"; +$a->strings["News"] = "Новости"; +$a->strings["Forum"] = "Форум"; +$a->strings["Connect URL missing."] = "Connect-URL отсутствует."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети."; +$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы."; +$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации."; +$a->strings["An author or name was not found."] = "Автор или имя не найдены."; +$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Не получается совместить этот адрес с известным протоколом или контактом электронной почты."; +$a->strings["Use mailto: in front of address to force email check."] = "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."; +$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию."; +$a->strings["Starts:"] = "Начало:"; +$a->strings["Finishes:"] = "Окончание:"; +$a->strings["all-day"] = "Весь день"; +$a->strings["Sept"] = "Сен"; +$a->strings["No events to display"] = "Нет событий для показа"; +$a->strings["l, F j"] = "l, j F"; +$a->strings["Edit event"] = "Редактировать мероприятие"; +$a->strings["Duplicate event"] = "Дубликат события"; +$a->strings["Delete event"] = "Удалить событие"; +$a->strings["D g:i A"] = "D g:i A"; +$a->strings["g:i A"] = "g:i A"; +$a->strings["Show map"] = "Показать карту"; +$a->strings["Hide map"] = "Скрыть карту"; +$a->strings["%s's birthday"] = "день рождения %s"; +$a->strings["Happy Birthday %s"] = "С днём рождения %s"; +$a->strings["Login failed"] = "Вход не удался"; +$a->strings["Not enough information to authenticate"] = "Недостаточно информации для входа"; +$a->strings["Password can't be empty"] = "Пароль не может быть пустым"; +$a->strings["Empty passwords are not allowed."] = "Пароль не должен быть пустым."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Пароль не может содержать символы с акцентами, пробелы или двоеточия (:)"; +$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен."; +$a->strings["An invitation is required."] = "Требуется приглашение."; +$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; +$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; +$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; +$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) и system.username_max_length (%s) противоречат друг другу, меняем их местами."; +$a->strings["Username should be at least %s character."] = [ + 0 => "Имя пользователя должно быть хотя бы %s символ.", + 1 => "Имя пользователя должно быть хотя бы %s символа.", + 2 => "Имя пользователя должно быть хотя бы %s символов.", + 3 => "Имя пользователя должно быть хотя бы %s символов.", +]; +$a->strings["Username should be at most %s character."] = [ + 0 => "Имя пользователя должно быть не больше %s символа.", + 1 => "Имя пользователя должно быть не больше %s символов", + 2 => "Имя пользователя должно быть не больше %s символов.", + 3 => "Имя пользователя должно быть не больше %s символов.", +]; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя."; +$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; +$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; +$a->strings["The nickname was blocked from registration by the nodes admin."] = "Этот ник был заблокирован для регистрации администратором узла."; +$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Ваш ник может содержать только символы a-z, 0-9 и _."; +$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; +$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; +$a->strings["An error occurred creating your self contact. Please try again."] = "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз."; +$a->strings["Friends"] = "Друзья"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "При создании группы контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tУважаемый(ая) %1\$s,\n\t\t\tадминистратор %2\$s создал для вас учётную запись."; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tДанные для входа в систему:\n\n\t\tМестоположение сайта:\t%1\$s\n\t\tЛогин:\t\t%2\$s\n\t\tПароль:\t\t%3\$s\n\n\t\tВы можете изменить пароль на странице \"Настройки\" после авторизации.\n\n\t\tПожалуйста, уделите время ознакомлению с другими другие настройками аккаунта на этой странице.\n\n\n\t\tВы также можете захотеть добавить немного базовой информации к вашему стандартному профилю\n\t\t(на странице \"Информация\") чтобы другим людям было проще вас найти.\n\n\t\tМы рекомендуем указать ваше полное имя, добавить фотографию,\n\t\tнемного \"ключевых слов\" (очень полезно, чтобы завести новых друзей)\n\t\tи возможно страну вашего проживания; если вы не хотите быть более конкретным.\n\n\t\tМы полностью уважаем ваше право на приватность, поэтому ничего из этого не является обязательным.\n\t\tЕсли же вы новичок и никого не знаете, это может помочь\n\t\tвам завести новых интересных друзей.\n\n\t\tЕсли вы когда-нибудь захотите удалить свой аккаунт, вы можете сделать это перейдя по ссылке %1\$s/removeme\n\n\t\tСпасибо и добро пожаловать в %4\$s."; +$a->strings["Registration details for %s"] = "Подробности регистрации для %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tУважаемый %1\$s,\n\t\t\t\tБлагодарим Вас за регистрацию на %2\$s. Ваш аккаунт ожидает подтверждения администратором.\n\n\t\t\tВаши данные для входа в систему:\n\n\t\t\tМестоположение сайта:\t%3\$s\n\t\t\tЛогин:\t\t%4\$s\n\t\t\tПароль:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Регистрация на %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tУважаемый(ая) %1\$s,\n\t\t\t\tСпасибо за регистрацию на %2\$s. Ваша учётная запись создана.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tДанные для входа:\n\n\t\t\tАдрес сайта:\t%3\$s\n\t\t\tИмя:\t\t%1\$s\n\t\t\tПароль:\t\t%5\$s\n\n\t\t\tВы можете сменить пароль в настройках учётной записи после входа.\n\t\t\t\n\n\t\t\tТакже обратите внимание на другие настройки на этой странице.\n\n\t\t\tВы можете захотеть добавить основную информацию о себе\n\t\t\tна странице \"Профиль\", чтобы другие люди легко вас нашли.\n\n\t\t\tМы рекомендуем указать полное имя и установить фото профиля,\n\t\t\tдобавить ключевые слова для поиска друзей по интересам,\n\t\t\tи, вероятно, страну вашего проживания.\n\n\t\t\tМы уважаем вашу приватность и ничто из вышеуказанного не обязательно.\n\t\t\tЕсли вы новичок и пока никого здесь не знаете, то это поможет\n\t\t\tвам найти новых интересных друзей.\n\n\t\t\tЕсли вы захотите удалить свою учётную запись, то сможете сделать это на %3\$s/removeme\n\n\t\t\tСпасибо и добро пожаловать на %2\$s."; +$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."] = "Удаленная группа с таким названием была восстановлена. Существующие права доступа могут применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."; +$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов"; +$a->strings["Everybody"] = "Каждый"; +$a->strings["edit"] = "редактировать"; +$a->strings["add"] = "добавить"; +$a->strings["Edit group"] = "Редактировать группу"; +$a->strings["Create a new group"] = "Создать новую группу"; +$a->strings["Edit groups"] = "Редактировать группы"; +$a->strings["Change profile photo"] = "Изменить фото профиля"; +$a->strings["Atom feed"] = "Фид Atom"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[сегодня]"; +$a->strings["Birthday Reminders"] = "Напоминания о днях рождения"; +$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:"; +$a->strings["[No description]"] = "[без описания]"; +$a->strings["Event Reminders"] = "Напоминания о мероприятиях"; +$a->strings["Upcoming events the next 7 days:"] = "События на ближайшие 7 дней:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s приветствует %2\$s"; +$a->strings["Add New Contact"] = "Добавить контакт"; +$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Подключить"; +$a->strings["%d invitation available"] = [ + 0 => "%d приглашение доступно", + 1 => "%d приглашений доступно", + 2 => "%d приглашений доступно", + 3 => "%d приглашений доступно", +]; +$a->strings["Everyone"] = "Все"; +$a->strings["Relationships"] = "Отношения"; +$a->strings["Protocols"] = "Протоколы"; +$a->strings["All Protocols"] = "Все протоколы"; +$a->strings["Saved Folders"] = "Сохранённые папки"; +$a->strings["Everything"] = "Всё"; +$a->strings["Categories"] = "Категории"; +$a->strings["%d contact in common"] = [ + 0 => "%d Контакт", + 1 => "%d Контактов", + 2 => "%d Контактов", + 3 => "%d Контактов", +]; +$a->strings["Archives"] = "Архивы"; +$a->strings["Frequently"] = "Часто"; +$a->strings["Hourly"] = "Раз в час"; +$a->strings["Twice daily"] = "Дважды в день"; +$a->strings["Daily"] = "Раз в день"; +$a->strings["Weekly"] = "Раз в неделю"; +$a->strings["Monthly"] = "Раз в месяц"; +$a->strings["DFRN"] = "DFRN"; +$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["Discourse"] = "Discourse"; +$a->strings["Diaspora Connector"] = "Diaspora Connector"; +$a->strings["GNU Social Connector"] = "GNU Social Connector"; +$a->strings["ActivityPub"] = "ActivityPub"; +$a->strings["pnut"] = "pnut"; +$a->strings["%s (via %s)"] = "%s (через %s)"; +$a->strings["General Features"] = "Основные возможности"; +$a->strings["Photo Location"] = "Место фотографирования"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте."; +$a->strings["Trending Tags"] = "Популярные тэги"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Показать облако популярных тэгов на странице публичных записей сервера"; +$a->strings["Post Composition Features"] = "Составление сообщений"; +$a->strings["Auto-mention Forums"] = "Автоматически отмечать форумы"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Добавлять/удалять упоминание, когда страница форума выбрана/убрана в списке получателей."; +$a->strings["Explicit Mentions"] = "Явные отметки"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Вставлять отметки пользователей в поле комментариев, чтобы иметь ручной контроль над тем, кто будет упомянут в ответе."; +$a->strings["Post/Comment Tools"] = "Инструменты записей/комментариев"; +$a->strings["Post Categories"] = "Категории записей"; +$a->strings["Add categories to your posts"] = "Добавить категории для ваших записей"; +$a->strings["Advanced Profile Settings"] = "Расширенные настройки профиля"; +$a->strings["List Forums"] = "Список форумов"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Показывать посетителям публичные форумы на расширенной странице профиля."; +$a->strings["Tag Cloud"] = "Облако тэгов"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Показывать ваше личное облако тэгов в вашем профиле"; +$a->strings["Display Membership Date"] = "Показывать дату регистрации"; +$a->strings["Display membership date in profile"] = "Дата вашей регистрации будет отображаться в вашем профиле"; +$a->strings["Nothing new here"] = "Ничего нового здесь"; +$a->strings["Clear notifications"] = "Стереть уведомления"; +$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент"; +$a->strings["End this session"] = "Завершить эту сессию"; +$a->strings["Sign in"] = "Вход"; +$a->strings["Personal notes"] = "Личные заметки"; +$a->strings["Your personal notes"] = "Ваши личные заметки"; +$a->strings["Home"] = "Мой профиль"; +$a->strings["Home Page"] = "Главная страница"; +$a->strings["Create an account"] = "Создать аккаунт"; +$a->strings["Help and documentation"] = "Помощь и документация"; +$a->strings["Apps"] = "Приложения"; +$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры"; +$a->strings["Search site content"] = "Поиск по сайту"; +$a->strings["Full Text"] = "Контент"; +$a->strings["Tags"] = "Тэги"; +$a->strings["Community"] = "Сообщество"; +$a->strings["Conversations on this and other servers"] = "Диалоги на этом и других серверах"; +$a->strings["Directory"] = "Каталог"; +$a->strings["People directory"] = "Каталог участников"; +$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica"; +$a->strings["Terms of Service of this Friendica instance"] = "Условия оказания услуг для этого узла Friendica"; +$a->strings["Introductions"] = "Запросы"; +$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; +$a->strings["See all notifications"] = "Посмотреть все уведомления"; +$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные"; +$a->strings["Inbox"] = "Входящие"; +$a->strings["Outbox"] = "Исходящие"; +$a->strings["Accounts"] = "Учётные записи"; +$a->strings["Manage other pages"] = "Управление другими страницами"; +$a->strings["Site setup and configuration"] = "Конфигурация сайта"; +$a->strings["Navigation"] = "Навигация"; +$a->strings["Site map"] = "Карта сайта"; +$a->strings["Remove term"] = "Удалить элемент"; +$a->strings["Saved Searches"] = "запомненные поиски"; +$a->strings["Export"] = "Экспорт"; +$a->strings["Export calendar as ical"] = "Экспортировать календарь в формат ical"; +$a->strings["Export calendar as csv"] = "Экспортировать календарь в формат csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "Популярные тэги (за %d час)", + 1 => "Популярные тэги (за %d часа)", + 2 => "Популярные тэги (за %d часов)", + 3 => "Популярные тэги (за %d часов)", +]; +$a->strings["More Trending Tags"] = "Больше популярных тэгов"; +$a->strings["No contacts"] = "Нет контактов"; +$a->strings["%d Contact"] = [ + 0 => "%d контакт", + 1 => "%d контактов", + 2 => "%d контактов", + 3 => "%d контактов", +]; +$a->strings["View Contacts"] = "Просмотр контактов"; +$a->strings["newer"] = "новее"; +$a->strings["older"] = "старее"; +$a->strings["Embedding disabled"] = "Встраивание отключено"; +$a->strings["Embedded content"] = "Встроенное содержание"; +$a->strings["prev"] = "пред."; +$a->strings["last"] = "последний"; +$a->strings["Loading more entries..."] = "Загружаю больше сообщений..."; +$a->strings["The end"] = "Конец"; +$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть"; +$a->strings["Image/photo"] = "Изображение / Фото"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 написал:"; +$a->strings["Encrypted content"] = "Зашифрованный контент"; +$a->strings["Invalid source protocol"] = "Неправильный протокол источника"; +$a->strings["Invalid link protocol"] = "Неправильная протокольная ссылка"; +$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."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; From 8c04ca9cfc814d12c7add4f90de336efab9dff3e Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:33:46 +0200 Subject: [PATCH 12/44] update to the zh-cn translation THX vicdorke --- view/lang/zh-cn/messages.po | 16131 +++++++++++++++++----------------- view/lang/zh-cn/strings.php | 3699 ++++---- 2 files changed, 9899 insertions(+), 9931 deletions(-) diff --git a/view/lang/zh-cn/messages.po b/view/lang/zh-cn/messages.po index a027501537..24e21dbb97 100644 --- a/view/lang/zh-cn/messages.po +++ b/view/lang/zh-cn/messages.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-06-10 14:07+0000\n" -"Last-Translator: steve jobs \n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-05 00:17+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Chinese (China) (http://www.transifex.com/Friendica/friendica/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,431 +26,801 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "默认" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "提交" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "主题设置" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "变化" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "对齐" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "左边" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "中间" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "色彩方案" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "文章" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "文本区字体大小" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "不要显示" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "显示" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "设置风格" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "社会页" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "社会简介" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "需要帮助或@第一次来这儿?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "连接服务" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "找朋友们" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "上次用户" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "找人物" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "输入名字或兴趣" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "连接/关注" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "比如:罗伯特·摩根斯坦,钓鱼" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "搜索" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "朋友推荐" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "相似兴趣" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "随机简介" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "邀请朋友们" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "综合目录" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "本地目录" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "论坛" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "到论坛的外链" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "显示更多" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "快速入门" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "帮助" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "便条" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "链接颜色" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "设置背景色" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "设置背景图片" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "登录页面背景图片" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "登录页面背景色" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "访客" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "状态" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "你的消息和交谈" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "个人资料" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "你的简介页" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "照片" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "你的照片" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "视频" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "你的视频" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "活动日历" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "你的活动" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "网络" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "来自你的朋友们的交谈" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "事件和日历" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "消息" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "私人的邮件" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "设置" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "帐户设置" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "联系人" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "管理/编辑朋友和联系人" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "关注主题" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "顶部横幅" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "" + +#: update.php:195 #, php-format -msgid "Daily posting limit of %d post reached. The post was rejected." -msgid_plural "Daily posting limit of %d posts reached. The post was rejected." -msgstr[0] "达到每日 %d 发文限制。此文被拒绝发出。" +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "" -#: include/api.php:1137 +#: update.php:250 #, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "达到每周 %d 发文限制。此文被拒绝发出。" +msgid "%s: Updating post-type." +msgstr "" -#: include/api.php:1151 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "达到每月 %d 发文限制。此文被拒绝发出。" - -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 -#: src/Module/Settings/Profile/Photo/Crop.php:113 -#: src/Module/Settings/Profile/Photo/Crop.php:129 -#: src/Module/Settings/Profile/Photo/Crop.php:178 -#: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 -msgid "Profile Photos" -msgstr "简介照片" - -#: include/conversation.php:189 +#: include/conversation.php:188 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s戳%2$s" -#: include/conversation.php:221 src/Model/Item.php:3444 +#: include/conversation.php:220 src/Model/Item.php:3330 msgid "event" msgstr "活动" -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 msgid "status" msgstr "状态" -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 msgid "photo" msgstr "照片" -#: include/conversation.php:243 mod/tagger.php:121 +#: include/conversation.php:242 mod/tagger.php:122 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s 把 %2$s 的 %3$s 标记为 %4$s" -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 msgid "Select" msgstr "选择" -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 msgid "Delete" msgstr "删除" -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 #, php-format msgid "View %s's profile @ %s" -msgstr "看%s的简介@ %s" +msgstr "看%s的个人资料@ %s" -#: include/conversation.php:603 src/Object/Post.php:426 +#: include/conversation.php:602 src/Object/Post.php:428 msgid "Categories:" msgstr "类别 :" -#: include/conversation.php:604 src/Object/Post.php:427 +#: include/conversation.php:603 src/Object/Post.php:429 msgid "Filed under:" msgstr "归档于 :" -#: include/conversation.php:611 src/Object/Post.php:452 +#: include/conversation.php:610 src/Object/Post.php:454 #, php-format msgid "%s from %s" msgstr "%s 来自 %s" -#: include/conversation.php:626 +#: include/conversation.php:625 msgid "View in context" msgstr "查看全文" -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 msgid "Please wait" msgstr "请稍等" -#: include/conversation.php:692 +#: include/conversation.php:691 msgid "remove" msgstr "删除" -#: include/conversation.php:696 +#: include/conversation.php:695 msgid "Delete Selected Items" msgstr "删除选中项目" -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "关注主题" - -#: include/conversation.php:858 src/Model/Contact.php:1277 +#: include/conversation.php:876 src/Model/Contact.php:1170 msgid "View Status" msgstr "查看状态" -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 msgid "View Profile" -msgstr "查看简介" +msgstr "查看个人资料" -#: include/conversation.php:860 src/Model/Contact.php:1279 +#: include/conversation.php:878 src/Model/Contact.php:1172 msgid "View Photos" msgstr "查看照片" -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 msgid "Network Posts" msgstr "网络文章" -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 msgid "View Contact" msgstr "查看联系人" -#: include/conversation.php:863 src/Model/Contact.php:1283 +#: include/conversation.php:881 src/Model/Contact.php:1176 msgid "Send PM" msgstr "发送私信" -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 msgid "Block" msgstr "屏蔽" -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 #: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 msgid "Ignore" msgstr "忽视" -#: include/conversation.php:869 src/Model/Contact.php:1284 +#: include/conversation.php:887 src/Model/Contact.php:1177 msgid "Poke" -msgstr "" +msgstr "戳" -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "连接/关注" - -#: include/conversation.php:1000 +#: include/conversation.php:1018 #, php-format msgid "%s likes this." msgstr "%s 赞了这个。" -#: include/conversation.php:1003 +#: include/conversation.php:1021 #, php-format msgid "%s doesn't like this." msgstr "%s 觉得不赞。" -#: include/conversation.php:1006 +#: include/conversation.php:1024 #, php-format msgid "%s attends." msgstr "%s 参加。" -#: include/conversation.php:1009 +#: include/conversation.php:1027 #, php-format msgid "%s doesn't attend." msgstr "%s 不参加。" -#: include/conversation.php:1012 +#: include/conversation.php:1030 #, php-format msgid "%s attends maybe." msgstr "%s可能参加。" -#: include/conversation.php:1015 include/conversation.php:1058 +#: include/conversation.php:1033 include/conversation.php:1076 #, php-format msgid "%s reshared this." msgstr "%s转推了本文。" -#: include/conversation.php:1023 +#: include/conversation.php:1041 msgid "and" msgstr "和" -#: include/conversation.php:1029 +#: include/conversation.php:1047 #, php-format msgid "and %d other people" msgstr "和 %d 个其他人" -#: include/conversation.php:1037 +#: include/conversation.php:1055 #, php-format msgid "%2$d people like this" msgstr "%2$d个人喜欢" -#: include/conversation.php:1038 +#: include/conversation.php:1056 #, php-format msgid "%s like this." msgstr "%s 赞了这个。" -#: include/conversation.php:1041 +#: include/conversation.php:1059 #, php-format msgid "%2$d people don't like this" msgstr "%2$d个人不喜欢" -#: include/conversation.php:1042 +#: include/conversation.php:1060 #, php-format msgid "%s don't like this." msgstr "%s 踩了这个。" -#: include/conversation.php:1045 +#: include/conversation.php:1063 #, php-format msgid "%2$d people attend" msgstr "%2$d 人参加" -#: include/conversation.php:1046 +#: include/conversation.php:1064 #, php-format msgid "%s attend." msgstr "%s 参加。" -#: include/conversation.php:1049 +#: include/conversation.php:1067 #, php-format msgid "%2$d people don't attend" msgstr "%2$d 人不参加" -#: include/conversation.php:1050 +#: include/conversation.php:1068 #, php-format msgid "%s don't attend." msgstr "%s 不参加。" -#: include/conversation.php:1053 +#: include/conversation.php:1071 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d人可能参加" -#: include/conversation.php:1054 +#: include/conversation.php:1072 #, php-format msgid "%s attend maybe." msgstr "%s可能参加。" -#: include/conversation.php:1057 +#: include/conversation.php:1075 #, php-format msgid "%2$d people reshared this" msgstr "%2$d人转推了本文" -#: include/conversation.php:1087 +#: include/conversation.php:1105 msgid "Visible to everybody" msgstr "大家可见的" -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 msgid "Please enter a image/video/audio/webpage URL:" msgstr "请输入一个图片/视频/音频/网页 URL:" -#: include/conversation.php:1089 +#: include/conversation.php:1107 msgid "Tag term:" msgstr "标签:" -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 msgid "Save to Folder:" msgstr "保存再文件夹:" -#: include/conversation.php:1091 +#: include/conversation.php:1109 msgid "Where are you right now?" msgstr "你当前在哪里?" -#: include/conversation.php:1092 +#: include/conversation.php:1110 msgid "Delete item(s)?" msgstr "删除项目吗?" -#: include/conversation.php:1124 +#: include/conversation.php:1142 msgid "New Post" msgstr "新帖" -#: include/conversation.php:1127 +#: include/conversation.php:1145 msgid "Share" msgstr "分享" -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 msgid "Loading..." msgstr "加载中…" -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 msgid "Upload photo" msgstr "上传照片" -#: include/conversation.php:1130 mod/editpost.php:91 +#: include/conversation.php:1148 mod/editpost.php:91 msgid "upload photo" msgstr "上传照片" -#: include/conversation.php:1131 mod/editpost.php:92 +#: include/conversation.php:1149 mod/editpost.php:92 msgid "Attach file" msgstr "附上文件" -#: include/conversation.php:1132 mod/editpost.php:93 +#: include/conversation.php:1150 mod/editpost.php:93 msgid "attach file" msgstr "附上文件" -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 msgid "Bold" msgstr "粗体" -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 msgid "Italic" msgstr "斜体" -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 msgid "Underline" msgstr "下划线" -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 msgid "Quote" msgstr "引语" -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 msgid "Code" msgstr "源代码" -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 msgid "Image" msgstr "图片" -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 msgid "Link" msgstr "链接" -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 msgid "Link or Media" msgstr "链接或媒体" -#: include/conversation.php:1141 mod/editpost.php:100 +#: include/conversation.php:1159 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "设定您的位置" -#: include/conversation.php:1142 mod/editpost.php:101 +#: include/conversation.php:1160 mod/editpost.php:101 msgid "set location" msgstr "指定位置" -#: include/conversation.php:1143 mod/editpost.php:102 +#: include/conversation.php:1161 mod/editpost.php:102 msgid "Clear browser location" msgstr "清空浏览器位置" -#: include/conversation.php:1144 mod/editpost.php:103 +#: include/conversation.php:1162 mod/editpost.php:103 msgid "clear location" msgstr "清除位置" -#: include/conversation.php:1146 mod/editpost.php:117 +#: include/conversation.php:1164 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "指定标题" -#: include/conversation.php:1148 mod/editpost.php:119 +#: include/conversation.php:1166 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "分类(逗号分隔)" -#: include/conversation.php:1150 mod/editpost.php:105 +#: include/conversation.php:1168 mod/editpost.php:105 msgid "Permission settings" msgstr "权限设置" -#: include/conversation.php:1151 mod/editpost.php:134 +#: include/conversation.php:1169 mod/editpost.php:134 msgid "permissions" msgstr "权限" -#: include/conversation.php:1160 mod/editpost.php:114 +#: include/conversation.php:1178 mod/editpost.php:114 msgid "Public post" msgstr "公开帖子" -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 msgid "Preview" msgstr "预览" -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "取消" -#: include/conversation.php:1173 +#: include/conversation.php:1191 msgid "Post to Groups" -msgstr "发到组" +msgstr "发帖到群组" -#: include/conversation.php:1174 +#: include/conversation.php:1192 msgid "Post to Contacts" msgstr "发给联系人" -#: include/conversation.php:1175 +#: include/conversation.php:1193 msgid "Private post" msgstr "私人帖子" -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 msgid "Message" msgstr "消息" -#: include/conversation.php:1181 mod/editpost.php:133 +#: include/conversation.php:1199 mod/editpost.php:133 msgid "Browser" msgstr "浏览器" -#: include/conversation.php:1183 mod/editpost.php:136 +#: include/conversation.php:1201 mod/editpost.php:136 msgid "Open Compose page" msgstr "打开撰写页面" @@ -458,262 +828,262 @@ msgstr "打开撰写页面" msgid "[Friendica:Notify]" msgstr "[Friendica:通知]" -#: include/enotify.php:128 +#: include/enotify.php:140 #, php-format msgid "%s New mail received at %s" msgstr "%s新邮件接收时间%s" -#: include/enotify.php:130 +#: include/enotify.php:142 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s发给您新私人通知在%2$s." -#: include/enotify.php:131 +#: include/enotify.php:143 msgid "a private message" msgstr "一条私人消息" -#: include/enotify.php:131 +#: include/enotify.php:143 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s发给您%2$s." -#: include/enotify.php:133 +#: include/enotify.php:145 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "请访问 %s 来查看并且/或者回复你的私信。" -#: include/enotify.php:177 +#: include/enotify.php:189 #, php-format msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:179 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:181 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "" +msgstr "%1$s已在以下时间回复您%2$s秒%3$s%4$s" #: include/enotify.php:191 #, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "" +msgid "%1$s tagged you on %2$s's %3$s %4$s" +msgstr "%1$s给你贴上了标签%2$s秒%3$s%4$s" #: include/enotify.php:193 #, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "" +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "%1$s评论%2$s's %3$s%4$s" -#: include/enotify.php:195 +#: include/enotify.php:203 +#, php-format +msgid "%1$s replied to you on your %2$s %3$s" +msgstr "%1$s回复你的%2$s%3$s" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s tagged you on your %2$s %3$s" +msgstr "%1$s标记你在你的%2$s%3$s" + +#: include/enotify.php:207 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: include/enotify.php:202 +#: include/enotify.php:214 #, php-format msgid "%1$s replied to you on their %2$s %3$s" msgstr "" -#: include/enotify.php:204 +#: include/enotify.php:216 #, php-format msgid "%1$s tagged you on their %2$s %3$s" msgstr "" -#: include/enotify.php:206 +#: include/enotify.php:218 #, php-format msgid "%1$s commented on their %2$s %3$s" -msgstr "" +msgstr "%1$s评论他们的%2$s%3$s" -#: include/enotify.php:217 +#: include/enotify.php:229 #, php-format msgid "%s %s tagged you" msgstr "%s%s标记了您" -#: include/enotify.php:219 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s 在 %2$s 上标记了您" -#: include/enotify.php:221 +#: include/enotify.php:233 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "" +msgstr "%1$s对话的评论%2$d来自%3$s" -#: include/enotify.php:223 +#: include/enotify.php:235 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s对你关注的项目/对话发表评论。" -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "请访问%s来查看并且/或者回复这个对话。" -#: include/enotify.php:235 +#: include/enotify.php:247 #, php-format msgid "%s %s posted to your profile wall" -msgstr "" +msgstr "%s%s贴到你的个人简介墙上" -#: include/enotify.php:237 +#: include/enotify.php:249 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s放在您的简介墙在%2$s" -#: include/enotify.php:238 +#: include/enotify.php:250 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s放在[url=%2$s]您的墙[/url]" -#: include/enotify.php:250 +#: include/enotify.php:262 #, php-format msgid "%s %s shared a new post" msgstr "%s%s分享了新帖子" -#: include/enotify.php:252 +#: include/enotify.php:264 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s分享新的消息在%2$s" -#: include/enotify.php:253 +#: include/enotify.php:265 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]分享一个消息[/url]." -#: include/enotify.php:265 +#: include/enotify.php:277 #, php-format msgid "%1$s %2$s poked you" -msgstr "" +msgstr "%1$s%2$s戳了你一下" -#: include/enotify.php:267 +#: include/enotify.php:279 #, php-format msgid "%1$s poked you at %2$s" msgstr "您被%1$s戳在%2$s" -#: include/enotify.php:268 +#: include/enotify.php:280 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s[url=%2$s]把您戳[/url]。" -#: include/enotify.php:285 +#: include/enotify.php:297 #, php-format msgid "%s %s tagged your post" msgstr "%s%s标记了您的帖子" -#: include/enotify.php:287 +#: include/enotify.php:299 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s把您的文章在%2$s标签" -#: include/enotify.php:288 +#: include/enotify.php:300 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s把[url=%2$s]您的文章[/url]标签" -#: include/enotify.php:300 +#: include/enotify.php:312 #, php-format msgid "%s Introduction received" -msgstr "" +msgstr "%s收到的介绍" -#: include/enotify.php:302 +#: include/enotify.php:314 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "您从「%1$s」受到一个介绍在%2$s" -#: include/enotify.php:303 +#: include/enotify.php:315 #, 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:308 include/enotify.php:354 +#: include/enotify.php:320 include/enotify.php:366 #, php-format msgid "You may visit their profile at %s" -msgstr "你能看他的简介在%s" +msgstr "你能看他的个人资料在%s" -#: include/enotify.php:310 +#: include/enotify.php:322 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "请批准或拒绝介绍在%s" -#: include/enotify.php:317 +#: include/enotify.php:329 #, php-format msgid "%s A new person is sharing with you" -msgstr "" +msgstr "%s一个新的人正在和你分享" -#: include/enotify.php:319 include/enotify.php:320 +#: include/enotify.php:331 include/enotify.php:332 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s 正在 %2$s 和你分享" -#: include/enotify.php:327 +#: include/enotify.php:339 #, php-format msgid "%s You have a new follower" msgstr "%s你有了一个新的关注者" -#: include/enotify.php:329 include/enotify.php:330 +#: include/enotify.php:341 include/enotify.php:342 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "你在 %2$s 有一个新的关注者: %1$s" -#: include/enotify.php:343 +#: include/enotify.php:355 #, php-format msgid "%s Friend suggestion received" -msgstr "" +msgstr "%s收到建议的朋友" -#: include/enotify.php:345 +#: include/enotify.php:357 #, 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:346 +#: include/enotify.php:358 #, 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:352 +#: include/enotify.php:364 msgid "Name:" msgstr "名字:" -#: include/enotify.php:353 +#: include/enotify.php:365 msgid "Photo:" msgstr "照片:" -#: include/enotify.php:356 +#: include/enotify.php:368 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "请访问%s来批准或拒绝这个建议。" -#: include/enotify.php:364 include/enotify.php:379 +#: include/enotify.php:376 include/enotify.php:391 #, php-format msgid "%s Connection accepted" -msgstr "" +msgstr "%s已接受连接" -#: include/enotify.php:366 include/enotify.php:381 +#: include/enotify.php:378 include/enotify.php:393 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "“%1$s”已经在 %2$s 接受了您的连接请求" -#: include/enotify.php:367 include/enotify.php:382 +#: include/enotify.php:379 include/enotify.php:394 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s 已经接受了你的[url=%1$s]连接请求[/url]。" -#: include/enotify.php:372 +#: include/enotify.php:384 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." -msgstr "你们现在已经互为朋友了,可以不受限制地交换状态更新、照片和邮件。" +msgstr "你们现在已经互为好友了,可以不受限制地交换状态更新、照片和邮件。" -#: include/enotify.php:374 +#: include/enotify.php:386 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "请访问%s如果你希望对这个关系做任何改变。" -#: include/enotify.php:387 +#: include/enotify.php:399 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -722,37 +1092,37 @@ msgid "" "automatically." msgstr "%1$s已选择接受您为粉丝,这会限制某些形式的通信,例如私信和某些个人资料交互。如果这是名人或社区页面,则会自动应用这些设置。" -#: include/enotify.php:389 +#: include/enotify.php:401 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s未来可能会选择将这种关系扩展为双向或更宽松的关系。" -#: include/enotify.php:391 +#: include/enotify.php:403 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "请访问 %s 如果你希望对修改这个关系。" -#: include/enotify.php:401 mod/removeme.php:63 +#: include/enotify.php:413 mod/removeme.php:63 msgid "[Friendica System Notify]" -msgstr "" +msgstr "[Friendica系统通知]" -#: include/enotify.php:401 +#: include/enotify.php:413 msgid "registration request" msgstr "注册请求" -#: include/enotify.php:403 +#: include/enotify.php:415 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" +msgstr "您已收到来自‘%1$s’的注册请求,地址为%2$s" -#: include/enotify.php:404 +#: include/enotify.php:416 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: include/enotify.php:409 +#: include/enotify.php:421 #, php-format msgid "" "Full Name:\t%s\n" @@ -760,664 +1130,1386 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: include/enotify.php:415 +#: include/enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "请访问%s来批准或拒绝这个请求。" -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "项目找不到。" +#: include/api.php:1127 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "达到每日 %d 发文限制。此文被拒绝发出。" -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "您真的想删除这个项目吗?" +#: include/api.php:1141 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "达到每周 %d 发文限制。此文被拒绝发出。" -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "是" +#: include/api.php:1155 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "达到每月 %d 发文限制。此文被拒绝发出。" -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "权限不够。" +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 +#: src/Module/Settings/Profile/Photo/Crop.php:113 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 +msgid "Profile Photos" +msgstr "个人资料照片" -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "授权应用连接" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "回归您的应用和输入这个安全密码:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "请登录以继续。" - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?" - -#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "否" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "权限拒绝。" -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "使用权这个简介被限制了." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "" -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "事件" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "查看" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "上" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "下" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "今天" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "月" - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "星期" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "日" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "列表" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "找不到用户" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "这个日历格式不被支持" - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "找不到可导出的数据" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "日历" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "没有共同的联系人。" - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "普通朋友们" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "找不到简介。" - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "没有找到联系人。" -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "权限不够。" + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "一天最多墙通知给%s超过了。通知没有通过 。" + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "没有选择的接受者。" + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "核对不了您的主页。" + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "消息发不了。" + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "通信受到错误。" + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "没有接受者。" + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "请输入一个链接 URL:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "发私人的通信" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。" + +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "到:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "题目:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "你的消息:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "插入网页链接" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "找不到个人资料。" + +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。" -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "遥网站的回答明白不了。" -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "居然回答从遥网站:" -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "确认成功完成。" -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "临时失败。请等一会,再试。" -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "介绍失败或被吊销。" -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "远程站点报告:" -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "找不到「%s」的用户记录" -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "看起来我们的加密钥匙失灵了。" -#: mod/dfrn_confirm.php:410 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "空的URL供应,或URL解不了码。" -#: mod/dfrn_confirm.php:426 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "无法在本站点为您找到联系人记录。" -#: mod/dfrn_confirm.php:440 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "没有网站公开钥匙在熟人记录在URL%s。" -#: mod/dfrn_confirm.php:456 +#: mod/dfrn_confirm.php:455 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:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "不能创作您的熟人证件在我们的系统。" -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "不能更新您的熟人简介消息在我们的系统" -#: mod/dfrn_confirm.php:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[名字拒给]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "拒绝公开访问" + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "没有视频被选择" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "这个项目使用权限的。" + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "察看视频" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "看照片册" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "最近的视频" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "上传新视频" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "没有要匹配的关键字。请向您的个人资料中添加关键字。" + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "首先" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "下个" + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "没有结果" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "简介符合" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "缺失一些重要数据!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "更新" + +#: mod/settings.php:200 +msgid "Failed to connect with email account using the settings provided." +msgstr "不能连接电子邮件账户用输入的设置。" + +#: mod/settings.php:229 +msgid "Contact CSV file upload error" +msgstr "联系人CSV文件上载错误" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "导入联系人完成" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "迁移消息已发送给您的联系人" + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "密码不匹配。" + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "密码更新失败了。请再试。" + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "密码已改变。" + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "密码未改变。" + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "请使用较短的名称。" + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "名称太短。" + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "密码错误。" + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "无效的邮箱。" + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "无法更改到此电子邮件地址。" + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "私人评坛没有隐私批准。默认隐私组用者。" + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "私人评坛没有隐私批准或默认隐私组。" + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "加入应用" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "保存设置" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "名字" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "用户密钥" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "使用者机密" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "重定向" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "图符URL" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "您不能编辑这个应用。" + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "已连接的应用程序" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "编辑" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "客户端密钥开头" + +#: mod/settings.php:562 +msgid "No name" +msgstr "没有名字" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "撤消权能" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "无插件设置配置完成" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "插件设置" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "附加功能" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "已启用" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "已停用" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "包括的支持为%s连通性是%s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "电子邮件访问在这个站上被禁用。" + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "没有" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "社交网络" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "通用社交媒体设置" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "只接受您关注的联系人发布的帖子" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "当评论到达时,系统会自动完成线程。这有一个副作用,那就是你可能会收到由非关注者发起的帖子,但已经被你追随者评论了。此配置将停用此行为。激活后,严格来说,你只会收到来自你真正关注的人的帖子。" + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "禁用内容警告" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "像Mastodon或Pleroma这样的网络上的用户可以设置一个内容警告字段,默认情况下会折叠他们的发帖。这将禁用自动折叠,并将内容警告设置为发帖标题。不会影响您最终设置的任何其他内容筛选。" + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "禁用智能缩短" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "通常情况下,系统会尝试找到添加到缩短帖子的最佳链接。如果启用此选项,则每个缩短的帖子都将始终指向原始的Friendica帖子。" + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "附加链接标题" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "激活后,附加链接的标题将作为标题添加到Diaspora的帖子中。这对共享提要内容的“远程自我”联系人最有帮助。" + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "自动关注任何 GNU Social (OStatus) 关注者/提及者" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "如果您收到来自未知OStatus用户的消息,则此选项决定如何操作。如果选中,将为每个未知用户创建一个新联系人。" + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "用于 OStatus 联系人的默认组" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "您遗留的 GNU Social 账户" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "如果您在这里输入您旧的 GNU Social/Statusnet 账号名 (格式示例 user@domain.tld) ,您的联系人列表将会被自动添加。完成后该字段将被清空。" + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "修复 OStatus 订阅" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "邮件收件箱设置" + +#: mod/settings.php:692 +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:693 +msgid "Last successful email check:" +msgstr "上个成功收件箱检查:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "IMAP服务器名字:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "IMAP服务器端口:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "安全:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "邮件登录名:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "邮件密码:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "回答地址:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "发送公开文章给所有的邮件联系人:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "进口后行动:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "标注看过" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "搬到文件夹" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "搬到文件夹:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "无法找到您的简介。请联系您的管理员。" + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "账户类型" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "个人页面子类型" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "社区论坛子类型" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "个人页面" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "个人配置文件的帐户。" + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "组织页面" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "作为“追随者”自动批准联系请求的组织的帐户。" + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "新闻页面" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "新闻账户,自动批准联系请求为 \"关注者\"。" + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "社区论坛" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "对社区讨论进行说明。" + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "普通帐号页面" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "需要手动批准的“朋友”和“追随者”" + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "博客页面" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "自动批准联系人请求为“关注者”。" + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "公共论坛" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "自动批准所有联系人请求。" + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "自动朋友页" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "自动批准作为“朋友”的联系请求。" + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "隐私评坛[实验性的 ]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "需要人工批准联系人请求。" + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(可选的) 允许这个 OpenID 登录这个账户。" + +#: mod/settings.php:814 +msgid "Publish your profile in your local site directory?" +msgstr "将个人资料发布到本地站点目录中?" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "您的个人资料将发布在此节点的本地目录中。根据系统设置,您的个人资料详细信息可能公开可见。" + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "您的个人资料还将发布在全球Friendica目录中(例如%s)。" + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "你的身份地址是 '%s' 或者 '%s'." + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "帐户设置" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "密码设置" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "新密码:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "允许的字符为a-z、A-Z、0-9以及除空格、重音字母和冒号(:)之外的特殊字符。" + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "确认:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "留空密码字段,除非要修改" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "当前密码:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "您的当前密码以验证变更" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "密码:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "删除OpenID URL" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "基础设置" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "全名:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "电子邮件地址:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "你的时区:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "您的语言 :" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "设置用来向您显示friendica界面和发送电子邮件的语言" + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "默认文章位置:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "使用浏览器位置:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "安全和隐私设置" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "每天最大朋友请求数:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "(用于防止垃圾信息滥用)" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "允许在全球范围内搜索您的个人资料?" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "如果希望其他人轻松找到并跟踪您,请激活此设置。您的个人资料将在远程系统上搜索。此设置还确定Friendica是否会通知搜索引擎您的个人资料文件应该被索引。" + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "在个人资料中隐藏联系人/朋友列表?" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "您的联系人列表将显示在您的个人资料页上。激活此选项可禁用联系人列表的显示。" + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "对匿名访问者隐藏详细简介?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "匿名访问者只能看到您的个人资料图片、显示名称和您在个人资料页上使用的昵称。你的公开帖子和回复仍然可以通过其他方式访问。" + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "公开帖子不公开" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "您的公开帖子将不会出现在社区页面或搜索结果中,也不会发送到中继服务器。但是,它们仍可以出现在远程服务器上的公共提要中。" + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "使所有发布的图片都可访问" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "此选项使每一张张贴的图片都可以通过直接链接访问。这是解决大多数其他网络无法处理图片权限问题的解决方法。不过,公众仍然无法在您的相册中看到非公开图片。" + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "允许朋友们贴文章在您的简介页?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "你的联系人可以在你的个人资料墙上写文章。这些帖子将分发给你的联系人" + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "允许朋友们标签您的文章?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "您的联系人可以为您的帖子添加额外的标签。" + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "允许生人寄给您私人邮件?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica 网络用户可能会向您发送私人信息,即使他们不在您的联系人列表中。" + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "每天来自未知的人的私信:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "默认文章权限" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "过期设置" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "在这数天后自动使文章过期:" + +#: mod/settings.php:901 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "如果为空,文章不会过期。过期的文章将被删除" + +#: mod/settings.php:902 +msgid "Expire posts" +msgstr "帖子到期" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "激活后,帖子和评论将过期。" + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "使个人笔记过期" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "激活后,您个人资料页面上的个人笔记将过期。" + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "已收藏的帖子過期" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "收藏帖子不会过期。该行为将被此设置覆盖。" + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "过期照片" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "激活时,照片将过期。" + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "只有其他人的帖子过期" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "激活后,您自己的帖子将永不过期。那么上面的设置只对你收到的帖子有效。" + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "通知设置" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "发一个消息要是:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "你收到一份介绍" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "你的介绍被确认了" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "某人写在你的简历墙" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "某人写一个后续的评论" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "你收到一封私信" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "你受到一个朋友建议" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "你被在新闻标签" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "您在文章被戳" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "启用桌面通知" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "在有新的提示时显示桌面弹出窗口" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "纯文本通知邮件" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "发送纯文本通知邮件,无 html 部分" + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "显示详细通知" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "默认情况下,通知被压缩为每个项目的单个通知。启用后,将显示每个通知。" + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "专家账户/页种设置" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "把这个账户特别情况的时候行动变化" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "导入联系人" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "上传一个CSV文件,该文件在您从旧帐号导出的第一列中包含您关注的帐号的句柄。" + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "上传文件" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "迁移" + +#: mod/settings.php:939 +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:940 +msgid "Resend relocate message to contacts" +msgstr "把迁移信息寄给熟人" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0}想成为您的朋友" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0}要求注册" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "没有共同的联系人。" + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "普通朋友们" + +#: mod/network.php:304 +msgid "No items found" +msgstr "" + +#: mod/network.php:547 +msgid "No such group" +msgstr "没有这个组" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "组没有成员" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "组:%s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "无效的联系人。" + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "最新活动" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "按最新活动排序" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "最新发帖" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "按发帖日期排序" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "私人" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "提及你或你参与的文章" + +#: mod/network.php:842 +msgid "Starred" +msgstr "已收藏" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "最喜欢的文章" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "重新订阅 OStatus 联系人" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "错误" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "完成" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "保持窗口打开直到完成。" + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "你没有关注这个联系人。" + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "取消关注现在不被你的网络支持。" + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "断开连接/取消关注" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "你的身份地址:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "提交要求" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "简介 URL" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "状态消息和帖子" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "新的消息" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "无法找到联系人信息。" + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "丢弃" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "您真的想删除这个通知吗?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "是" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "找不到对话。" + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:300 +msgid "No messages." +msgstr "没有消息" + +#: mod/message.php:357 +msgid "Message not available." +msgstr "通信不可用的" + +#: mod/message.php:407 +msgid "Delete message" +msgstr "删除消息" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "删除交谈" + +#: mod/message.php:426 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "没可用的安全交通。您可能会在发送人的简介页会回答。" + +#: mod/message.php:430 +msgid "Send Reply" +msgstr "发回答" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "生发送人-%s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "您和%s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s和您" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d通知" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "正在订阅 OStatus 联系人" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "未提供联系人。" + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "无法获取联系人信息。" + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "无法取得联系人的朋友信息。" + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "成功" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "失败" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "已忽视的" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s欢迎%2$s" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "这个介绍已经接受了。" +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "用户已删除其帐号" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "简介位置失效或不包含简介信息。" - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "警告:简介位置没有可设别的主名。" - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "警告:简介位置没有简介图。" - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, 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需要的参数没找到在输入的位置。" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "介绍完成的。" - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "不能恢复的协议错误" - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "简介无效" - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s今天已经受到了太多联络要求" - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "垃圾保护措施被用了。" - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "朋友们被建议请24小时后再试。" - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "无效找到物" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "您已经自我介绍这儿。" - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "看上去您已经是%s的朋友。" - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "无效的简介URL。" - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "不允许的简介地址." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "被封禁的域名" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "更新联系人记录失败。" - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "您的介绍发布了。" - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "无法为您的网络完成远程订阅。请直接在您的系统上订阅。" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "在您的Friendica节点上,用户删除了他们的帐户。请确保从备份中删除他们的数据。" -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "请登录以确认介绍。" +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "用户 id 为 %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "删除我的账户" + +#: mod/removeme.php:100 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "当前登录的身份不正确。请登录到这个用户。" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "这要完全删除您的账户。这一做过,就不能恢复。" -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "确认" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "请输入密码为确认:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "隐藏这个联系人" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "去除项目标签" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "欢迎%s。" +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "选择删除一个标签: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "请确认您的介绍/联络要求给%s。" +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "移走" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "拒绝公开访问" - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "朋友/连接请求" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "在此处输入您的Webinger地址(user@domain.tld)或个人资料URL。如果您的系统不支持此功能(例如,它不适用于Diaspora),则必须直接%s在您的系统上订阅" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "没有建议。如果这是新网站,请24小时后再试。" -#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "如果您还不是免费社交网络的成员,请点击此超链接,\n找到一个公共的Friendica节点,今天就加入我们" - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "您的Webinger地址或个人资料URL:" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "请回答下述的:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "提交要求" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "添加一个个人便条:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "请求的项目不存在或已被删除。" -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "使用权这个简介被限制了." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." -msgstr "" +msgstr "此订阅的项目不可用。" -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "项目没找到" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "无效请求。" -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "编辑文章" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "图片超过 %s 的大小限制" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "保存" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "处理不了图像." -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "插入网页链接" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "墙照片" -#: mod/editpost.php:95 -msgid "web link" -msgstr "网页链接" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "插入视频链接" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "视频链接" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "插入音频链接" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "音频链接" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "抄送: 电子邮件地址" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "比如: li@example.com, wang@example.com" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "活动不能在开始之前结束。" - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "活动标题和开始时间是必须的。" - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "创建新的事件" - -#: mod/events.php:523 -msgid "Event details" -msgstr "事件细节" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "需要开始日期和标题。" - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "活动开始 :" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "必须的" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "结束日期/时间未知或无关" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "事件结束:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "调整为浏览者的时区" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "描述:" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "位置:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "标题:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "分享这个事件" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "提交" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "基本" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "高级" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "权限" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "删除事件失败" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "事件已删除" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "照片" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "联系人照片" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "上传" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "文件" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "无法添加此联系人。" - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "您已添加此联系人。" - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora 支持没被启用。无法添加联系人。" - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus 支持没被启用。无法添加联系人。" - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "网络类型无法被检测。无法添加联系人。" - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "你的身份地址:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "简介 URL" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "标签:" - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "现状通知和文章" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "找不到当初的新闻" - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "空帖子被丢弃了。" - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "" - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "" - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "" - -#: mod/item.php:831 -msgid "Post published." -msgstr "" - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "摇隐私信息无效" - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "可见方:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "关注者" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "图像上载失败了." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1441,7 +2533,7 @@ msgid "" "\n" "\t\tYour password will not be changed unless we can verify that you\n" "\t\tissued this request." -msgstr "" +msgstr "\n\t\t亲爱的%1$s,\n\t\t\t最近在“%2$s”收到重置帐户的请求\n\t\t密码。要确认此请求,请选择验证链接\n\t\t或将其粘贴到您的web浏览器地址栏中。\n\t\t如果您没有请求此更改,请不要跟随链接\n\t\t忽略和/或删除此电子邮件,请求将很快过期。\n\t\t您的密码将不会更改,除非我们可以验证您\n\t\t发出此请求。" #: mod/lostpass.php:69 #, php-format @@ -1519,6 +2611,10 @@ msgid "" "successful login." msgstr "您的密码可以在成功登录后在设置页修改。" +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1528,7 +2624,7 @@ msgid "" "\t\t\tinformation for your records (or change your password immediately to\n" "\t\t\tsomething that you will remember).\n" "\t\t" -msgstr "" +msgstr "\n\t\t\t亲爱的%1$s,\n\t\t\t\t您的密码已按要求更改。请保留这个。\n\t\t\t您的记录信息(或立即将您的密码更改为。\n\t\t\t一些你会记住的东西)。\n\t\t" #: mod/lostpass.php:164 #, php-format @@ -1542,1409 +2638,237 @@ msgid "" "\n" "\t\t\tYou may change that password from your account settings page after logging in.\n" "\t\t" -msgstr "" +msgstr "\n\t\t\t您的登录详细信息如下:\n\n\t\t\t站点位置:\t%1$s\n\t\t\t登录名:\t%2$s\n\t\t\t密码:\t%3$s\n\n\t\t\t您可以在登录后从帐号设置页面更改该密码。\n\t\t" #: mod/lostpass.php:176 #, php-format msgid "Your password has been changed at %s" msgstr "您密码被变化在%s" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "" +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "这个介绍已经接受了。" -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "连接" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "简介位置失效或不包含简介信息。" -#: mod/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "首先" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "警告:简介位置没有可设别的主名。" -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "下个" +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "警告:简介位置没有简介图。" -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "没有结果" - -#: mod/match.php:149 -msgid "Profile Match" -msgstr "简介符合" - -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "新的消息" - -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "没有选择的接受者。" - -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "无法找到联系人信息。" - -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "消息发不了。" - -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "通信受到错误。" - -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "消息发了" - -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "丢弃" - -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "消息" - -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "您真的想删除这个通知吗?" - -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "" - -#: mod/message.php:186 -msgid "Message deleted." -msgstr "消息删除了。" - -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "交流删除了。" - -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "请输入一个链接 URL:" - -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "发私人的通信" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "到:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "题目:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "你的消息:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "没有消息" - -#: mod/message.php:367 -msgid "Message not available." -msgstr "通信不可用的" - -#: mod/message.php:421 -msgid "Delete message" -msgstr "删除消息" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "删除交谈" - -#: mod/message.php:440 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "没可用的安全交通。您可能会在发送人的简介页会回答。" - -#: mod/message.php:444 -msgid "Send Reply" -msgstr "发回答" - -#: mod/message.php:527 +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 #, php-format -msgid "Unknown sender - %s" -msgstr "生发送人-%s" +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需要的参数没找到在输入的位置。" -#: mod/message.php:529 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "介绍完成的。" + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "不能恢复的协议错误" + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "简介无效" + +#: mod/dfrn_request.php:264 #, php-format -msgid "You and %s" -msgstr "您和%s" +msgid "%s has received too many connection requests today." +msgstr "%s今天已经受到了太多联络要求" -#: mod/message.php:531 +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "垃圾保护措施被用了。" + +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "朋友们被建议请24小时后再试。" + +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "无效找到物" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "您已经自我介绍这儿。" + +#: mod/dfrn_request.php:329 #, php-format -msgid "%s and You" -msgstr "%s和您" +msgid "Apparently you are already friends with %s." +msgstr "看上去您已经是%s的朋友。" -#: mod/message.php:558 +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "无效的简介URL。" + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "不允许的简介地址." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "被封禁的域名" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "更新联系人记录失败。" + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "您的介绍发布了。" + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "无法为您的网络完成远程订阅。请直接在您的系统上订阅。" + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "请登录以确认介绍。" + +#: mod/dfrn_request.php:504 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "当前登录的身份不正确。请登录到这个用户。" + +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "确认" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "隐藏这个联系人" + +#: mod/dfrn_request.php:531 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d通知" +msgid "Welcome home %s." +msgstr "欢迎%s。" -#: mod/network.php:568 -msgid "No such group" -msgstr "没有这个组" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "组没有成员" - -#: mod/network.php:593 +#: mod/dfrn_request.php:532 #, php-format -msgid "Group: %s" -msgstr "组:%s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "请确认您的介绍/联络要求给%s。" -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "无效的联系人。" +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "朋友/连接请求" -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "最新活动" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "按最新活动排序" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "最新发帖" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "按发帖日期排序" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "私人" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "提及你或你参与的文章" - -#: mod/network.php:930 -msgid "New" -msgstr "新" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "活动流-按日期" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "共享的链接" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "有意思的超链接" - -#: mod/network.php:951 -msgid "Starred" -msgstr "已收藏" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "最喜欢的文章" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "私人便条" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "评论发表了。" - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "正在订阅 OStatus 联系人" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "未提供联系人。" - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "无法获取联系人信息。" - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "无法取得联系人的朋友信息。" - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "完成" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "成功" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "失败" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "已忽视的" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "保持窗口打开直到完成。" - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "相册" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "最近的照片" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "上传新照片" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "每人" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "联系人信息不可用" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "取回不了相册." - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "相册已成功删除" - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "" - -#: mod/photos.php:591 -msgid "a photo" -msgstr "一张照片" - -#: mod/photos.php:591 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s被%3$s标签在%2$s" - -#: mod/photos.php:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "图片超过 %s 的大小限制" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "图片上传未完成,请重试" - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "缺少图片文件" - -#: mod/photos.php:700 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "服务器目前无法接受新的上传文件,请联系您的管理员" - -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "图片文件空的。" - -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "处理不了图像." - -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "图像上载失败了." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "没有照片挑选了" - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "这个项目使用权限的。" - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "上传照片" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "新册名:" - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "别显示现状报到关于这个上传" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "给组表示" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "展示给联系人" - -#: mod/photos.php:1050 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "您真的想删除这个相册和所有里面的照相吗?" - -#: mod/photos.php:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "删除相册" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "编照片册" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "先表示最新的" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "先表示最老的" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "看照片" - -#: mod/photos.php:1145 -msgid "Permission denied. Access to this item may be restricted." -msgstr "无权利。用这个项目可能受限制。" - -#: mod/photos.php:1147 -msgid "Photo not available" -msgstr "不可获得的照片" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "您真的想删除这个照相吗?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "删除照片" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "看照片" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "编辑照片" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "用为资料图" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "看全尺寸" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "标签:" - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "新册名" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "字幕" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "加标签" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv" - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "不要旋转" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "顺时针地转动(左)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "反顺时针地转动(右)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "我喜欢这(交替)" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "我不喜欢这(交替)" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "这是你" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "评论" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "地图" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "看照片册" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0}想成为您的朋友" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0}要求注册" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "戳" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "把人家戳或别的行动" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "接受者" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "选择您想把别人作" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "使这个文章私人" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "在您的Friendica节点上,用户删除了他们的帐户。请确保从备份中删除他们的数据。" - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "用户 id 为 %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "删除我的账户" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "这要完全删除您的账户。这一做过,就不能恢复。" - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "请输入密码为确认:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "重新订阅 OStatus 联系人" - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "错误" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "缺失一些重要数据!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "更新" - -#: mod/settings.php:201 -msgid "Failed to connect with email account using the settings provided." -msgstr "不能连接电子邮件账户用输入的设置。" - -#: mod/settings.php:206 -msgid "Email settings updated." -msgstr "电子邮件设置更新了" - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "特点更新了" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "联系人CSV文件上载错误" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "导入联系人完成" - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "调动消息已发送给您的联系人" - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "密码不匹配。" - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "密码更新失败了。请再试。" - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "密码已改变。" - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "密码未改变。" - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "请使用较短的名称。" - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "名称太短。" - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "密码错误。" - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "无效的邮箱。" - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "无法更改到此电子邮件地址。" - -#: mod/settings.php:427 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "私人评坛没有隐私批准。默认隐私组用者。" - -#: mod/settings.php:430 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "私人评坛没有隐私批准或默认隐私组。" - -#: mod/settings.php:447 -msgid "Settings updated." -msgstr "设置更新了。" - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "加入应用" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "保存设置" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "名字" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "用户密钥" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "密码(Consumer Secret)" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "重定向" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "图符URL" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "您不能编辑这个应用。" - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "连接着应用" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "编辑" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "客户端密钥开头" - -#: mod/settings.php:570 -msgid "No name" -msgstr "无名" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "撤消权能" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "无插件设置配置完成" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "插件设置" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "附加特性" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "已启用" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "已停用" - -#: mod/settings.php:637 mod/settings.php:638 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "包括的支持为%s连通性是%s" - -#: mod/settings.php:638 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "电子邮件访问在这个站上被禁用。" - -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "没有" - -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "社会化网络" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "通用社交媒体设置" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "只接受您关注的联系人发布的帖子" - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "当评论到达时,系统会自动完成线程。这有一个副作用,那就是你可能会收到由非关注者发起的帖子,但已经被你追随者评论了。此配置将停用此行为。激活后,严格来说,你只会收到来自你真正关注的人的帖子。" - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "禁用内容警告" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "像Mastodon或Pleroma这样的网络上的用户可以设置一个内容警告字段,默认情况下会折叠他们的发帖。这将禁用自动折叠,并将内容警告设置为发帖标题。不会影响您最终设置的任何其他内容筛选。" - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "禁用智能缩短" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "通常情况下,系统会尝试找到添加到缩短帖子的最佳链接。如果启用此选项,则每个缩短的帖子都将始终指向原始的Friendica帖子。" - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "激活后,附加链接的标题将作为标题添加到Diaspora的帖子中。这对共享提要内容的“远程自我”联系人最有帮助。" - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "自动关注任何 GNU Social (OStatus) 关注者/提及者" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "如果您收到来自未知OStatus用户的消息,则此选项决定如何操作。如果选中,将为每个未知用户创建一个新联系人。" - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "用于 OStatus 联系人的默认组" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "您遗留的 GNU Social 账户" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "如果您在这里输入您旧的 GNU Social/Statusnet 账号名 (格式示例 user@domain.tld) ,您的联系人列表将会被自动添加。完成后该字段将被清空。" - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "修复 OStatus 订阅" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "邮件收件箱设置" - -#: mod/settings.php:700 -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:701 -msgid "Last successful email check:" -msgstr "上个成功收件箱检查:" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "IMAP服务器名字:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "IMAP服务器端口:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "安全:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "邮件登录名:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "邮件密码:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "回答地址:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "发送公开文章给所有的邮件联系人:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "进口后行动:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "标注看过" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "搬到文件夹" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "搬到文件夹:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "无法找到您的简介。请联系您的管理员。" - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "账户类型" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "个人页面" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "" - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "组织页面" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "新闻页面" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "社区论坛" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "" - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "标准账户页面" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "" - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "演讲台页" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "公共论坛" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "自动批准所有联系人请求。" - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "自动朋友页" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "" - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "隐私评坛[实验性的 ]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "需要人工批准联系人请求。" - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(可选的) 允许这个 OpenID 登录这个账户。" - -#: mod/settings.php:822 -msgid "Publish your profile in your local site directory?" -msgstr "" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:643 #, php-format msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "在此处输入您的Webinger地址(user@domain.tld)或个人资料URL。如果您的系统不支持此功能(例如,它不适用于Diaspora),则必须直接%s在您的系统上订阅" -#: mod/settings.php:828 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." +msgstr "如果您还不是免费社交网络的成员,请点击此超链接,\n找到一个公共的Friendica节点,今天就加入我们" -#: mod/settings.php:834 +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "您的Webinger地址或个人资料URL:" + +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "请确认这个关注:" + +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "你的身份地址是 '%s' 或者 '%s'." +msgid "%s knows you" +msgstr "%s认识你" -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "帐户设置" +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "添加一个个人便条:" -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "密码设置" +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "授权应用连接" -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "新密码:" +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "回归您的应用和输入这个安全密码:" -#: mod/settings.php:874 +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "请登录以继续。" + +#: mod/api.php:124 msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "允许的字符为a-z、A-Z、0-9以及除空格、重音字母和冒号(:)之外的特殊字符。" - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "确认:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "留空密码字段,除非要修改" - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "当前密码:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "您的当前密码以验证变更" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "密码:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "基础设置" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "全名:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "电子邮件地址:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "你的时区:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "您的语言 :" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "默认文章位置:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "使用浏览器位置:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "安全和隐私设置" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "每天最大朋友请求数:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "(用于防止垃圾信息滥用)" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" -msgstr "" - -#: mod/settings.php:894 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "" - -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "" - -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "" - -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "对匿名访问者隐藏详细简介?" - -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "" - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "" - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "此选项使每一张张贴的图片都可以通过直接链接访问。这是解决大多数其他网络无法处理图片权限问题的解决方法。不过,公众仍然无法在您的相册中看到非公开图片。" - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "允许朋友们贴文章在您的简介页?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "允许朋友们标签您的文章?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "您的联系人可以为您的帖子添加额外的标签。" - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "允许生人寄给您私人邮件?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica 网络用户可能会向您发送私人信息,即使他们不在您的联系人列表中。" - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "每天来自未知的人的私信:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "默认文章权限" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "过期设置" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "在这数天后自动使文章过期:" - -#: mod/settings.php:909 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "如果为空,文章不会过期。过期的文章将被删除" - -#: mod/settings.php:910 -msgid "Expire posts" -msgstr "" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "" - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "" - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "已收藏的帖子過期" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "收藏帖子不会过期。该行为将被此设置覆盖。" - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "过期照片" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "激活时,照片将过期。" - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "" - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "" - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "通知设置" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "发一个消息要是:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "你收到一份介绍" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "你的介绍被确认了" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "某人写在你的简历墙" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "某人写一个后续的评论" - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "你收到一封私信" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "你受到一个朋友建议" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "你被在新闻标签" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "您在文章被戳" - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "启用桌面通知" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "在有新的提示时显示桌面弹出窗口" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "纯文本通知邮件" - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "发送纯文本通知邮件,无 html 部分" - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "显示详细通知" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "默认情况下,通知被压缩为每个项目的单个通知。启用后,将显示每个通知。" - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "专家账户/页种设置" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "把这个账户特别情况的时候行动变化" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "导入联系人" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "上传一个CSV文件,该文件在您从旧帐号导出的第一列中包含您关注的帐号的句柄。" - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "上传文件" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "调动" - -#: mod/settings.php:947 -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:948 -msgid "Resend relocate message to contacts" -msgstr "把调动信息寄给熟人" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "" - -#: mod/suggest.php:67 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "没有建议。如果这是新网站,请24小时后再试。" - -#: mod/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "您真的想删除这个建议吗?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "忽视/隐藏" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "朋友推荐" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "" - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "去除项目标签" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "选择删除一个标签: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "移走" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?" + +#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "否" + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "不好意思,可能你上传的是PHP设置允许的大" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "或者,你是不是上传空的文件?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "文件超过了 %s 的大小限制" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "文件上传失败。" + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "找不到当初的新闻" + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "空帖子被丢弃了。" + +#: mod/item.php:710 +msgid "Post updated." +msgstr "发布更新" + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "项目未存储。" + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "无法提取项目。" + +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "项目找不到。" + +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "您真的想删除这个项目吗?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." -msgstr "" +msgstr "只有系统管理员才能在关闭的服务器上执行用户导入。" #: mod/uimport.php:54 src/Module/Register.php:84 msgid "" @@ -2954,7 +2878,7 @@ msgstr "这个网站超过一天最多账户注册。请明天再试。" #: mod/uimport.php:61 src/Module/Register.php:160 msgid "Import" -msgstr "" +msgstr "导入" #: mod/uimport.php:63 msgid "Move account" @@ -2987,116 +2911,447 @@ msgid "" "select \"Export account\"" msgstr "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "找不到用户。" + +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "查看" + +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "上" + +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "下" + +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "今天" + +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "月" + +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "星期" + +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "日" + +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "列表" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "找不到用户" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "这个日历格式不被支持" + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "找不到可导出的数据" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "日历" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "项目没找到" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "编辑文章" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "保存" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "网页链接" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "插入视频链接" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "视频链接" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "插入音频链接" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "音频链接" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "抄送: 电子邮件地址" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "比如: li@example.com, wang@example.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "活动不能在开始之前结束。" + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "活动标题和开始时间是必须的。" + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "创建新的事件" + +#: mod/events.php:523 +msgid "Event details" +msgstr "事件细节" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "需要开始日期和标题。" + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "活动开始 :" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "必须的" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "结束日期/时间未知或无关" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "事件结束:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "调整为浏览者的时区" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "描述:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "位置:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "标题:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "分享这个事件" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "基本" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "高级" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "权限" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "删除事件失败" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "无法添加此联系人。" + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "您已添加此联系人。" + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "网络类型无法被检测。无法添加联系人。" + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora 支持没被启用。无法添加联系人。" + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus 支持没被启用。无法添加联系人。" + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "标签:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "联系人照片" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "上传" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "文件" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "个人笔记" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "相册" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "最近的照片" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "上传新照片" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "每人" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "联系人信息不可用" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "取回不了相册." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "相册已成功删除" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "相册是空的。" + +#: mod/photos.php:299 +msgid "Failed to delete the photo." msgstr "" -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "取消关注现在不被你的网络支持。" +#: mod/photos.php:583 +msgid "a photo" +msgstr "一张照片" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "取消关注了的联系人" - -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "断开连接/取消关注" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "没有视频被选择" - -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "察看视频" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "最近的视频" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "上传新视频" - -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/photos.php:583 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "一天最多墙通知给%s超过了。通知没有通过 。" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s被%3$s标签在%2$s" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "核对不了您的主页。" +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "图片上传未完成,请重试" -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "没有接受者。" +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "缺少图片文件" -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "服务器目前无法接受新的上传文件,请联系您的管理员" -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "无效请求。" +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "图片文件空的。" -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "不好意思,可能你上传的是PHP设置允许的大" +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "没有照片挑选了" -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "或者,你是不是上传空的文件?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "上传照片" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "文件超过了 %s 的大小限制" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "新册名:" -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "文件上传失败。" +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "或选择现有专辑:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "墙照片" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "别显示现状报到关于这个上传" -#: src/App/Authentication.php:210 src/App/Authentication.php:262 -msgid "Login failed." -msgstr "登录失败。" +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "展示到群组" -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "展示给联系人" + +#: mod/photos.php:1042 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "您真的想删除这个相册和所有里面的照相吗?" + +#: mod/photos.php:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "删除相册" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "编照片册" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "丢弃相册" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "先表示最新的" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "先表示最老的" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "看照片" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "无权利。用这个项目可能受限制。" + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "不可获得的照片" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "您真的想删除这个照相吗?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "删除照片" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "看照片" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "编辑照片" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "删除照片" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "用为资料图" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "私人照片" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "看全尺寸" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "标签:" + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[选择要删除的标签]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "新册名" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "字幕" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "加标签" + +#: mod/photos.php:1340 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv" -#: src/App/Authentication.php:224 src/Model/User.php:657 -msgid "The error message was:" -msgstr "错误通知是:" +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "不要旋转" -#: src/App/Authentication.php:273 -msgid "Login failed. Please check your credentials." -msgstr "" +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "顺时针地转动(左)" -#: src/App/Authentication.php:389 -#, php-format -msgid "Welcome %s" -msgstr "" +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "反顺时针地转动(右)" -#: src/App/Authentication.php:390 -msgid "Please upload a profile photo." -msgstr "请上传一张简介照片" +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "我喜欢这(交替)" -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "" +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "我不喜欢这(交替)" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "这是你" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "评论" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "地图" #: src/App/Module.php:240 msgid "You must be logged in to use addons. " @@ -3110,828 +3365,140 @@ msgstr "删除这个项目?" msgid "toggle mobile" msgstr "切换移动设备" -#: src/App/Router.php:209 +#: src/App/Authentication.php:210 src/App/Authentication.php:262 +msgid "Login failed." +msgstr "登录失败。" + +#: src/App/Authentication.php:224 src/Model/User.php:659 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。" + +#: src/App/Authentication.php:224 src/Model/User.php:659 +msgid "The error message was:" +msgstr "错误通知是:" + +#: src/App/Authentication.php:273 +msgid "Login failed. Please check your credentials." +msgstr "登录失败。请检查一下您的资格。" + +#: src/App/Authentication.php:389 +#, php-format +msgid "Welcome %s" +msgstr "欢迎%s" + +#: src/App/Authentication.php:390 +msgid "Please upload a profile photo." +msgstr "请上传一张简介照片" + +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" -msgstr "" +msgstr "此模块不允许使用模块。允许的方法:%s" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "页发现。" -#: src/App.php:326 -msgid "No system theme config value set." +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/BaseModule.php:150 +#: src/Database/DBStructure.php:93 +#, php-format 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 "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\n在数据库更新的时候发生了错误 %d\n%s\n" -#: src/Console/ArchiveContact.php:105 +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "操作数据库更改的时候遇到了错误:" + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:300 #, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "" +msgid "%s: Database update" +msgstr "%s:数据库更新" -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "" - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Database/DBStructure.php:600 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "" +msgid "%s: updating %s table." +msgstr "%s: 正在更新 %s 表。" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "该联系人已被本节点屏蔽。" - -#: src/Console/PostUpdate.php:87 +#: src/Database/Database.php:659 src/Database/Database.php:762 #, php-format -msgid "Post update version number has been set to %s." +msgid "Database error %d \"%s\" at \"%s\"" msgstr "" -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "" - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "" - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "" - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "" - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "" - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "" - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "" - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "" - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "" - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "" - -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "更新" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "更旧" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "每小时" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "每天两次" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "每天" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "每周" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "每月" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "电子邮件" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "Diaspora" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "推特" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" -msgstr "" - -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "GNU Social 连接器" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" -msgstr "" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "通用特性" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "照片地点" - -#: src/Content/Feature.php:98 +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "照片元数据通常被剥离。这将在剥离元数据之前提取位置(如果存在),并将其链接到地图。" - -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "导出公共日历" - -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "允许访问者下载公共日历" - -#: src/Content/Feature.php:100 -msgid "Trending Tags" +"Friendica can't display this page at the moment, please contact the " +"administrator." msgstr "" -#: src/Content/Feature.php:100 +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" + +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Update.php:215 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "更新 %s 失败。查看错误日志。" + +#: src/Core/Update.php:280 +#, php-format msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "发帖编写功能" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "自动提示论坛" - -#: src/Content/Feature.php:106 +#: src/Core/Update.php:286 +#, php-format msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "在ACL窗口中选择/取消选择论坛页面时添加/删除提及。" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "错误消息是\n[pre]%s[/pre]" -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" -msgstr "明确提及" +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "" -#: src/Content/Feature.php:107 +#: src/Core/Update.php:320 +#, php-format msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "在“评论”框中添加显式提及,以手动控制在答复中提及的人。" - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "网络工具栏" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "档案" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "能按时期范围选择文章" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "启用小窗口以仅显示来自选定协议的网络帖子" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "网络分页" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "网络新分页" - -#: src/Content/Feature.php:120 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "启用只显示新的网络文章(过去12小时)的标签页" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "网络分享链接分页" - -#: src/Content/Feature.php:121 -msgid "Enable tab to display only Network posts with links in them" -msgstr "使表示光网络文章包括链接分页可用" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "文章/评论工具" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "文章种类" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "加入种类给您的文章" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "高级简介设置" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "列出各论坛" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "在“高级简介设置”页上向访问者显示公共社区论坛" - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "标签云" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "在您的个人简介中提供个人标签云" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "论坛" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "到论坛的外链" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "显示更多" - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "这里没有什么新的" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "清理出通知" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "注销" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "结束此次会话" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "登录" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "登录" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "状态" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "你的消息和交谈" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "简介" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "你的简介页" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "你的照片" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "视频" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "你的视频" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "你的项目" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "私人的便条" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "你的私人便条" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "主页" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "主页" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "注册" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "注册" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "帮助" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "帮助及文档" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "应用程序" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "可加的应用,设施,游戏" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "搜索" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "搜索网站内容" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "全文" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "标签:" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "联系人" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "社会" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "事件和日历" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "名录" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "人物名录" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "资料" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "资料关于这个Friendica服务器" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "服务条款" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "网络" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "来自你的朋友们的交谈" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "介绍" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "友谊邀请" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "通知" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "看所有的通知" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "记号各系统通知看过的" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "私人的邮件" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "收件箱" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "发件箱" - -#: src/Content/Nav.php:274 -msgid "Accounts" -msgstr "" - -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "管理别的页" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "设置" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "帐户设置" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "管理/编辑朋友和联系人" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "管理" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "网站开办和配置" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "导航" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "网站地图" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "嵌入已停用" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "嵌入内容" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "上个" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "最后" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "图像/照片" - -#: src/Content/Text/BBCode.php:1047 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "点击为开关" - -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1写:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "加密的内容" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "无效的源协议" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "无效的连接协议" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "没有项目..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "关注" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "导出" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "导出日历为 ical" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "导出日历为 csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "没有联系人" - -#: src/Content/Widget/ContactBlock.php:104 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d 联系人" - -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "查看联系人" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "删除关键字" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "保存的搜索" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "添加新的联系人" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "输入地址或网络位置" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "比如:li@example.com, http://example.com/li" - -#: src/Content/Widget.php:72 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d邀请可用的" - -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "找人物" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "输入名字或兴趣" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "比如:罗伯特·摩根斯坦,钓鱼" - -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "搜索" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "相似兴趣" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "随机简介" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "邀请朋友们" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "综合目录" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "本地目录" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "组" - -#: src/Content/Widget.php:220 -msgid "Everyone" -msgstr "" - -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "所有联系人" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "保存的文件夹" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "一切" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "种类" - -#: src/Content/Widget.php:449 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d 个共同的联系人" - #: src/Core/ACL.php:155 msgid "Yourself" -msgstr "" +msgstr "你自己" + +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "关注者" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "互惠互利" #: src/Core/ACL.php:281 msgid "Post to Email" @@ -3949,7 +3516,7 @@ msgstr "此内容将显示给您的所有追随者,并可在社区页面中查 #: src/Core/ACL.php:310 msgid "Limited/Private" -msgstr "" +msgstr "私人" #: src/Core/ACL.php:311 msgid "" @@ -3968,411 +3535,411 @@ msgstr "" #: src/Core/ACL.php:316 msgid "Connectors" -msgstr "" +msgstr "连接器" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." -msgstr "" +msgstr "无法写入数据库配置文件“config/local.config.php”。请使用附带的文本在您的Web服务器根目录中创建配置文件。" -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。" -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "请看文件「INSTALL.txt」" -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "没找到命令行PHP在网服务器PATH。" -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "PHP可执行路径" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "输入全路线到php执行程序。您会留空白为继续安装。" -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "命令行PHP" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "找到 PHP 版本:" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "命令行PHP執行檔" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "您系统的命令行PHP没有能够「register_argc_argv」。" -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "这必要为通信发布成功。" -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。" -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "产生加密钥匙" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。" -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite部件" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" +msgstr "错误:需要PDO或MySQLi PHP模块,但尚未安装。" -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "错误:MySQL 的 PHP 数据对象 (PDO) 扩展驱动未安装。" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "PDO 或者 MySQLi PHP 模块" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "部件错误,需要 XML PHP 模块但它并没有被安装。" -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "XML PHP 模块" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "libCurl PHP模块" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "错误:libCurl PHP模块是必要的可却不安装的。" -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "GD显示PHP模块" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。" -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP模块" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "错误:openssl PHP模块是必要的可却不安装的。" -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "mb_string PHP模块" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "错误:mbstring PHP模块必要可没安装的。" -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "iconv PHP 模块" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "错误:需要 iconv PHP 模块但它并没有被安装。" -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "POSIX PHP 模块" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" -msgstr "" +msgstr "文件信息PHP模块" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." -msgstr "" +msgstr "Web安装程序需要能够在Web服务器的“config”文件夹中创建名为“local.config.php”的文件,但它无法做到这一点。" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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 "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。" -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." -msgstr "" +msgstr "在此过程结束时,我们将为您提供一个要保存在Friendica“config”文件夹中名为local.config.php的文件中的文本。" -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。" -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" -msgstr "" +msgstr "Config/local.config.php是可写的" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。" -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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 "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。" -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "请保险您网服务器用户(比如www-data)有这个目录的写权利。" -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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 "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。" -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "能写view/smarty3" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." -msgstr "" +msgstr ".htaccess中的URL重写不起作用。确保将.htaccess-dist复制到.htaccess。" -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" -msgstr "" +msgstr "获取时来自Curl的错误消息" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "URL改写发挥机能" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP 扩展没有安装" -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP 扩展已安装" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick 支持 GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "数据库已经被使用。" -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "解不了数据库。" -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "星期一" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "星期二" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "星期三" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "星期四" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "星期五" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "星期六" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "星期天" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "一月" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "二月" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "三月" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "四月" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "五月" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "六月" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "七月" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "八月" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "九月" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "十月" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "十一月" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "十二月" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "星期一" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "星期二" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "星期三" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "星期四" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "星期五" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "星期六" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "星期日" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "一月" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "二月" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "三月" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "四月" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "六月" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "七月" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "八月" @@ -4380,15 +3947,15 @@ msgstr "八月" msgid "Sep" msgstr "" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "十月" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "十一月" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "十二月" @@ -4440,39 +4007,6 @@ msgstr "拒绝" msgid "rebuffed" msgstr "已拒绝" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "更新 %s 失败。查看错误日志。" - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "错误消息是\n[pre]%s[/pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "" - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "解码账户文件出错误" @@ -4504,41 +4038,403 @@ msgstr "用户简介创建错误" msgid "Done. You can now login with your username and password" msgstr "完成。你现在可以用你的用户名和密码登录" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "" +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "找不到旧模块文件:%s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(无主题)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\n在数据库更新的时候发生了错误 %d\n%s\n" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "操作数据库更改的时候遇到了错误:" - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" +msgid "You may visit them online at %s" +msgstr "你可以网上拜访他在%s" + +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" + +#: src/Object/EMail/ItemCCEMail.php:46 +#, php-format +msgid "%s posted an update." +msgstr "%s贴上一个新闻。" + +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "这个条目被编辑了" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "私人的新闻" + +#: src/Object/Post.php:213 +msgid "pinned item" msgstr "" -#: src/Database/DBStructure.php:546 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: 正在更新 %s 表。" +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "" -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "全局删除" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "本地删除" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "保存在文件夹" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "我将会参加" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "我将不会参加" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "我可能会参加" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "忽视主题" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "取消忽视主题" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "切换忽视状态" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "添加收藏" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "移除收藏" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "加标签" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "喜欢" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "不喜欢" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "分享这个" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "分享" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "%s( 收到%s)" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "在您的系统上注释此项目" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "至" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "经过" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "从墙到墙" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "通过从墙到墙" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "更多" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d 条评论" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "显示更多" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "评论" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "找不到此URL(%s)的任何未存档联系人条目" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "联系人条目已存档" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "找不到此URL(%s)的任何联系人条目" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "该联系人已被本节点屏蔽。" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "输入新密码:" + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "输入用户名:" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "输入用户昵称:" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "输入用户电子邮件地址:" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "输入语言(可选):" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "用户未挂起。" + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "键入“yes”可删除%s" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "更新后版本号已设置为%s" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "检查待定的更新操作。" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "好了。" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "实行待定的发帖更新。" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "所有待定的发帖更新都已完成。" + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "故乡:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "性取向:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "政治观念:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr " 宗教信仰 :" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "喜欢:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "不喜欢:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "标题/描述:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "概要" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "音乐兴趣" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "书,文学" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "电视" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "电影/跳舞/文化/娱乐" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "爱好/兴趣" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "爱情/浪漫" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "工作" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "学院/教育" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "联系人信息和社交网络" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "未设置系统主题配置值。" + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "朋友建议" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "友谊/联络要求" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "新关注者" @@ -4583,3251 +4479,260 @@ msgstr "" msgid "%s is now friends with %s" msgstr "%s成为%s的朋友" -#: src/LegacyModule.php:49 +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "网络通知" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "系统通知" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "私人通知" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "主页通知" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 #, php-format -msgid "Legacy module file not found: %s" +msgid "No more %s notifications." +msgstr "没有更多的 %s 通知。" + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "显示未读" + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "显示全部" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "您必须登录才能显示此页面。" + +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "通知" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "显示被忽视的请求" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "隐藏被忽视的请求" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" msgstr "" -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" msgstr "" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "删除联系人" +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "对其他人隐藏这个联系人" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 #: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 msgid "Approve" msgstr "批准" -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "组织" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "声称被您认识:" -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "新闻" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "是否启用双向连接?" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "论坛" - -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "连接URL失踪的。" - -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "" - -#: src/Model/Contact.php:2336 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "这网站没配置允许跟别的网络交流." - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "没有兼容协议或者摘要找到了." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "输入的简介地址没有够消息。" - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "找不到作者或名。" - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "这个地址没有符合什么游览器URL。" - -#: src/Model/Contact.php:2359 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "无法匹配一个@-风格的身份地址和一个已知的协议或电子邮件联系人。" - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "输入mailto:地址前为要求电子邮件检查。" - -#: src/Model/Contact.php:2366 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "输入的简介地址属在这个网站使不可用的网络。" - -#: src/Model/Contact.php:2371 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "有限的简介。这人不会接受直达/私人通信从您。" - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "无法检索联系人信息。" - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "开始:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "结束:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "全天" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "九月" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "没有可显示的事件" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "编辑事件" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "删除事件" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "链接到来源" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "显示地图" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "隐藏地图" - -#: src/Model/Event.php:1042 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "%s's birthday" -msgstr "%s的生日" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "生日快乐%s" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "把项目归档了" - -#: src/Model/Group.php:92 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 "一个用这个名字的被删掉的组复活了。现有项目的权限可能对这个组和任何未来的成员有效。如果这不是你想要的,请用一个不同的名字创建另一个组。" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "接受%s为朋友%s可以订阅您的帖子,您还可以在新闻提要中收到他们的最新消息。" -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "对新联系人的默认隐私组" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "每人" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "编辑" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "添加" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "编辑组" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "不在任何组的联系人" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "创建新组" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "组名:" - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "编辑组" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "活动" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "评论" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "文章" - -#: src/Model/Item.php:3576 +#: src/Module/Notifications/Introductions.php:127 #, php-format -msgid "Content warning: %s" -msgstr "内容警告:%s" +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "接受%s作为订阅者允许他们订阅你的帖子,但你不会在你的新闻源中收到他们的更新。" -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "字节" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "朋友" -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "在另一页面中查看" +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "订阅者" -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "在另一页面中查看" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[无题目]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "修改简介" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "更换简介照片" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "主页:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 msgid "About:" msgstr "关于:" -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Atom 源" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 msgid "Network:" msgstr "网络" -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "g A l d F" +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "没有介绍。" -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[今天]" - -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "提醒生日" - -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "这周的生日:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[无描述]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "事件提醒" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "" - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "登录失败" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "没有足够信息以认证" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "" - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "新密码已暴露在公共数据转储中,请务必另选密码。" - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "密码不匹配。密码没改变。" - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "需要邀请。" - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "不能验证邀请。" - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "无效的OpenID url" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "请输入必要的信息。" - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "" - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "" - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "" - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "这看上去不是您的全姓名。" - -#: src/Model/User.php:701 -msgid "Your email domain is not among those allowed on this site." -msgstr "这网站允许的域名中没有您的" - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "无效的邮件地址。" - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "" - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "无法使用此邮件地址。" - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "您的昵称只能由字母、数字和下划线组成。" - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "此昵称已被注册。请选择新的昵称。" - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "严重错误:安全密钥生成失败。" - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "注册出现问题。请再次尝试。" - -#: src/Model/User.php:806 -msgid "An error occurred creating your default profile. Please try again." -msgstr "创建你的默认简介的时候出现了一个错误。请再试。" - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "" - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "朋友" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "" - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "" - -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "注册信息为%s" - -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "在 %s 的注册" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "" - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "" - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "插件 %s 已禁用。" - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "插件 %s 已启用。" - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "停用" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "使能用" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "管理" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "插件" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "肘节" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "作者:" - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "维护者:" - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "" - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "重新加载可用插件" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "目前您的节点上没有可用插件。您可以在 %1$s 找到官方插件库,或者到开放的插件登记处 %2$s 也能找到其他有趣的插件" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "全选" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "解除屏蔽" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "照片" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "站点屏蔽列表已更新。" - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "封禁原因" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "选中以从列表中删除此条目" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "添加新条目到屏蔽列表" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "封禁原因" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "添加条目" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "保存变更到屏蔽列表" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "屏蔽列表中的当前条目" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "删除屏蔽列表中的条目" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "从屏蔽列表删除条目?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "更新当成功标签了" - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "执行 %s 失败,错误:%s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "把%s更新成功地实行。" - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "%s更新没回答现状。不知道是否成功。" - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "没有不通过地更新。" - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "检查数据库结构" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "没通过的更新" - -#: src/Module/Admin/DBSync.php:116 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "这个不包括1139号更新之前,它们没回答装线。" - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "标注成功(如果手动地把更新实行了)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "试图自动地把这步更新实行" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "锁定特性 %s" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "管理附加特性" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "别的" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "未知" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "联邦网络统计" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "被标记为要删除的项目。" - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "删除项目" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "删除这个项目" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "你想要删除的项目的 GUID." - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "日志设置更新了。" - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "PHP 日志已启用。" - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "PHP 日志已禁用。" - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "记录" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "清理出" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "启用调试" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "日志文件" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "日志级别" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "PHP 日志" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "要临时启用PHP错误和警告的日志记录,您可以在安装的index.php文件中添加以下内容。“ERROR_LOG”行中设置的文件名相对于Friendica顶级目录,并且必须可由Web服务器写入。“LOG_ERROR”和“DISPLAY_ERROR”的选项“1”用于启用这些选项,设置为“0”将禁用它们。" - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "打开 %1$s 日志文件出错。\\r\\n
请检查 %1$s 文件是否存在并且可读。" - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "无法打开 %1$s 日志文件。\\r\\n
请检查 %1$s 文件是否可读。" - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "查看日志" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "" - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "" - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "已创建" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "不能分析基础URL。至少要://" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "" - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "网站设置更新了。" - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "没专门适合手机的主题" - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (实验性)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "没有社会页" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "本网站用户的公开文章" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "" - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "已停用" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "用户" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "用户,全球联系人" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "一个月" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "三个月" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "半年" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "一年" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "多用户网站" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "关闭" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "要批准" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "打开" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "没SSL方针,环节将追踪页SSL现状" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "强制所有链接使用 SSL" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "自签证书,只在本地链接使用 SSL(不推荐)" - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "请勿检查" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "检查稳定版" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "检查开发版本" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "网站" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "" - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "注册" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "文件上传" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "政策" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "性能" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "讯息中继" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "" - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "网页名字" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "寄主邮件" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "标题/标志" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "捷径小图片" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "触摸小图片" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "别的消息" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "系统语言" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "系统主题" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "手机系统主题" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "用于移动设备的主题" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "SSL环节方针" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "决定产生的链接是否应该强制使用 SSL" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "强制使用 SSL" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环" - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "在导航菜单隐藏帮助条目" - -#: src/Module/Admin/Site.php:632 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "在导航菜单中隐藏帮助页面的菜单条目。您仍然可以通过输入「/help」直接访问。" - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "单用户网站" - -#: src/Module/Admin/Site.php:633 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "弄这网站多用户或单用户为选择的用户" - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "" - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "图片最大尺寸" - -#: src/Module/Admin/Site.php:637 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "最多上传照相的字节。默认是零,意思是无限。" - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "最大图片大小" - -#: src/Module/Admin/Site.php:638 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "最多像素在上传图片的长度。默认-1,意思是无限。" - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "JPEG 图片质量" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。" - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "注册政策" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "一天最多注册" - -#: src/Module/Admin/Site.php:642 -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 "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。" - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "注册正文" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "" - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "" - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "账户丢弃X天后" - -#: src/Module/Admin/Site.php:645 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。" - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "允许的朋友域" - -#: src/Module/Admin/Site.php:646 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。" - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "允许的电子邮件域" - -#: src/Module/Admin/Site.php:647 -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 "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。" - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "" - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "阻止公开" - -#: src/Module/Admin/Site.php:650 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "强行发布" - -#: src/Module/Admin/Site.php:651 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "让所有这网站的的简介表明在网站目录。" - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "启用此项可能会违反隐私法律,譬如 GDPR 等" - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "新用户默认写私人文章" - -#: src/Module/Admin/Site.php:653 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "默认新用户文章批准使默认隐私组,没有公开。" - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "别包含文章内容在邮件消息" - -#: src/Module/Admin/Site.php:654 -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 "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。" - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "不允许插件的公众使用权在应用选单。" - -#: src/Module/Admin/Site.php:655 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "复选这个框为把应用选内插件限制仅成员" - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "别嵌入私人图案在文章里" - -#: src/Module/Admin/Site.php:656 -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 "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。" - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "" - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "允许用户用遥远的自身" - -#: src/Module/Admin/Site.php:658 -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 "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。" - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "阻止多次注册" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "不允许用户注册别的账户为当页。" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "" - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "" - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "个用户文章数量在社会页" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "" - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora 支持无法启用,因为 Friendica 被安装到了一个子目录。" - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "启用 Diaspora 支持" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "提供内置的 Diaspora 网络兼容性。" - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "只允许 Friendica 联系人" - -#: src/Module/Admin/Site.php:669 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "所有联系人必须使用 Friendica 协议 。所有其他内置沟通协议都已停用。" - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "验证 SSL" - -#: src/Module/Admin/Site.php:670 -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网站交流。" - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "代理用户" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "代理URL" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "网络超时" - -#: src/Module/Admin/Site.php:673 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "输入秒数。输入零为无限(不推荐的)。" - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "最大平均负荷" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "最少内存" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "" - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "定期检查全球联系人" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "" - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "重新查询间隔天数" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "从其他服务器上发现联系人" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "" - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "搜索本地目录" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "发布服务器信息" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "检查上游版本" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "压制标签" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "不在文章末尾显示主题标签列表。" - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "清理数据库" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "" - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "" - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "" - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "" - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "" - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "路线到项目缓存" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "缓存时间秒" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。" - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "文件最多评论" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "临时文件路线" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "停用图片代理" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "" - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "只在标签项内搜索" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "在大型系统中,正文搜索会极大降低系统运行速度。" - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "新基础URL" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "" - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "RINO 加密" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "节点之间的加密层。" - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "已启用" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "" - -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "启用快车道模式" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "" - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "中继服务器" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "" - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "所有" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "" - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "" - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "" - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "有新的 Friendica 版本可供下载。您当前的版本为 %1$s,上游版本为 %2$s" - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "" - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "" - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "" - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "" - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "" - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "" - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "" - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "" - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "" - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "" - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "正常帐户" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "公开论坛帐号" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "自动朋友帐户" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "博客账户" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "通知排队" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "" - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "概要" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "注册的用户" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "未决的注册" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "版本" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "激活插件" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "主题设置更新了。" - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "" - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "" - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "" - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "截图" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "主题" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "" - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "重载活动的主题" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "未在系统中发现主题。它们应该被放置在 %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[试验]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[没支持]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "" - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "显示服务条款" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "" - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "显示隐私说明" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "隐私声明预览" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "服务条款" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "" - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s 用户被删除了" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "账户已被批准。" - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "注册日期" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "上次登录" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "添加用户" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "用户注册等待确认" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "用户等待长久删除" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "要求日期" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "没有注册。" - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "否定" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "网站管理员" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "帐户过期了" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "新用户" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users.php:267 -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您肯定吗?" - -#: src/Module/Admin/Users.php:268 -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您肯定吗?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "新用户的名字。" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "昵称" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "新用户的昵称。" - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "新用户的邮件地址。" - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "没有朋友展示。" - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "没有安装的应用" - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "应用" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "找不到项目。" - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "" - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "概览" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "配置" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "附加的特点" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "数据库" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "数据库更新" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" msgstr "" -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "工具" +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "已注销。" -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "联系人屏蔽列表" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "服务器屏蔽列表" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "诊断" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "PHP Info" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "探测地址" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "检查 webfinger" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." msgstr "" -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "插件特性" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "用户注册等确认" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "简介内容" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "只有你可以看这个" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "新人建议" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "搜索人 - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "搜索论坛 - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "帐户" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 #: src/Module/Settings/TwoFactor/Index.php:105 msgid "Two-factor authentication" msgstr "两步认证" -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "显示" - -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" -msgstr "管理帐号" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "连接着应用" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "导出个人信息" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "删除账户" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." +#: src/Module/Security/TwoFactor/Verify.php:81 +msgid "" +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" msgstr "" -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "文章创建了" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "联系人设置已应用。" - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "联系人更新失败。" - -#: src/Module/Contact/Advanced.php:113 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "警告:此为进阶,如果您输入不正确的信息,您也许无法与这位联系人的正常通讯。" - -#: src/Module/Contact/Advanced.php:114 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "请立即用后退按钮如果您不确定怎么用这页" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "没有复制" - -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "复制为传达文章" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "复制为我自己的文章" - -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "返回到联系人编辑器" - -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "重新获取联系人数据" - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "遥远的自身" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "把这个熟人的文章复制。" - -#: src/Module/Contact/Advanced.php:148 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。" - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "帐户昵称" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname越过名/昵称" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "帐户URL" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" -msgstr "" - -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "朋友请求URL" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "朋友确认URL" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "通知端URL" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "喂URL" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "新照片从这个URL" - -#: src/Module/Contact.php:88 +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d 个联系人被编辑了。" - -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "无法访问联系人记录。" - -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "联系人更新了。" - -#: src/Module/Contact.php:385 -msgid "Contact not found" +msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "联系人已被屏蔽" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "联系人已被解除屏蔽" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "联系人已被忽视" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "联系人已被解除忽视" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "联系人已存档" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "联系人已被解除存档" - -#: src/Module/Contact.php:448 -msgid "Drop contact" +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "您真的想删除这个联系人吗?" +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "" -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "联系人被删除了。" - -#: src/Module/Contact.php:495 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format -msgid "You are mutual friends with %s" -msgstr "您和 %s 互为朋友" +msgid "Remaining recovery codes: %d" +msgstr "" -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "你正在和 %s 分享" +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "两步恢复" -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s 正在和你分享" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "私人交流对这个联系人不可用。" - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "从未" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(更新成功)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(更新不成功)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "建议朋友们" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "网络种类: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "和这个联系人的通信断开了!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "拿文源别的消息" - -#: src/Module/Contact.php:553 +#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" msgstr "" -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "取消息" - -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "获取关键字" - -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "取消息和关键词" - -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "联系人信息/便条" - -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "联系人设置" - -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "联系人" - -#: src/Module/Contact.php:585 -msgid "Their personal note" +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" msgstr "" -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "编辑联系人便条" +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "" -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "看%s的简介[%s]" +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "创建新的账户" -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "屏蔽/解除屏蔽联系人" +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "注册" -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "忽略联系人" +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "您的OpenID:" -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "看交流" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "上个更新:" - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "更新公开文章" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "现在更新" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "取消忽视" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "现在被封禁的" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "现在不理的" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "当前已存档" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "等待连接确认" - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 -msgid "Hide this contact from others" -msgstr "对其他人隐藏这个联系人" - -#: src/Module/Contact.php:613 +#: src/Module/Security/Login.php:129 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "回答/喜欢关您公开文章还可见的" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "新消息提示" +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "或者使用 OpenID 登录: " -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "发送这个联系人的每篇新文章的通知" +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "注销" -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "黑名单关键词" +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "登录" -#: src/Module/Contact.php:616 +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "密码:" + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "记住我" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "忘记你的密码吗?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "网站服务条款" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "服务条款" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "网站隐私政策" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "隐私政策" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "OpenID协议错误。未返回ID" + +#: src/Module/Security/OpenID.php:92 msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "找不到帐户。请登录到您的现有帐户以向其添加OpenID。" -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "显示所有的联系人" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "" - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "被屏蔽的" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "只显示被屏蔽的联系人" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "忽视的" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "只显示忽略的联系人" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "已存档" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "只显示已存档联系人" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "隐藏的" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "只显示隐藏的联系人" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "搜索您的联系人" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 -#, php-format -msgid "Results for: %s" -msgstr "" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "存档" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "从存档拿来" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "批量操作" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "此联系人开始的对话" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "查看所有联系人" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "查看所有公共好友" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "高级联系人设置" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "共同友谊" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "是你的粉丝" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "您已关注" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "" - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "" - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "编辑联系人" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "切换屏蔽状态" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "交替忽视现状" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "交替档案现状" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "删除联系人" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "本地社区" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "全球社区" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "没有结果。" - -#: src/Module/Conversation/Community.php:125 +#: src/Module/Security/OpenID.php:94 msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." msgstr "" -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "社区选项不可用。" - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "不可用的" - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "贡献" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica 是一个社区项目,如果没有许多人的努力她将无法实现。这里列出了那些为代码作出贡献或者参与本地化翻译的人们。感谢大家的努力!" - -#: src/Module/Debug/Babel.php:49 -msgid "Source input" -msgstr "源码输入" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" -msgstr "" - -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "" - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "原始 HTML 输入" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "HTML 输入" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "源文本" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "您必须登录才能使用此模块" - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "源链接" +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7858,95 +4763,545 @@ msgstr "装换的当地时间:%s" msgid "Please select your timezone:" msgstr "请选择你的时区:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "源码输入" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "原始 HTML 输入" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "HTML 输入" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "源文本" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "只有已登录用户才被允许进行探测。" +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "您必须登录才能使用此模块" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "源链接" + #: src/Module/Debug/Probe.php:54 msgid "Lookup address" msgstr "" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "管理身份或页" - -#: src/Module/Delegation.php:148 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "交替不同同一人或社会/组页合用您的账户或给您「管理」批准" - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "选择同一个人管理:" - -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "没有文章(有的文章会被隐藏)。" - -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "找在这网站" - -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "结果:" - -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "网站目录" - -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" +msgid "%s's timeline" +msgstr "%s 的时间线" + +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 +#, php-format +msgid "%s's posts" +msgstr "%s的帖子" + +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "%s 的评论" + +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "没有联系人。" + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "关注(%s)" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "关注(%s)" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "互为好友 (%s)" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" msgstr "" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "-选择-" +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "正在关注" -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "已安装的插件/应用:" +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "互为好友" -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "没有已安装的插件或应用" - -#: src/Module/Friendica.php:68 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "阅读此节点的服务条款。" - -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "在这个服务器上以下远程服务器被封禁了。" - -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Profile.php:135 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." +"You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Friendica.php:98 +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "生日:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "年龄 :" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d岁" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "主页:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "修改简介" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "只有父用户才能创建其他帐户。" + +#: src/Module/Register.php:101 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "请浏览 Friendi.ca 以了解更多关于 Friendica 项目的信息。" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "您可以(可选)通过OpenID填写此表单,方法是提供您的OpenID并单击“注册”。" -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Bug 及 issues 报告:请访问" +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。" -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "在 github 上的错误追踪系统" +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "您的OpenID(可选的):" -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "放您的简介再员目录?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "给管理员的便条" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "给管理员留条消息,为什么你想加入这个节点" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "会员身份在这个网站是光通过邀请。" + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "您的邀请码:" + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "注册" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "你的全名 (比如张三,真名或看起来是真名):" + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "请重复您的电子邮件地址" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "留空以使用自动生成的密码。" + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "选择配置文件昵称。这必须以文本字符开始。您在此站点上的个人资料地址将是“昵称@”%s。" + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "选择昵称:" + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "导入您的简介到这个friendica服务器" + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "服务条款" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "注意:此节点明确包含成人内容" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "家长密码:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "请为家长账户设置密码以使您的请求有效化。" + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "密码不匹配。" + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "请输入您的密码。" + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "您输入的信息太多。" + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "请在第二个字段中输入相同的邮件地址。" + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "附加帐户已创建。" + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "注册成功。请检查您的收件箱以获取进一步操作。" + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。" + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "注册成功。" + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "处理不了您的注册。" + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "您必须给管理员留下一张申请单。" + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "您的注册等网页主的批准。" + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" msgstr "" +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "未发现" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "" + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "" + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "" + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "" + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "遇到意外情况,没有合适的更具体的消息。" + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "" + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "回去" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "%s欢迎你" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "没有朋友展示。" + #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." msgstr "" @@ -7964,114 +5319,16 @@ msgstr "推荐的朋友们" msgid "Suggest a friend for %s" msgstr "给 %s 推荐朋友" -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "群组已创建。" +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "贡献" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "无法创建群组。" - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "组找不到。" - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "组名变化了。" - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "" - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "" - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "" - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "" - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "" - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "" - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "" - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "" - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "保存组" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "创建一组联系人/朋友。" - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "组删除了。" - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "不能删除组。" - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "删除群组" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "编辑群组名称" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "成员" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "单击联系人以添加或删除。" - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "帮助:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "%s欢迎你" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "无简介" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "" +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica 是一个社区项目,如果没有许多人的努力她将无法实现。这里列出了那些为代码作出贡献或者参与本地化翻译的人们。感谢大家的努力!" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8085,10 +5342,30 @@ msgstr "系统检测" msgid "Check again" msgstr "再检测" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "没SSL方针,环节将追踪页SSL现状" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "强制所有链接使用 SSL" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "自签证书,只在本地链接使用 SSL(不推荐)" + #: src/Module/Install.php:208 msgid "Base settings" msgstr "" +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "SSL环节方针" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "决定产生的链接是否应该强制使用 SSL" + #: src/Module/Install.php:215 msgid "Host name" msgstr "服务器名" @@ -8217,6 +5494,810 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "-选择-" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "摇隐私信息无效" + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "可见方:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "管理身份或页" + +#: src/Module/Delegation.php:148 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "交替不同同一人或社会/组页合用您的账户或给您「管理」批准" + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "选择同一个人管理:" + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "本地社区" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "全球社区" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "没有结果。" + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "此社区流显示此节点接收到的所有公共帖子。它们可能无法反映此节点用户的意见。" + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "社区选项不可用。" + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "不可用的" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Friendica欢迎你" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "新成员清单" + +#: src/Module/Welcome.php:46 +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 "我们想提供一些建议和链接以助于让你有愉快的经历。点击任意一项访问相应的网页。在你注册之后,到这个页面的链接会在你的主页显示两周,之后悄声地消失。" + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "入门" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica 漫游" + +#: src/Module/Welcome.php:50 +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 "在你的快速上手页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。" + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "您的设置" + +#: src/Module/Welcome.php:54 +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 "在你的设置页 - 改变你最初的密码。同时也记住你的身份地址。这看起来像一个电子邮件地址 - 并且在这个自由的社交网络交友时会有用。" + +#: src/Module/Welcome.php:55 +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 "校对别的设置,特别是隐私设置。一个未发布的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。" + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "上传简介照片" + +#: src/Module/Welcome.php:59 +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 "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。" + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "编辑您的简介" + +#: src/Module/Welcome.php:61 +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 "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。" + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "简介关键字" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "为你的个人资料设置一些描述你兴趣的公共关键字。我们也许能找到其他有相似兴趣的人,并建议结交朋友。" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "连接着" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "正在导入邮件" + +#: src/Module/Welcome.php:68 +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 "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "转到您的联系人页面" + +#: src/Module/Welcome.php:70 +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 "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。" + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "您网站的目录" + +#: src/Module/Welcome.php:72 +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 "目录页让你在这个网络或者其他的联邦的站点找到其他人。在他们的简介页找一个连接关注链接。如果需要,提供你自己的身份地址。" + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "找新人" + +#: src/Module/Welcome.php:74 +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 "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。" + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "群组" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "给你的联系人分组" + +#: src/Module/Welcome.php:78 +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 "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。" + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "我文章怎么没公开的?" + +#: src/Module/Welcome.php:81 +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尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。" + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "获取帮助" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "看帮助部分" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "我们帮助页可查阅到详情关于别的编程特点和资源。" + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "文章创建了" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "资料" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "概览" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "联邦网络统计" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "配置" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "网站" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "用户" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "插件" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "主题" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "附加功能" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "数据库" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "数据库更新" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "工具" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "联系人屏蔽列表" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "服务器屏蔽列表" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "删除项目" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "记录" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "查看日志" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "诊断" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "PHP Info" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "探测地址" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "检查 webfinger" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "管理" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "插件特性" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "用户注册等确认" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d 个联系人被编辑了。" + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "无法访问联系人记录。" + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "关注" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "取消关注" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "没有找到联系人" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "联系人已被屏蔽" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "联系人已被解除屏蔽" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "联系人已被忽视" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "联系人已被解除忽视" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "联系人已存档" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "联系人已被解除存档" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "删除联系人" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "您真的想删除这个联系人吗?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "联系人被删除了。" + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "您和 %s 互为好友" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "你正在和 %s 分享" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s 正在和你分享" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "此联系人无法使用私人通信" + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "从未" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(更新成功)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(更新不成功)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "建议朋友们" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "网络种类: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "和这个联系人的通信断开了!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "获取来源的更多信息" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "从订阅源项获取预览图片、标题和摘要等信息。如果feed不包含太多文本,可以激活它。关键字取自提要项中的meta头,并作为散列标记发布。" + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "已停用" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "取消息" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "获取关键字" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "取消息和关键词" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "联系人信息/便条" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "联系人设置" + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "联系人" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "他们的个人记录" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "编辑联系人便条" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "看%s的简介[%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "屏蔽/解除屏蔽联系人" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "忽略联系人" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "看交流" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "上个更新:" + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "更新公开文章" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "现在更新" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "解除屏蔽" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "取消忽视" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "现在被封禁的" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "现在不理的" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "当前已存档" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "等待连接确认" + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "回答/喜欢关您公开文章还可见的" + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "新消息提示" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "发送这个联系人的每篇新文章的通知" + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "选择“FETCH INFORMATION AND KEYS”时,不应转换为哈希标签的关键字的逗号分隔列表" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "操作" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "所有联系人" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "显示所有的联系人" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "待定" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "仅显示待定的联系人" + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "被屏蔽的" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "只显示被屏蔽的联系人" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "忽视的" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "只显示忽略的联系人" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "已存档" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "只显示已存档联系人" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "隐藏的" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "只显示隐藏的联系人" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "组织你的联络群组" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "搜索您的联系人" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "存档" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "从存档拿来" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "批量操作" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "此联系人开始的对话" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "个人资料内容" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "查看所有联系人" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "查看所有公共好友" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "高级联系人设置" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "互为好友" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "是你的粉丝" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "您已关注" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "挂起的传出联系人请求" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "挂起的传入联系人请求" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "重新获取联系人数据" + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "切换屏蔽状态" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "交替忽视现状" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "交替档案现状" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "删除联系人" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "" + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "该数据是通信所必需的,并且被传递到通信伙伴的节点并存储在那里。用户可以输入可传输到通信伙伴帐户的附加私人数据。" + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "" + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "隐私声明" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "帮助:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "邀请限超过了。" @@ -8320,6 +6401,1837 @@ msgid "" "important, please visit http://friendi.ca" msgstr "欲了解更多关于 Friendica 项目的信息以及为什么我们认为这很重要,请访问 http://friendi.ca" +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "搜索人 - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "搜索论坛 - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "停用" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "使能用" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "截图" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "管理" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "肘节" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "作者:" + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "维护者:" + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "重载活动的主题" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "未在系统中发现主题。它们应该被放置在 %1$s" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[试验]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[没支持]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "锁定特性 %s" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "管理附加功能" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s用户被屏蔽了" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s用户已解除屏蔽" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "你不能把你自己移除" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s 用户被删除了" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "账户已被批准。" + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "电子邮件" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "注册日期" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "上次登录" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "添加用户" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "全选" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "用户注册等待确认" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "用户等待长久删除" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "要求日期" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "没有注册。" + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "否定" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "网站管理员" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "帐户过期了" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "新用户" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Admin/Users.php:267 +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您肯定吗?" + +#: src/Module/Admin/Users.php:268 +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您肯定吗?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "新用户的名字。" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "昵称" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "新用户的昵称。" + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "新用户的邮件地址。" + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "" + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "" + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "已创建" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "更新当成功标签了" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "执行 %s 失败,错误:%s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "把%s更新成功地实行。" + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "%s更新没回答现状。不知道是否成功。" + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "没有不通过地更新。" + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "检查数据库结构" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "没通过的更新" + +#: src/Module/Admin/DBSync.php:117 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "这个不包括1139号更新之前,它们没回答装线。" + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "标注成功(如果手动地把更新实行了)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "试图自动地把这步更新实行" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "别的" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "未知" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "打开 %1$s 日志文件出错。\\r\\n
请检查 %1$s 文件是否存在并且可读。" + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "无法打开 %1$s 日志文件。\\r\\n
请检查 %1$s 文件是否可读。" + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "PHP 日志已启用。" + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "PHP 日志已禁用。" + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "清理出" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "启用调试" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "日志文件" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "日志级别" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP 日志" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "要临时启用PHP错误和警告的日志记录,您可以在安装的index.php文件中添加以下内容。“ERROR_LOG”行中设置的文件名相对于Friendica顶级目录,并且必须可由Web服务器写入。“LOG_ERROR”和“DISPLAY_ERROR”的选项“1”用于启用这些选项,设置为“0”将禁用它们。" + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "不能分析基础URL。至少要://" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "没专门适合手机的主题" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (实验性)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "没有社会页" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "本网站用户的公开文章" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "多用户网站" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "关闭" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "要批准" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "打开" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "请勿检查" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "检查稳定版" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "检查开发版本" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "文件上传" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "政策" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "性能" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "讯息中继" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "迁移实例" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "" + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "网页名字" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "寄主邮件" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "标题/标志" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "捷径小图片" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "指向将用于浏览器的图标的链接。" + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "触摸小图片" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "链接到将用于平板电脑和移动设备的图标。" + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "别的消息" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "" + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "系统语言" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "系统主题" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "手机系统主题" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "用于移动设备的主题" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "强制使用 SSL" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环" + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "在导航菜单隐藏帮助条目" + +#: src/Module/Admin/Site.php:613 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "在导航菜单中隐藏帮助页面的菜单条目。您仍然可以通过输入「/help」直接访问。" + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "单用户网站" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "弄这网站多用户或单用户为选择的用户" + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "用于存储上载数据的后端。如果更改存储后端,则可以手动移动现有文件。如果不这样做,则在更改之前上载的文件仍将在旧后端可用。有关选择和移动过程的详细信息,请参阅设置文档。" + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "图片最大尺寸" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "最多上传照相的字节。默认是零,意思是无限。" + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "最大图片大小" + +#: src/Module/Admin/Site.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "最多像素在上传图片的长度。默认-1,意思是无限。" + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "JPEG 图片质量" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。" + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "注册政策" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "一天最多注册" + +#: src/Module/Admin/Site.php:623 +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 "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。" + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "注册正文" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "" + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "" + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "账户丢弃X天后" + +#: src/Module/Admin/Site.php:626 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。" + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "允许的朋友域" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。" + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "允许的电子邮件域" + +#: src/Module/Admin/Site.php:628 +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 "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。" + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "不显示丰富内容(例如嵌入式PDF),除非来自下面列出的域。" + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "阻止公开" + +#: src/Module/Admin/Site.php:631 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "强行发布" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "让所有这网站的的简介表明在网站目录。" + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "启用此项可能会违反隐私法律,譬如 GDPR 等" + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "新用户默认写私人文章" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "默认新用户文章批准使默认隐私组,没有公开。" + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "别包含文章内容在邮件消息" + +#: src/Module/Admin/Site.php:635 +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 "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。" + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "不允许插件的公众使用权在应用选单。" + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "复选这个框为把应用选内插件限制仅成员" + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "别嵌入私人图案在文章里" + +#: src/Module/Admin/Site.php:637 +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 "不要将帖子中本地托管的私人照片替换为嵌入的图像副本。这意味着,收到包含私人照片的帖子的联系人将不得不验证并加载每张图像,这可能需要一段时间。" + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "设置此选项以通知您的节点主要用于可能不适合未成年人的显式内容。此信息将在节点信息中发布,并且可能被(例如)全局目录用来从要加入的节点列表中过滤您的节点。此外,用户注册页面上将显示有关此问题的说明。" + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "允许用户用遥远的自身" + +#: src/Module/Admin/Site.php:639 +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 "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。" + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "阻止多次注册" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "不允许用户注册别的账户为当页。" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "个用户文章数量在社会页" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "禁用OStatus支持" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "禁用内置OStatus(StatusNet、GNU Social等)。兼容性。OStatus中的所有通信都是公开的,因此偶尔会显示隐私警告。" + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "只有在启用线程时才能启用OStatus支持。" + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora 支持无法启用,因为 Friendica 被安装到了一个子目录。" + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "启用 Diaspora 支持" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "提供内置的 Diaspora 网络兼容性。" + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "只允许 Friendica 联系人" + +#: src/Module/Admin/Site.php:650 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "所有联系人必须使用 Friendica 协议 。所有其他内置沟通协议都已停用。" + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "验证 SSL" + +#: src/Module/Admin/Site.php:651 +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网站交流。" + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "代理用户" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "代理URL" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "网络超时" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "输入秒数。输入零为无限(不推荐的)。" + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "最大平均负荷" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "延迟传递和轮询过程之前的最大系统负载-默认值%d。" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "前端退出服务之前的最大系统负载-默认值为50。" + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "最少内存" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "重新查询间隔天数" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "从其他服务器上发现联系人" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "搜索本地目录" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "搜索本地目录,而不是全局目录。在本地搜索时,每次搜索都将在后台对全局目录执行。这会在重复搜索时改进搜索结果。" + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "发布服务器信息" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "如果启用,将发布常规服务器和使用数据。这些数据包括服务器的名称和版本、拥有公共配置文件的用户数量、帖子数量以及激活的协议和连接器。有关详细信息,请参阅-the-federation.info。" + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "检查上游版本" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "压制标签" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "不在文章末尾显示主题标签列表。" + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "清理数据库" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "从一些其他帮助器表中删除旧的远程项目、孤立的数据库记录和旧内容。" + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "远程项目的使用期限" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "启用数据库清理后,这将定义删除远程项目的天数。自己的物品,标记或归档的物品总是保存着。0禁用此行为。" + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "无人认领物品的寿命" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "" + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "" + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "路线到项目缓存" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "缓存时间秒" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。" + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "文件最多评论" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "临时文件路线" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "如果您有受限制的系统,其中Web服务器无法访问系统临时路径,请在此处输入其他路径。" + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "停用图片代理" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "图片代理提高了性能和私密性。它不应该用于带宽非常低的系统。" + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "只在标签项内搜索" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "在大型系统中,正文搜索会极大降低系统运行速度。" + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "新基础URL" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "更改此服务器的URL。向所有用户的所有Friendica和Diaspora*联系人发送迁移消息。" + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "RINO 加密" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "节点之间的加密层。" + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "已启用" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "如果您的系统不允许使用“proc_open”,请启用此选项。这可能发生在共享主机上。如果启用此功能,则应在crontab中增加工作进程调用的频率。" + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "启用快车道模式" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "" + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "中继服务器" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "所有" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "" + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "有新的 Friendica 版本可供下载。您当前的版本为 %1$s,上游版本为 %2$s" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "" + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "正常帐户" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "公开论坛帐号" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "自动朋友帐户" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "博客账户" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "通知排队" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "注册的用户" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "待定的注册" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "版本" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "激活插件" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "显示服务条款" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "启用服务条款页面。如果启用此功能,则会在注册表和常规信息页面中添加一个条款链接。" + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "显示隐私说明" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "隐私声明预览" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "服务条款" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "在这里输入节点的服务条款。你可以使用 BBCode。节的标题应该是[ h2]及以下。" + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "封禁原因" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "选中以从列表中删除此条目" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "添加新条目到屏蔽列表" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "封禁原因" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "添加条目" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "保存变更到屏蔽列表" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "屏蔽列表中的当前条目" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "删除屏蔽列表中的条目" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "从屏蔽列表删除条目?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "照片" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "被标记为要删除的项目。" + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "删除这个项目" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "" + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "你想要删除的项目的 GUID." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "插件 %s 已禁用。" + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "插件 %s 已启用。" + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "重新加载可用插件" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "目前您的节点上没有可用插件。您可以在 %1$s 找到官方插件库,或者到开放的插件登记处 %2$s 也能找到其他有趣的插件" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "没有文章(有的文章会被隐藏)。" + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "找在这网站" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "结果:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "站点目录" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "找不到项目。" + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "" @@ -8354,98 +8266,55 @@ msgid "" "your device" msgstr "" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "系统关闭为了维持" +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "已安装的插件/应用:" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "" +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "没有已安装的插件或应用" -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "显示被忽视的请求" +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "阅读此节点的服务条款。" -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "隐藏被忽视的请求" +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "在这个服务器上以下远程服务器被封禁了。" -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "声称被您认识:" - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "是否启用双向连接?" - -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "" +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "这是Friendica,版本为%s在此网站上运行的地址为%s。数据库版本为%s,更新后发布版本为%s。" -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "请浏览 Friendi.ca 以了解更多关于 Friendica 项目的信息。" + +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Bug 及 issues 报告:请访问" + +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "在 github 上的错误追踪系统" + +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "朋友" +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "只有你可以看这个" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "订阅者" - -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "没有介绍。" - -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "没有更多的 %s 通知。" - -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "" - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "网络通知" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "系统通知" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "私人通知" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "主页通知" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "显示未读" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "显示全部" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "新人建议" #: src/Module/Photo.php:87 #, php-format @@ -8457,237 +8326,11 @@ msgstr "" msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "" - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "没有联系人。" - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "j F" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "生日:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "年龄 :" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%d岁" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "%s 的时间线" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "%s的帖子" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "%s 的评论" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "" - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "" - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。" - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "您的OpenID(可选的):" - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "放您的简介再员目录?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "给管理员的便条" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "给管理员留条消息,为什么你想加入这个节点" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "会员身份在这个网站是光通过邀请。" - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "您的邀请码:" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "你的全名 (比如张三,真名或看起来是真名):" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "留空以使用自动生成的密码。" - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "" - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "选择昵称:" - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "进口您的简介到这个friendica服务器" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "家长密码:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "请为家长账户设置密码以使您的请求有效化。" - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "" - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "" - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "注册成功。请检查您的收件箱以获取进一步操作。" - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。" - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "注册成功。" - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "处理不了您的注册。" - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "" - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "您的注册等网页主的批准。" - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" -msgstr "" +msgstr "提供的个人资料链接似乎无效" -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8695,465 +8338,387 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "帐户" + +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "显示" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "管理帐号" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "已连接的应用程序" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "导出个人信息" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "删除账户" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "无法创建群组。" + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "组找不到。" + +#: src/Module/Group.php:78 +msgid "Group name was not changed." msgstr "" -#: src/Module/Search/Index.php:52 +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "" + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "" + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "" + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "" + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "" + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "" + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "保存组" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "创建一组联系人/朋友。" + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "组名:" + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "不在任何组的联系人" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "不能删除组。" + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "删除群组" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "编辑群组名称" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "成员" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "单击联系人以添加或删除。" + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "只有已登录的用户被允许进行搜索。" -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "对未登录的用户,每分钟只允许一条搜索。" -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "搜索" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "项目标记为:%s" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "创建新的账户" +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "无简介" -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." msgstr "" -#: src/Module/Security/Login.php:129 +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "戳" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "把人家戳或别的行动" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "选择您想把别人作" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "使这个文章私人" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "联系人更新失败。" + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "警告:此为进阶,如果您输入不正确的信息,您也许无法与这位联系人的正常通讯。" -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "或者使用 OpenID 登录: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "密码:" - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "记住我" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "忘记你的密码吗?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "网站服务条款" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "服务条款" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "网站隐私政策" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "隐私政策" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "已注销。" - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "" - -#: src/Module/Security/OpenID.php:92 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "请立即用后退按钮如果您不确定怎么用这页" -#: src/Module/Security/OpenID.php:94 +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "没有复制" + +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "复制为传达文章" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "复制为我自己的文章" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "返回到联系人编辑器" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "遥远的自身" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "把这个熟人的文章复制。" + +#: src/Module/Contact/Advanced.php:146 msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。" + +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "帐户昵称" + +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname越过名/昵称" + +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "帐户URL" + +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "" +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "朋友请求URL" -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "" +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "朋友确认URL" -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "" +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "通知端URL" -#: src/Module/Security/TwoFactor/Recovery.php:84 -msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "" +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "喂URL" -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "" +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "新照片从这个URL" -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "" +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "没有安装的应用" -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "" +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "应用" -#: src/Module/Security/TwoFactor/Verify.php:81 -msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "" - -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "" - -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "" - -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "委派已成功授予。" - -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "找不到父用户、不可用或密码不匹配。" - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "委派已成功吊销。" - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "委派管理员可以查看但不能更改委派权限。" - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "找不到委派用户。" - -#: src/Module/Settings/Delegation.php:142 -msgid "No parent user" -msgstr "无家长账户" - -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 -msgid "Parent User" -msgstr "家长账户" - -#: src/Module/Settings/Delegation.php:161 -msgid "Additional Accounts" -msgstr "其他账号" - -#: src/Module/Settings/Delegation.php:162 -msgid "" -"Register additional accounts that are automatically connected to your " -"existing account so you can manage them from this account." -msgstr "注册自动连接到现有帐号的其他帐号,以便您可以从此帐号管理它们。" - -#: src/Module/Settings/Delegation.php:163 -msgid "Register an additional account" -msgstr "注册一个附加帐号" - -#: src/Module/Settings/Delegation.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "父用户对此帐号拥有完全控制权,包括帐号设置。请仔细检查您授予此访问权限的人员。" - -#: src/Module/Settings/Delegation.php:171 -msgid "Delegates" -msgstr "代表" - -#: src/Module/Settings/Delegation.php:173 -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 "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。" - -#: src/Module/Settings/Delegation.php:174 -msgid "Existing Page Delegates" -msgstr "目前页代表" - -#: src/Module/Settings/Delegation.php:176 -msgid "Potential Delegates" -msgstr "潜力的代表" - -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "加" - -#: src/Module/Settings/Delegation.php:180 -msgid "No entries." -msgstr "没有项目。" - -#: src/Module/Settings/Display.php:101 -msgid "The theme you chose isn't available." -msgstr "" - -#: src/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (不支持的)" - -#: src/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "表示设置" - -#: src/Module/Settings/Display.php:183 -msgid "General Theme Settings" -msgstr "通用主题设置" - -#: src/Module/Settings/Display.php:184 -msgid "Custom Theme Settings" -msgstr "自定义主题设置" - -#: src/Module/Settings/Display.php:185 -msgid "Content Settings" -msgstr "内容设置" - -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "主题设置" - -#: src/Module/Settings/Display.php:187 -msgid "Calendar" -msgstr "日历" - -#: src/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "显示主题:" - -#: src/Module/Settings/Display.php:194 -msgid "Mobile Theme:" -msgstr "手机主题:" - -#: src/Module/Settings/Display.php:197 -msgid "Number of items to display per page:" -msgstr "每页表示多少项目:" - -#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 -msgid "Maximum of 100 items" -msgstr "最多100项目" - -#: src/Module/Settings/Display.php:198 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "用手机看一页展示多少项目:" - -#: src/Module/Settings/Display.php:199 -msgid "Update browser every xx seconds" -msgstr "更新游览器每XX秒" - -#: src/Module/Settings/Display.php:199 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "至少 10 秒。输入 -1 禁用。" - -#: src/Module/Settings/Display.php:200 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:200 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." -msgstr "" - -#: src/Module/Settings/Display.php:201 -msgid "Don't show emoticons" -msgstr "不显示表情符号" - -#: src/Module/Settings/Display.php:201 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "" - -#: src/Module/Settings/Display.php:202 -msgid "Infinite scroll" -msgstr "无限的滚动" - -#: src/Module/Settings/Display.php:202 -msgid "Automatic fetch new items when reaching the page end." -msgstr "" - -#: src/Module/Settings/Display.php:203 -msgid "Disable Smart Threading" -msgstr "" - -#: src/Module/Settings/Display.php:203 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "" - -#: src/Module/Settings/Display.php:204 -msgid "Hide the Dislike feature" -msgstr "" - -#: src/Module/Settings/Display.php:204 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "" - -#: src/Module/Settings/Display.php:206 -msgid "Beginning of week:" -msgstr "一周的开始:" - -#: src/Module/Settings/Profile/Index.php:86 +#: src/Module/Settings/Profile/Index.php:85 msgid "Profile Name is required." msgstr "必要简介名" -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "简介更新了。" - -#: src/Module/Settings/Profile/Index.php:140 +#: src/Module/Settings/Profile/Index.php:137 msgid "Profile couldn't be updated." msgstr "无法更新简介" -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "Label:" msgstr "标签:" -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 msgid "Field Permissions" -msgstr "" +msgstr "字段权限" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 msgid "(click to open/close)" msgstr "(点击来打开/关闭)" -#: src/Module/Settings/Profile/Index.php:211 +#: src/Module/Settings/Profile/Index.php:205 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:235 msgid "Profile Actions" msgstr "简介照片操作" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:236 msgid "Edit Profile Details" msgstr "剪辑简介消息" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:238 msgid "Change Profile Photo" msgstr "改变简介照片" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:243 msgid "Profile picture" msgstr "头像" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:244 msgid "Location" msgstr "位置" -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 #: src/Util/Temporal.php:95 msgid "Miscellaneous" msgstr "其他" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:246 msgid "Custom Profile Fields" msgstr "自定义简介字段" -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "上传简历照片" - -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:252 msgid "Display name:" msgstr "显示名称:" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:255 msgid "Street Address:" msgstr "地址:" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:256 msgid "Locality/City:" msgstr "现场/城市:" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:257 msgid "Region/State:" msgstr "区域/省" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:258 msgid "Postal/Zip Code:" msgstr "邮政编码:" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:259 msgid "Country:" msgstr "国家:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) 地址:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。" -#: src/Module/Settings/Profile/Index.php:268 +#: src/Module/Settings/Profile/Index.php:262 msgid "Homepage URL:" msgstr "主页URL:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "Public Keywords:" msgstr "公开关键字 :" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(用于建议可能的朋友们,会被别人看)" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "Private Keywords:" msgstr "私人关键字" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "(Used for searching profiles, never shown to others)" msgstr "(用于搜索简介,没有给别人看)" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:265 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9161,12 +8726,12 @@ msgid "" "\t\t\t\t

Reorder by dragging the field title.

\n" "\t\t\t\t

Empty the label field to remove a custom field.

\n" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" -msgstr "" +msgstr "

自定义字段将显示在您的个人资料页面上。

\n\t\t\t\t

您可以在字段值中使用BBCodes。

\n\n\t\t\t\t

通过拖动字段标题重新排序。

\n\t\t\t\t

清空标签字段以删除自定义字段。

\n\t\t\t\t

非公共字段只能由选定的Friendica联系人或选定组中的Friendica联系人查看。

" #: src/Module/Settings/Profile/Photo/Crop.php:102 #: src/Module/Settings/Profile/Photo/Crop.php:118 #: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format msgid "Image size reduction [%s] failed." msgstr "图片压缩 [%s] 失败。" @@ -9206,115 +8771,111 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "照片成功地上传了。" - -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:130 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:129 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "or" msgstr "或者" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "skip this step" msgstr "略过这步" -#: src/Module/Settings/Profile/Photo/Index.php:140 +#: src/Module/Settings/Profile/Photo/Index.php:138 msgid "select a photo from your photo albums" msgstr "从您的照片册选择一片。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "" +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "委派已成功授予。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "" +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "找不到父用户、不可用或密码不匹配。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "委派已成功吊销。" + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 msgid "" -"App-specific password generation failed: This description already exists." -msgstr "" +"Delegated administrators can view but not change delegation permissions." +msgstr "委派管理员可以查看但不能更改委派权限。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "" +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "找不到委派用户。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "" +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "无家长账户" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "" +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "家长账户" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "" +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "其他账号" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/Delegation.php:163 msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "注册自动连接到现有帐号的其他帐号,以便您可以从此帐号管理它们。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "注册一个附加帐号" + +#: src/Module/Settings/Delegation.php:168 msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "父用户对此帐号拥有完全控制权,包括帐号设置。请仔细检查您授予此访问权限的人员。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "" +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "代表" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "取消" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "全部取消" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/Delegation.php:174 msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "当您生成特定于应用程序的新密码时,您必须立即使用它,生成密码后会显示给您一次。" +"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 "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "" +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "目前页代表" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "" +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "潜力的代表" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "" +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "加" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "没有项目。" #: src/Module/Settings/TwoFactor/Index.php:67 msgid "Two-factor authentication successfully disabled." @@ -9328,11 +8889,11 @@ msgstr "密码不正确" msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" -msgstr "" +msgstr "

使用移动设备上的应用程序在登录时获取两步认证代码

" #: src/Module/Settings/TwoFactor/Index.php:112 msgid "Authenticator app" -msgstr "" +msgstr "身份验证应用" #: src/Module/Settings/TwoFactor/Index.php:113 msgid "Configured" @@ -9408,35 +8969,10 @@ msgstr "" msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "已成功生成新的恢复代码。" - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "两步验证码" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "生成新恢复代码时,必须复制新代码。你的旧密码不会再起作用了。" - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "生成新的恢复代码" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." msgstr "" #: src/Module/Settings/TwoFactor/Verify.php:78 @@ -9484,6 +9020,215 @@ msgstr "" msgid "Verify code and enable two-factor authentication" msgstr "验证码并启用双因素身份验证" +#: src/Module/Settings/TwoFactor/Recovery.php:66 +msgid "New recovery codes successfully generated." +msgstr "已成功生成新的恢复代码。" + +#: src/Module/Settings/TwoFactor/Recovery.php:92 +msgid "Two-factor recovery codes" +msgstr "两步验证码" + +#: src/Module/Settings/TwoFactor/Recovery.php:94 +msgid "" +"

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "生成新恢复代码时,必须复制新代码。你的旧密码不会再起作用了。" + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "生成新的恢复代码" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "取消" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "全部取消" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "当您生成特定于应用程序的新密码时,您必须立即使用它,生成密码后会显示给您一次。" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (不支持的)" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "表示设置" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "通用主题设置" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "自定义主题设置" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "内容设置" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "日历" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "显示主题:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "手机主题:" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "每页表示多少项目:" + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "最多100项目" + +#: src/Module/Settings/Display.php:198 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "用手机看一页展示多少项目:" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "更新游览器每XX秒" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "至少 10 秒。输入 -1 禁用。" + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "仅在帖子流页面顶部进行自动更新" + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "自动更新可能会在帖子流页面的顶部添加新帖子,如果它发生在页面顶部的其他位置,可能会影响滚动位置并扰乱正常阅读。" + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "不显示表情符号" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "通常,表情符号会被匹配的符号替换。此设置禁用此行为。" + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "无限的滚动" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "到达页尾时自动获取新项目。" + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "禁用智能线程" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "禁用自动抑制无关的线程缩进。" + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "隐藏不喜欢的功能" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "隐藏“不喜欢”按钮和帖子和评论中的“不喜欢”反应。" + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "一周的开始:" + #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "导出账户" @@ -9515,573 +9260,31 @@ msgid "" " e.g. Mastodon." msgstr "将您关注的客户列表导出为CSV文件。兼容例如Mastodon。" -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "系统关闭为了维持" -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "未发现" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "" - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "" - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "" - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "" - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "" - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "" - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "" - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "" - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "" - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "隐私声明" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Friendica欢迎你" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "新成员清单" - -#: src/Module/Welcome.php:46 -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 "我们想提供一些建议和链接以助于让你有愉快的经历。点击任意一项访问相应的网页。在你注册之后,到这个页面的链接会在你的主页显示两周,之后悄声地消失。" - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "入门" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica 漫游" - -#: src/Module/Welcome.php:50 -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 "在你的快速上手页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。" - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "您的设置" - -#: src/Module/Welcome.php:54 -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 "在你的设置页 - 改变你最初的密码。同时也记住你的身份地址。这看起来像一个电子邮件地址 - 并且在这个自由的社交网络交友时会有用。" - -#: src/Module/Welcome.php:55 -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 "校对别的设置,特别是隐私设置。一个未发布的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。" - -#: src/Module/Welcome.php:59 -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 "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。" - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "编辑您的简介" - -#: src/Module/Welcome.php:61 -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 "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。" - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "简介关键字" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "为你的个人资料设置一些描述你兴趣的公共关键字。我们也许能找到其他有相似兴趣的人,并建议结交朋友。" - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "连接着" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "进口着邮件" - -#: src/Module/Welcome.php:68 -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 "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。" - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "转到您的联系人页面" - -#: src/Module/Welcome.php:70 -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 "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。" - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "您网站的目录" - -#: src/Module/Welcome.php:72 -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 "目录页让你在这个网络或者其他的联邦的站点找到其他人。在他们的简介页找一个连接关注链接。如果需要,提供你自己的身份地址。" - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "找新人" - -#: src/Module/Welcome.php:74 -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 "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。" - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "给你的联系人分组" - -#: src/Module/Welcome.php:78 -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 "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。" - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "我文章怎么没公开的?" - -#: src/Module/Welcome.php:81 -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尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。" - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "获取帮助" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "看帮助部分" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "我们帮助页可查阅到详情关于别的编程特点和资源。" - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "你可以网上拜访他在%s" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s贴上一个新闻。" - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "这个条目被编辑了" - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "私人的新闻" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "本地删除" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "保存在文件夹" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "我将会参加" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "我将不会参加" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "我可能会参加" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "忽视主题" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "取消忽视主题" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "切换忽视状态" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "添加收藏" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "移除收藏" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "加标签" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "喜欢" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "不喜欢" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "分享这个" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "分享" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "至" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "经过" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "从墙到墙" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "通过从墙到墙" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d 条评论" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "附件:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s 正在关注 %s." -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "关注" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s 停止关注了 %s." -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "取消关注" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "故乡:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "性取向:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "政治观念:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr " 宗教信仰 :" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "喜欢:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "不喜欢:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "标题/描述:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "音乐兴趣" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "书,文学" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "电视" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "电影/跳舞/文化/娱乐" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "爱好/兴趣" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "爱情/浪漫" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "工作" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "学院/教育" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "熟人信息和社会化网络" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Friendica 通知" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "附件:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10102,6 +9305,10 @@ msgstr "%s管理员" msgid "thanks" msgstr "" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Friendica 通知" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD 或 MM-DD" @@ -10168,230 +9375,998 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "%1$d %2$s以前" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(无主题)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "" +msgid "Database storage failed to update %s" +msgstr "数据库存储更新失败%s" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "数据库存储无法插入数据" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." msgstr "" -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "默认" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "变化" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "便条" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "" - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" msgstr "" -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "存储基本路径" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "链接颜色" - -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "设置背景色" - -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "" - -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "设置背景图片" - -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "登录页面背景图片" - -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "登录页面背景色" - -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "" - -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "保存上传文件的文件夹。为了最大限度的安全,这应该是一个在 web 服务器文件夹树之外的路径 " -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "输入一个有效的现有文件夹" -#: view/theme/frio/php/Image.php:41 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "" +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "活动" -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "" - -#: view/theme/frio/php/Image.php:42 -msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "" - -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "" - -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "" - -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "" - -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "访客" - -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "对齐" - -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "左边" - -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "中间" - -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "色彩方案" - -#: view/theme/quattro/config.php:75 -msgid "Posts font size" +#: src/Model/Item.php:3339 +msgid "post" msgstr "文章" -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "文本区字体大小" +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "内容警告:%s" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "字节" + +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "在另一页面中查看" + +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "在另一页面中查看" + +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "来源链接" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[无题目]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "取关" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "删除联系人" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "组织" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "新闻" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "论坛" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "连接URL失踪的。" + +#: src/Model/Contact.php:2307 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "无法添加该联系人。请在您的设置->社交网络页面中检查相关的网络凭据。" + +#: src/Model/Contact.php:2348 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "这网站没配置允许跟别的网络交流." + +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "没有兼容协议或者摘要找到了." + +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "输入的简介地址没有够消息。" + +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "找不到作者或名。" + +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "这个地址没有符合什么游览器URL。" + +#: src/Model/Contact.php:2371 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "无法匹配一个@-风格的身份地址和一个已知的协议或电子邮件联系人。" + +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "输入mailto:地址前为要求电子邮件检查。" + +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "输入的简介地址属在这个网站使不可用的网络。" + +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "有限的简介。这人不会接受直达/私人通信从您。" + +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "无法检索联系人信息。" + +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "开始:" + +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "结束:" + +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "全天" + +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "九月" + +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "没有可显示的事件" + +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "编辑事件" + +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "重复事件" + +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "删除事件" + +#: src/Model/Event.php:863 +msgid "D g:i A" msgstr "" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "不要显示" +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "显示" +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "显示地图" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "设置风格" +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "隐藏地图" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "社会页" +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "%s的生日" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "社会简介" +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "生日快乐%s" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "需要帮助或@第一次来这儿?" +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "登录失败" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "连接服务" +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "没有足够信息以认证" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "找朋友们" +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "密码不能是空的" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "上次用户" +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "不允许使用空密码" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "快速入门" +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "新密码已暴露在公共数据转储中,请务必另选密码。" + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "(:) 密码不能包含强调字母、空格或冒号(:)" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "密码不匹配。密码没改变。" + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "需要邀请。" + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "不能验证邀请。" + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "无效的OpenID url" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "请输入必要的信息。" + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "" + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "" + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "" + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "这看上去不是您的全姓名。" + +#: src/Model/User.php:703 +msgid "Your email domain is not among those allowed on this site." +msgstr "这网站允许的域名中没有您的" + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "无效的邮件地址。" + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "" + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "无法使用此邮件地址。" + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "您的昵称只能由字母、数字和下划线组成。" + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "此昵称已被注册。请选择新的昵称。" + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "严重错误:安全密钥生成失败。" + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "注册出现问题。请再次尝试。" + +#: src/Model/User.php:808 +msgid "An error occurred creating your default profile. Please try again." +msgstr "创建你的默认简介的时候出现了一个错误。请再试。" + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "朋友" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "" + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "注册信息为%s" + +#: src/Model/User.php:1068 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "" + +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "在 %s 的注册" + +#: src/Model/User.php:1111 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "" + +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "" + +#: src/Model/Group.php:92 +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 "一个用这个名字的被删掉的组复活了。现有项目的权限可能对这个组和任何未来的成员有效。如果这不是你想要的,请用一个不同的名字创建另一个组。" + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "对新联系人的默认隐私组" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "每人" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "编辑" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "添加" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "编辑组" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "创建新组" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "编辑群组" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "更换简介照片" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Atom 源" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "g A l d F" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[今天]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "提醒生日" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "这周的生日:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[无描述]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "事件提醒" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "未来7天即将举行的活动:" + +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "添加新的联系人" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "输入地址或网络位置" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "比如:li@example.com, http://example.com/li" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "连接" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d邀请可用的" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "所有人" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "关系" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "协议" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "所有协议" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "保存的文件夹" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "一切" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "种类" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d 个共同的联系人" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "档案" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "频繁" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "每小时" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "每天两次" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "每天" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "每周" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "每月" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "推特" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "Diaspora连接器" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "GNU Social 连接器" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "活动插件" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "通用特性" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "照片地点" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "照片元数据通常被剥离。这将在剥离元数据之前提取位置(如果存在),并将其链接到地图。" + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "趋势标签" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "显示带有最近公共帖子中最受欢迎标签列表的社区页面小部件。" + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "发帖编写功能" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "自动提示论坛" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "在ACL窗口中选择/取消选择论坛页面时添加/删除提及。" + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "明确提及" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "在“评论”框中添加显式提及,以手动控制在答复中提及的人。" + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "文章/评论工具" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "文章种类" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "加入种类给您的文章" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "高级简介设置" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "列出各论坛" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "在“高级简介设置”页上向访问者显示公共社区论坛" + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "标签云" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "在您的个人简介中提供个人标签云" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "显示成员资格日期" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "在个人资料中显示成员资格日期" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "这里没有什么新的" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "清理出通知" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "结束此次会话" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "登录" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "个人笔记" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "你的个人笔记" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "主页" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "主页" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "注册" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "帮助及文档" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "应用程序" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "可加的应用,设施,游戏" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "搜索网站内容" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "全文" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "标签:" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "社会" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "此服务器和其他服务器上的对话" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "目录" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "人物名录" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "资料关于这个Friendica服务器" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "此Friendica实例的服务条款" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "介绍" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "友谊邀请" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "看所有的通知" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "记号各系统通知看过的" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "收件箱" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "发件箱" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "账户" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "管理别的页" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "网站开办和配置" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "导航" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "网站地图" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "删除关键字" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "保存的搜索" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "导出" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "导出日历为 ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "导出日历为 csv" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "趋势标签(最近%d小时 )" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "更多趋势标签" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "没有联系人" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d 联系人" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "查看联系人" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "更新" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "更旧" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "嵌入已停用" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "嵌入内容" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "上个" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "最后" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "没有项目..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "点击为开关" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "图像/照片" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s%3$s" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1写:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "加密的内容" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "无效的源协议" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "无效的连接协议" + +#: src/BaseModule.php:150 +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 "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。" diff --git a/view/lang/zh-cn/strings.php b/view/lang/zh-cn/strings.php index c317633ecf..76ef7c6d4c 100644 --- a/view/lang/zh-cn/strings.php +++ b/view/lang/zh-cn/strings.php @@ -6,14 +6,97 @@ function string_plural_select_zh_cn($n){ return 0;; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "达到每日 %d 发文限制。此文被拒绝发出。", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "达到每周 %d 发文限制。此文被拒绝发出。", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "达到每月 %d 发文限制。此文被拒绝发出。"; -$a->strings["Profile Photos"] = "简介照片"; +$a->strings["default"] = "默认"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "提交"; +$a->strings["Theme settings"] = "主题设置"; +$a->strings["Variations"] = "变化"; +$a->strings["Alignment"] = "对齐"; +$a->strings["Left"] = "左边"; +$a->strings["Center"] = "中间"; +$a->strings["Color scheme"] = "色彩方案"; +$a->strings["Posts font size"] = "文章"; +$a->strings["Textareas font size"] = "文本区字体大小"; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["don't show"] = "不要显示"; +$a->strings["show"] = "显示"; +$a->strings["Set style"] = "设置风格"; +$a->strings["Community Pages"] = "社会页"; +$a->strings["Community Profiles"] = "社会简介"; +$a->strings["Help or @NewHere ?"] = "需要帮助或@第一次来这儿?"; +$a->strings["Connect Services"] = "连接服务"; +$a->strings["Find Friends"] = "找朋友们"; +$a->strings["Last users"] = "上次用户"; +$a->strings["Find People"] = "找人物"; +$a->strings["Enter name or interest"] = "输入名字或兴趣"; +$a->strings["Connect/Follow"] = "连接/关注"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:罗伯特·摩根斯坦,钓鱼"; +$a->strings["Find"] = "搜索"; +$a->strings["Friend Suggestions"] = "朋友推荐"; +$a->strings["Similar Interests"] = "相似兴趣"; +$a->strings["Random Profile"] = "随机简介"; +$a->strings["Invite Friends"] = "邀请朋友们"; +$a->strings["Global Directory"] = "综合目录"; +$a->strings["Local Directory"] = "本地目录"; +$a->strings["Forums"] = "论坛"; +$a->strings["External link to forum"] = "到论坛的外链"; +$a->strings["show more"] = "显示更多"; +$a->strings["Quick Start"] = "快速入门"; +$a->strings["Help"] = "帮助"; +$a->strings["Custom"] = ""; +$a->strings["Note"] = "便条"; +$a->strings["Check image permissions if all users are allowed to see the image"] = ""; +$a->strings["Select color scheme"] = ""; +$a->strings["Copy or paste schemestring"] = ""; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = "链接颜色"; +$a->strings["Set the background color"] = "设置背景色"; +$a->strings["Content background opacity"] = ""; +$a->strings["Set the background image"] = "设置背景图片"; +$a->strings["Background image style"] = ""; +$a->strings["Login page background image"] = "登录页面背景图片"; +$a->strings["Login page background color"] = "登录页面背景色"; +$a->strings["Leave background image and color empty for theme defaults"] = ""; +$a->strings["Guest"] = ""; +$a->strings["Visitor"] = "访客"; +$a->strings["Status"] = "状态"; +$a->strings["Your posts and conversations"] = "你的消息和交谈"; +$a->strings["Profile"] = "个人资料"; +$a->strings["Your profile page"] = "你的简介页"; +$a->strings["Photos"] = "照片"; +$a->strings["Your photos"] = "你的照片"; +$a->strings["Videos"] = "视频"; +$a->strings["Your videos"] = "你的视频"; +$a->strings["Events"] = "活动日历"; +$a->strings["Your events"] = "你的活动"; +$a->strings["Network"] = "网络"; +$a->strings["Conversations from your friends"] = "来自你的朋友们的交谈"; +$a->strings["Events and Calendar"] = "事件和日历"; +$a->strings["Messages"] = "消息"; +$a->strings["Private mail"] = "私人的邮件"; +$a->strings["Settings"] = "设置"; +$a->strings["Account settings"] = "帐户设置"; +$a->strings["Contacts"] = "联系人"; +$a->strings["Manage/edit friends and contacts"] = "管理/编辑朋友和联系人"; +$a->strings["Follow Thread"] = "关注主题"; +$a->strings["Skip to main content"] = ""; +$a->strings["Top Banner"] = "顶部横幅"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = ""; +$a->strings["Full screen"] = ""; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = ""; +$a->strings["Single row mosaic"] = ""; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = ""; +$a->strings["Mosaic"] = ""; +$a->strings["Repeat image to fill the screen."] = ""; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; +$a->strings["%s: Updating post-type."] = ""; $a->strings["%1\$s poked %2\$s"] = "%1\$s戳%2\$s"; $a->strings["event"] = "活动"; $a->strings["status"] = "状态"; @@ -21,7 +104,7 @@ $a->strings["photo"] = "照片"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s 把 %2\$s 的 %3\$s 标记为 %4\$s"; $a->strings["Select"] = "选择"; $a->strings["Delete"] = "删除"; -$a->strings["View %s's profile @ %s"] = "看%s的简介@ %s"; +$a->strings["View %s's profile @ %s"] = "看%s的个人资料@ %s"; $a->strings["Categories:"] = "类别 :"; $a->strings["Filed under:"] = "归档于 :"; $a->strings["%s from %s"] = "%s 来自 %s"; @@ -29,17 +112,15 @@ $a->strings["View in context"] = "查看全文"; $a->strings["Please wait"] = "请稍等"; $a->strings["remove"] = "删除"; $a->strings["Delete Selected Items"] = "删除选中项目"; -$a->strings["Follow Thread"] = "关注主题"; $a->strings["View Status"] = "查看状态"; -$a->strings["View Profile"] = "查看简介"; +$a->strings["View Profile"] = "查看个人资料"; $a->strings["View Photos"] = "查看照片"; $a->strings["Network Posts"] = "网络文章"; $a->strings["View Contact"] = "查看联系人"; $a->strings["Send PM"] = "发送私信"; $a->strings["Block"] = "屏蔽"; $a->strings["Ignore"] = "忽视"; -$a->strings["Poke"] = ""; -$a->strings["Connect/Follow"] = "连接/关注"; +$a->strings["Poke"] = "戳"; $a->strings["%s likes this."] = "%s 赞了这个。"; $a->strings["%s doesn't like this."] = "%s 觉得不赞。"; $a->strings["%s attends."] = "%s 参加。"; @@ -91,7 +172,7 @@ $a->strings["permissions"] = "权限"; $a->strings["Public post"] = "公开帖子"; $a->strings["Preview"] = "预览"; $a->strings["Cancel"] = "取消"; -$a->strings["Post to Groups"] = "发到组"; +$a->strings["Post to Groups"] = "发帖到群组"; $a->strings["Post to Contacts"] = "发给联系人"; $a->strings["Private post"] = "私人帖子"; $a->strings["Message"] = "消息"; @@ -103,89 +184,87 @@ $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s发给您 $a->strings["a private message"] = "一条私人消息"; $a->strings["%1\$s sent you %2\$s."] = "%1\$s发给您%2\$s."; $a->strings["Please visit %s to view and/or reply to your private messages."] = "请访问 %s 来查看并且/或者回复你的私信。"; -$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = ""; -$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = ""; -$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = ""; -$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = ""; -$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = ""; +$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = "%1\$s已在以下时间回复您%2\$s秒%3\$s%4\$s"; +$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = "%1\$s给你贴上了标签%2\$s秒%3\$s%4\$s"; +$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = "%1\$s评论%2\$s's %3\$s%4\$s"; +$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = "%1\$s回复你的%2\$s%3\$s"; +$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = "%1\$s标记你在你的%2\$s%3\$s"; $a->strings["%1\$s commented on your %2\$s %3\$s"] = ""; $a->strings["%1\$s replied to you on their %2\$s %3\$s"] = ""; $a->strings["%1\$s tagged you on their %2\$s %3\$s"] = ""; -$a->strings["%1\$s commented on their %2\$s %3\$s"] = ""; +$a->strings["%1\$s commented on their %2\$s %3\$s"] = "%1\$s评论他们的%2\$s%3\$s"; $a->strings["%s %s tagged you"] = "%s%s标记了您"; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s 在 %2\$s 上标记了您"; -$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = ""; +$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = "%1\$s对话的评论%2\$d来自%3\$s"; $a->strings["%s commented on an item/conversation you have been following."] = "%s对你关注的项目/对话发表评论。"; $a->strings["Please visit %s to view and/or reply to the conversation."] = "请访问%s来查看并且/或者回复这个对话。"; -$a->strings["%s %s posted to your profile wall"] = ""; +$a->strings["%s %s posted to your profile wall"] = "%s%s贴到你的个人简介墙上"; $a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s放在您的简介墙在%2\$s"; $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s放在[url=%2\$s]您的墙[/url]"; $a->strings["%s %s shared a new post"] = "%s%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["%1\$s %2\$s poked you"] = ""; +$a->strings["%1\$s %2\$s poked you"] = "%1\$s%2\$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]。"; $a->strings["%s %s tagged your post"] = "%s%s标记了您的帖子"; $a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s把您的文章在%2\$s标签"; $a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s把[url=%2\$s]您的文章[/url]标签"; -$a->strings["%s Introduction received"] = ""; +$a->strings["%s Introduction received"] = "%s收到的介绍"; $a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "您从「%1\$s」受到一个介绍在%2\$s"; $a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "您从%2\$s收到[url=%1\$s]一个介绍[/url]。"; -$a->strings["You may visit their profile at %s"] = "你能看他的简介在%s"; +$a->strings["You may visit their profile at %s"] = "你能看他的个人资料在%s"; $a->strings["Please visit %s to approve or reject the introduction."] = "请批准或拒绝介绍在%s"; -$a->strings["%s A new person is sharing with you"] = ""; +$a->strings["%s A new person is sharing with you"] = "%s一个新的人正在和你分享"; $a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s 正在 %2\$s 和你分享"; $a->strings["%s You have a new follower"] = "%s你有了一个新的关注者"; $a->strings["You have a new follower at %2\$s : %1\$s"] = "你在 %2\$s 有一个新的关注者: %1\$s"; -$a->strings["%s Friend suggestion received"] = ""; +$a->strings["%s Friend suggestion received"] = "%s收到建议的朋友"; $a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "您从「%2\$s」收到[url=%1\$s]一个朋友建议[/url]。"; $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "您从%3\$s收到[url=%1\$s]一个朋友建议[/url]为%2\$s。"; $a->strings["Name:"] = "名字:"; $a->strings["Photo:"] = "照片:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "请访问%s来批准或拒绝这个建议。"; -$a->strings["%s Connection accepted"] = ""; +$a->strings["%s Connection accepted"] = "%s已接受连接"; $a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "“%1\$s”已经在 %2\$s 接受了您的连接请求"; $a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s 已经接受了你的[url=%1\$s]连接请求[/url]。"; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "你们现在已经互为朋友了,可以不受限制地交换状态更新、照片和邮件。"; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "你们现在已经互为好友了,可以不受限制地交换状态更新、照片和邮件。"; $a->strings["Please visit %s if you wish to make any changes to this relationship."] = "请访问%s如果你希望对这个关系做任何改变。"; $a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "%1\$s已选择接受您为粉丝,这会限制某些形式的通信,例如私信和某些个人资料交互。如果这是名人或社区页面,则会自动应用这些设置。"; $a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "%1\$s未来可能会选择将这种关系扩展为双向或更宽松的关系。"; $a->strings["Please visit %s if you wish to make any changes to this relationship."] = "请访问 %s 如果你希望对修改这个关系。"; -$a->strings["[Friendica System Notify]"] = ""; +$a->strings["[Friendica System Notify]"] = "[Friendica系统通知]"; $a->strings["registration request"] = "注册请求"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "您已收到来自‘%1\$s’的注册请求,地址为%2\$s"; $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = ""; $a->strings["Please visit %s to approve or reject the request."] = "请访问%s来批准或拒绝这个请求。"; -$a->strings["Item not found."] = "项目找不到。"; -$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?"; -$a->strings["Yes"] = "是"; -$a->strings["Permission denied."] = "权限不够。"; -$a->strings["Authorize application connection"] = "授权应用连接"; -$a->strings["Return to your app and insert this Securty Code:"] = "回归您的应用和输入这个安全密码:"; -$a->strings["Please login to continue."] = "请登录以继续。"; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?"; -$a->strings["No"] = "否"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "达到每日 %d 发文限制。此文被拒绝发出。", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "达到每周 %d 发文限制。此文被拒绝发出。", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "达到每月 %d 发文限制。此文被拒绝发出。"; +$a->strings["Profile Photos"] = "个人资料照片"; $a->strings["Access denied."] = "权限拒绝。"; -$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了."; -$a->strings["Events"] = "事件"; -$a->strings["View"] = "查看"; -$a->strings["Previous"] = "上"; -$a->strings["Next"] = "下"; -$a->strings["today"] = "今天"; -$a->strings["month"] = "月"; -$a->strings["week"] = "星期"; -$a->strings["day"] = "日"; -$a->strings["list"] = "列表"; -$a->strings["User not found"] = "找不到用户"; -$a->strings["This calendar format is not supported"] = "这个日历格式不被支持"; -$a->strings["No exportable data found"] = "找不到可导出的数据"; -$a->strings["calendar"] = "日历"; -$a->strings["No contacts in common."] = "没有共同的联系人。"; -$a->strings["Common Friends"] = "普通朋友们"; -$a->strings["Profile not found."] = "找不到简介。"; +$a->strings["Bad Request."] = ""; $a->strings["Contact not found."] = "没有找到联系人。"; +$a->strings["Permission denied."] = "权限不够。"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "一天最多墙通知给%s超过了。通知没有通过 。"; +$a->strings["No recipient selected."] = "没有选择的接受者。"; +$a->strings["Unable to check your home location."] = "核对不了您的主页。"; +$a->strings["Message could not be sent."] = "消息发不了。"; +$a->strings["Message collection failure."] = "通信受到错误。"; +$a->strings["No recipient."] = "没有接受者。"; +$a->strings["Please enter a link URL:"] = "请输入一个链接 URL:"; +$a->strings["Send Private Message"] = "发私人的通信"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。"; +$a->strings["To:"] = "到:"; +$a->strings["Subject:"] = "题目:"; +$a->strings["Your message:"] = "你的消息:"; +$a->strings["Insert web link"] = "插入网页链接"; +$a->strings["Profile not found."] = "找不到个人资料。"; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "这会偶尔地发生熟人双方都要求和已经批准的时候。"; $a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。"; $a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:"; @@ -202,7 +281,291 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。"; $a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统"; $a->strings["[Name Withheld]"] = "[名字拒给]"; +$a->strings["Public access denied."] = "拒绝公开访问"; +$a->strings["No videos selected"] = "没有视频被选择"; +$a->strings["Access to this item is restricted."] = "这个项目使用权限的。"; +$a->strings["View Video"] = "察看视频"; +$a->strings["View Album"] = "看照片册"; +$a->strings["Recent Videos"] = "最近的视频"; +$a->strings["Upload New Videos"] = "上传新视频"; +$a->strings["No keywords to match. Please add keywords to your profile."] = "没有要匹配的关键字。请向您的个人资料中添加关键字。"; +$a->strings["first"] = "首先"; +$a->strings["next"] = "下个"; +$a->strings["No matches"] = "没有结果"; +$a->strings["Profile Match"] = "简介符合"; +$a->strings["Missing some important data!"] = "缺失一些重要数据!"; +$a->strings["Update"] = "更新"; +$a->strings["Failed to connect with email account using the settings provided."] = "不能连接电子邮件账户用输入的设置。"; +$a->strings["Contact CSV file upload error"] = "联系人CSV文件上载错误"; +$a->strings["Importing Contacts done"] = "导入联系人完成"; +$a->strings["Relocate message has been send to your contacts"] = "迁移消息已发送给您的联系人"; +$a->strings["Passwords do not match."] = "密码不匹配。"; +$a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。"; +$a->strings["Password changed."] = "密码已改变。"; +$a->strings["Password unchanged."] = "密码未改变。"; +$a->strings["Please use a shorter name."] = "请使用较短的名称。"; +$a->strings["Name too short."] = "名称太短。"; +$a->strings["Wrong Password."] = "密码错误。"; +$a->strings["Invalid email."] = "无效的邮箱。"; +$a->strings["Cannot change to that email."] = "无法更改到此电子邮件地址。"; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "私人评坛没有隐私批准。默认隐私组用者。"; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "私人评坛没有隐私批准或默认隐私组。"; +$a->strings["Settings were not updated."] = ""; +$a->strings["Add application"] = "加入应用"; +$a->strings["Save Settings"] = "保存设置"; +$a->strings["Name"] = "名字"; +$a->strings["Consumer Key"] = "用户密钥"; +$a->strings["Consumer Secret"] = "使用者机密"; +$a->strings["Redirect"] = "重定向"; +$a->strings["Icon url"] = "图符URL"; +$a->strings["You can't edit this application."] = "您不能编辑这个应用。"; +$a->strings["Connected Apps"] = "已连接的应用程序"; +$a->strings["Edit"] = "编辑"; +$a->strings["Client key starts with"] = "客户端密钥开头"; +$a->strings["No name"] = "没有名字"; +$a->strings["Remove authorization"] = "撤消权能"; +$a->strings["No Addon settings configured"] = "无插件设置配置完成"; +$a->strings["Addon Settings"] = "插件设置"; +$a->strings["Additional Features"] = "附加功能"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings["enabled"] = "已启用"; +$a->strings["disabled"] = "已停用"; +$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s"; +$a->strings["OStatus (GNU Social)"] = ""; +$a->strings["Email access is disabled on this site."] = "电子邮件访问在这个站上被禁用。"; +$a->strings["None"] = "没有"; +$a->strings["Social Networks"] = "社交网络"; +$a->strings["General Social Media Settings"] = "通用社交媒体设置"; +$a->strings["Accept only top level posts by contacts you follow"] = "只接受您关注的联系人发布的帖子"; +$a->strings["The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow."] = "当评论到达时,系统会自动完成线程。这有一个副作用,那就是你可能会收到由非关注者发起的帖子,但已经被你追随者评论了。此配置将停用此行为。激活后,严格来说,你只会收到来自你真正关注的人的帖子。"; +$a->strings["Disable Content Warning"] = "禁用内容警告"; +$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "像Mastodon或Pleroma这样的网络上的用户可以设置一个内容警告字段,默认情况下会折叠他们的发帖。这将禁用自动折叠,并将内容警告设置为发帖标题。不会影响您最终设置的任何其他内容筛选。"; +$a->strings["Disable intelligent shortening"] = "禁用智能缩短"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "通常情况下,系统会尝试找到添加到缩短帖子的最佳链接。如果启用此选项,则每个缩短的帖子都将始终指向原始的Friendica帖子。"; +$a->strings["Attach the link title"] = "附加链接标题"; +$a->strings["When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content."] = "激活后,附加链接的标题将作为标题添加到Diaspora的帖子中。这对共享提要内容的“远程自我”联系人最有帮助。"; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "自动关注任何 GNU Social (OStatus) 关注者/提及者"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "如果您收到来自未知OStatus用户的消息,则此选项决定如何操作。如果选中,将为每个未知用户创建一个新联系人。"; +$a->strings["Default group for OStatus contacts"] = "用于 OStatus 联系人的默认组"; +$a->strings["Your legacy GNU Social account"] = "您遗留的 GNU Social 账户"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "如果您在这里输入您旧的 GNU Social/Statusnet 账号名 (格式示例 user@domain.tld) ,您的联系人列表将会被自动添加。完成后该字段将被清空。"; +$a->strings["Repair OStatus subscriptions"] = "修复 OStatus 订阅"; +$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:"] = "上个成功收件箱检查:"; +$a->strings["IMAP server name:"] = "IMAP服务器名字:"; +$a->strings["IMAP port:"] = "IMAP服务器端口:"; +$a->strings["Security:"] = "安全:"; +$a->strings["Email login name:"] = "邮件登录名:"; +$a->strings["Email password:"] = "邮件密码:"; +$a->strings["Reply-to address:"] = "回答地址:"; +$a->strings["Send public posts to all email contacts:"] = "发送公开文章给所有的邮件联系人:"; +$a->strings["Action after import:"] = "进口后行动:"; +$a->strings["Mark as seen"] = "标注看过"; +$a->strings["Move to folder"] = "搬到文件夹"; +$a->strings["Move to folder:"] = "搬到文件夹:"; +$a->strings["Unable to find your profile. Please contact your admin."] = "无法找到您的简介。请联系您的管理员。"; +$a->strings["Account Types"] = "账户类型"; +$a->strings["Personal Page Subtypes"] = "个人页面子类型"; +$a->strings["Community Forum Subtypes"] = "社区论坛子类型"; +$a->strings["Personal Page"] = "个人页面"; +$a->strings["Account for a personal profile."] = "个人配置文件的帐户。"; +$a->strings["Organisation Page"] = "组织页面"; +$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "作为“追随者”自动批准联系请求的组织的帐户。"; +$a->strings["News Page"] = "新闻页面"; +$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "新闻账户,自动批准联系请求为 \"关注者\"。"; +$a->strings["Community Forum"] = "社区论坛"; +$a->strings["Account for community discussions."] = "对社区讨论进行说明。"; +$a->strings["Normal Account Page"] = "普通帐号页面"; +$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "需要手动批准的“朋友”和“追随者”"; +$a->strings["Soapbox Page"] = "博客页面"; +$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "自动批准联系人请求为“关注者”。"; +$a->strings["Public Forum"] = "公共论坛"; +$a->strings["Automatically approves all contact requests."] = "自动批准所有联系人请求。"; +$a->strings["Automatic Friend Page"] = "自动朋友页"; +$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "自动批准作为“朋友”的联系请求。"; +$a->strings["Private Forum [Experimental]"] = "隐私评坛[实验性的 ]"; +$a->strings["Requires manual approval of contact requests."] = "需要人工批准联系人请求。"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(可选的) 允许这个 OpenID 登录这个账户。"; +$a->strings["Publish your profile in your local site directory?"] = "将个人资料发布到本地站点目录中?"; +$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = "您的个人资料将发布在此节点的本地目录中。根据系统设置,您的个人资料详细信息可能公开可见。"; +$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = "您的个人资料还将发布在全球Friendica目录中(例如%s)。"; +$a->strings["Your Identity Address is '%s' or '%s'."] = "你的身份地址是 '%s' 或者 '%s'."; +$a->strings["Account Settings"] = "帐户设置"; +$a->strings["Password Settings"] = "密码设置"; +$a->strings["New Password:"] = "新密码:"; +$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = "允许的字符为a-z、A-Z、0-9以及除空格、重音字母和冒号(:)之外的特殊字符。"; +$a->strings["Confirm:"] = "确认:"; +$a->strings["Leave password fields blank unless changing"] = "留空密码字段,除非要修改"; +$a->strings["Current Password:"] = "当前密码:"; +$a->strings["Your current password to confirm the changes"] = "您的当前密码以验证变更"; +$a->strings["Password:"] = "密码:"; +$a->strings["Delete OpenID URL"] = "删除OpenID URL"; +$a->strings["Basic Settings"] = "基础设置"; +$a->strings["Full Name:"] = "全名:"; +$a->strings["Email Address:"] = "电子邮件地址:"; +$a->strings["Your Timezone:"] = "你的时区:"; +$a->strings["Your Language:"] = "您的语言 :"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "设置用来向您显示friendica界面和发送电子邮件的语言"; +$a->strings["Default Post Location:"] = "默认文章位置:"; +$a->strings["Use Browser Location:"] = "使用浏览器位置:"; +$a->strings["Security and Privacy Settings"] = "安全和隐私设置"; +$a->strings["Maximum Friend Requests/Day:"] = "每天最大朋友请求数:"; +$a->strings["(to prevent spam abuse)"] = "(用于防止垃圾信息滥用)"; +$a->strings["Allow your profile to be searchable globally?"] = "允许在全球范围内搜索您的个人资料?"; +$a->strings["Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."] = "如果希望其他人轻松找到并跟踪您,请激活此设置。您的个人资料将在远程系统上搜索。此设置还确定Friendica是否会通知搜索引擎您的个人资料文件应该被索引。"; +$a->strings["Hide your contact/friend list from viewers of your profile?"] = "在个人资料中隐藏联系人/朋友列表?"; +$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = "您的联系人列表将显示在您的个人资料页上。激活此选项可禁用联系人列表的显示。"; +$a->strings["Hide your profile details from anonymous viewers?"] = "对匿名访问者隐藏详细简介?"; +$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "匿名访问者只能看到您的个人资料图片、显示名称和您在个人资料页上使用的昵称。你的公开帖子和回复仍然可以通过其他方式访问。"; +$a->strings["Make public posts unlisted"] = "公开帖子不公开"; +$a->strings["Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."] = "您的公开帖子将不会出现在社区页面或搜索结果中,也不会发送到中继服务器。但是,它们仍可以出现在远程服务器上的公共提要中。"; +$a->strings["Make all posted pictures accessible"] = "使所有发布的图片都可访问"; +$a->strings["This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."] = "此选项使每一张张贴的图片都可以通过直接链接访问。这是解决大多数其他网络无法处理图片权限问题的解决方法。不过,公众仍然无法在您的相册中看到非公开图片。"; +$a->strings["Allow friends to post to your profile page?"] = "允许朋友们贴文章在您的简介页?"; +$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "你的联系人可以在你的个人资料墙上写文章。这些帖子将分发给你的联系人"; +$a->strings["Allow friends to tag your posts?"] = "允许朋友们标签您的文章?"; +$a->strings["Your contacts can add additional tags to your posts."] = "您的联系人可以为您的帖子添加额外的标签。"; +$a->strings["Permit unknown people to send you private mail?"] = "允许生人寄给您私人邮件?"; +$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Friendica 网络用户可能会向您发送私人信息,即使他们不在您的联系人列表中。"; +$a->strings["Maximum private messages per day from unknown people:"] = "每天来自未知的人的私信:"; +$a->strings["Default Post Permissions"] = "默认文章权限"; +$a->strings["Expiration settings"] = "过期设置"; +$a->strings["Automatically expire posts after this many days:"] = "在这数天后自动使文章过期:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "如果为空,文章不会过期。过期的文章将被删除"; +$a->strings["Expire posts"] = "帖子到期"; +$a->strings["When activated, posts and comments will be expired."] = "激活后,帖子和评论将过期。"; +$a->strings["Expire personal notes"] = "使个人笔记过期"; +$a->strings["When activated, the personal notes on your profile page will be expired."] = "激活后,您个人资料页面上的个人笔记将过期。"; +$a->strings["Expire starred posts"] = "已收藏的帖子過期"; +$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = "收藏帖子不会过期。该行为将被此设置覆盖。"; +$a->strings["Expire photos"] = "过期照片"; +$a->strings["When activated, photos will be expired."] = "激活时,照片将过期。"; +$a->strings["Only expire posts by others"] = "只有其他人的帖子过期"; +$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = "激活后,您自己的帖子将永不过期。那么上面的设置只对你收到的帖子有效。"; +$a->strings["Notification Settings"] = "通知设置"; +$a->strings["Send a notification email when:"] = "发一个消息要是:"; +$a->strings["You receive an introduction"] = "你收到一份介绍"; +$a->strings["Your introductions are confirmed"] = "你的介绍被确认了"; +$a->strings["Someone writes on your profile wall"] = "某人写在你的简历墙"; +$a->strings["Someone writes a followup comment"] = "某人写一个后续的评论"; +$a->strings["You receive a private message"] = "你收到一封私信"; +$a->strings["You receive a friend suggestion"] = "你受到一个朋友建议"; +$a->strings["You are tagged in a post"] = "你被在新闻标签"; +$a->strings["You are poked/prodded/etc. in a post"] = "您在文章被戳"; +$a->strings["Activate desktop notifications"] = "启用桌面通知"; +$a->strings["Show desktop popup on new notifications"] = "在有新的提示时显示桌面弹出窗口"; +$a->strings["Text-only notification emails"] = "纯文本通知邮件"; +$a->strings["Send text only notification emails, without the html part"] = "发送纯文本通知邮件,无 html 部分"; +$a->strings["Show detailled notifications"] = "显示详细通知"; +$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "默认情况下,通知被压缩为每个项目的单个通知。启用后,将显示每个通知。"; +$a->strings["Advanced Account/Page Type Settings"] = "专家账户/页种设置"; +$a->strings["Change the behaviour of this account for special situations"] = "把这个账户特别情况的时候行动变化"; +$a->strings["Import Contacts"] = "导入联系人"; +$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "上传一个CSV文件,该文件在您从旧帐号导出的第一列中包含您关注的帐号的句柄。"; +$a->strings["Upload File"] = "上传文件"; +$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["{0} wants to be your friend"] = "{0}想成为您的朋友"; +$a->strings["{0} requested registration"] = "{0}要求注册"; +$a->strings["No contacts in common."] = "没有共同的联系人。"; +$a->strings["Common Friends"] = "普通朋友们"; +$a->strings["No items found"] = ""; +$a->strings["No such group"] = "没有这个组"; +$a->strings["Group is empty"] = "组没有成员"; +$a->strings["Group: %s"] = "组:%s"; +$a->strings["Invalid contact."] = "无效的联系人。"; +$a->strings["Latest Activity"] = "最新活动"; +$a->strings["Sort by latest activity"] = "按最新活动排序"; +$a->strings["Latest Posts"] = "最新发帖"; +$a->strings["Sort by post received date"] = "按发帖日期排序"; +$a->strings["Personal"] = "私人"; +$a->strings["Posts that mention or involve you"] = "提及你或你参与的文章"; +$a->strings["Starred"] = "已收藏"; +$a->strings["Favourite Posts"] = "最喜欢的文章"; +$a->strings["Resubscribing to OStatus contacts"] = "重新订阅 OStatus 联系人"; +$a->strings["Error"] = [ + 0 => "错误", +]; +$a->strings["Done"] = "完成"; +$a->strings["Keep this window open until done."] = "保持窗口打开直到完成。"; +$a->strings["You aren't following this contact."] = "你没有关注这个联系人。"; +$a->strings["Unfollowing is currently not supported by your network."] = "取消关注现在不被你的网络支持。"; +$a->strings["Disconnect/Unfollow"] = "断开连接/取消关注"; +$a->strings["Your Identity Address:"] = "你的身份地址:"; +$a->strings["Submit Request"] = "提交要求"; +$a->strings["Profile URL"] = "简介 URL"; +$a->strings["Status Messages and Posts"] = "状态消息和帖子"; +$a->strings["New Message"] = "新的消息"; +$a->strings["Unable to locate contact information."] = "无法找到联系人信息。"; +$a->strings["Discard"] = "丢弃"; +$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?"; +$a->strings["Yes"] = "是"; +$a->strings["Conversation not found."] = "找不到对话。"; +$a->strings["Message was not deleted."] = ""; +$a->strings["Conversation was not removed."] = ""; +$a->strings["No messages."] = "没有消息"; +$a->strings["Message not available."] = "通信不可用的"; +$a->strings["Delete message"] = "删除消息"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "删除交谈"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "没可用的安全交通。您可能会在发送人的简介页会回答。"; +$a->strings["Send Reply"] = "发回答"; +$a->strings["Unknown sender - %s"] = "生发送人-%s"; +$a->strings["You and %s"] = "您和%s"; +$a->strings["%s and You"] = "%s和您"; +$a->strings["%d message"] = [ + 0 => "%d通知", +]; +$a->strings["Subscribing to OStatus contacts"] = "正在订阅 OStatus 联系人"; +$a->strings["No contact provided."] = "未提供联系人。"; +$a->strings["Couldn't fetch information for contact."] = "无法获取联系人信息。"; +$a->strings["Couldn't fetch friends for contact."] = "无法取得联系人的朋友信息。"; +$a->strings["success"] = "成功"; +$a->strings["failed"] = "失败"; +$a->strings["ignored"] = "已忽视的"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s欢迎%2\$s"; +$a->strings["User deleted their account"] = "用户已删除其帐号"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "在您的Friendica节点上,用户删除了他们的帐户。请确保从备份中删除他们的数据。"; +$a->strings["The user id is %d"] = "用户 id 为 %d"; +$a->strings["Remove My Account"] = "删除我的账户"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。"; +$a->strings["Please enter your password for verification:"] = "请输入密码为确认:"; +$a->strings["Remove Item Tag"] = "去除项目标签"; +$a->strings["Select a tag to remove: "] = "选择删除一个标签: "; +$a->strings["Remove"] = "移走"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "没有建议。如果这是新网站,请24小时后再试。"; +$a->strings["The requested item doesn't exist or has been deleted."] = "请求的项目不存在或已被删除。"; +$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了."; +$a->strings["The feed for this item is unavailable."] = "此订阅的项目不可用。"; +$a->strings["Invalid request."] = "无效请求。"; +$a->strings["Image exceeds size limit of %s"] = "图片超过 %s 的大小限制"; +$a->strings["Unable to process image."] = "处理不了图像."; +$a->strings["Wall Photos"] = "墙照片"; +$a->strings["Image upload failed."] = "图像上载失败了."; +$a->strings["No valid account found."] = "找不到效的账户。"; +$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\t亲爱的%1\$s,\n\t\t\t最近在“%2\$s”收到重置帐户的请求\n\t\t密码。要确认此请求,请选择验证链接\n\t\t或将其粘贴到您的web浏览器地址栏中。\n\t\t如果您没有请求此更改,请不要跟随链接\n\t\t忽略和/或删除此电子邮件,请求将很快过期。\n\t\t您的密码将不会更改,除非我们可以验证您\n\t\t发出此请求。"; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "重设密码要求被发布%s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "要求确认不了。(您可能已经提交它。)重设密码失败了。"; +$a->strings["Request has expired, please make a new one."] = "请求超时,请重试。"; +$a->strings["Forgot your Password?"] = "忘记你的密码吗?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"; +$a->strings["Nickname or Email: "] = "昵称或邮件地址:"; +$a->strings["Reset"] = "复位"; +$a->strings["Password Reset"] = "复位密码"; +$a->strings["Your password has been reset as requested."] = "您的密码被重设如要求的。"; +$a->strings["Your new password is"] = "你的新的密码是"; +$a->strings["Save or copy your new password - and then"] = "保存或复制新密码-之后"; +$a->strings["click here to login"] = "点击这里登录"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "您的密码可以在成功登录后在设置页修改。"; +$a->strings["Your password has been reset."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\t亲爱的%1\$s,\n\t\t\t\t您的密码已按要求更改。请保留这个。\n\t\t\t您的记录信息(或立即将您的密码更改为。\n\t\t\t一些你会记住的东西)。\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\t您的登录详细信息如下:\n\n\t\t\t站点位置:\t%1\$s\n\t\t\t登录名:\t%2\$s\n\t\t\t密码:\t%3\$s\n\n\t\t\t您可以在登录后从帐号设置页面更改该密码。\n\t\t"; +$a->strings["Your password has been changed at %s"] = "您密码被变化在%s"; $a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。"; $a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包含简介信息。"; $a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。"; @@ -231,21 +594,54 @@ $a->strings["Confirm"] = "确认"; $a->strings["Hide this contact"] = "隐藏这个联系人"; $a->strings["Welcome home %s."] = "欢迎%s。"; $a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。"; -$a->strings["Public access denied."] = "拒绝公开访问"; $a->strings["Friend/Connection Request"] = "朋友/连接请求"; $a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "在此处输入您的Webinger地址(user@domain.tld)或个人资料URL。如果您的系统不支持此功能(例如,它不适用于Diaspora),则必须直接%s在您的系统上订阅"; $a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "如果您还不是免费社交网络的成员,请点击此超链接,\n找到一个公共的Friendica节点,今天就加入我们"; $a->strings["Your Webfinger address or profile URL:"] = "您的Webinger地址或个人资料URL:"; -$a->strings["Please answer the following:"] = "请回答下述的:"; -$a->strings["Submit Request"] = "提交要求"; -$a->strings["%s knows you"] = ""; +$a->strings["Please answer the following:"] = "请确认这个关注:"; +$a->strings["%s knows you"] = "%s认识你"; $a->strings["Add a personal note:"] = "添加一个个人便条:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "请求的项目不存在或已被删除。"; -$a->strings["The feed for this item is unavailable."] = ""; +$a->strings["Authorize application connection"] = "授权应用连接"; +$a->strings["Return to your app and insert this Securty Code:"] = "回归您的应用和输入这个安全密码:"; +$a->strings["Please login to continue."] = "请登录以继续。"; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?"; +$a->strings["No"] = "否"; +$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 %s"] = "文件超过了 %s 的大小限制"; +$a->strings["File upload failed."] = "文件上传失败。"; +$a->strings["Unable to locate original post."] = "找不到当初的新闻"; +$a->strings["Empty post discarded."] = "空帖子被丢弃了。"; +$a->strings["Post updated."] = "发布更新"; +$a->strings["Item wasn't stored."] = "项目未存储。"; +$a->strings["Item couldn't be fetched."] = "无法提取项目。"; +$a->strings["Item not found."] = "项目找不到。"; +$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?"; +$a->strings["User imports on closed servers can only be done by an administrator."] = "只有系统管理员才能在关闭的服务器上执行用户导入。"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "这个网站超过一天最多账户注册。请明天再试。"; +$a->strings["Import"] = "导入"; +$a->strings["Move account"] = "把账户搬出"; +$a->strings["You can import an account from another Friendica server."] = "您会从别的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."] = "你需要从老服务器导出你的账户并在这里上传。我们会在这里重建你的账户,包括你所有的联系人。我们也会通知你的朋友们你搬到了这里。"; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "这个特性是实验性的。我们不能从 OStatus 网络 (GNU Social/Statusnet) 或者 Diaspora 导入联系人"; +$a->strings["Account file"] = "账户文件"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」"; +$a->strings["User not found."] = "找不到用户。"; +$a->strings["View"] = "查看"; +$a->strings["Previous"] = "上"; +$a->strings["Next"] = "下"; +$a->strings["today"] = "今天"; +$a->strings["month"] = "月"; +$a->strings["week"] = "星期"; +$a->strings["day"] = "日"; +$a->strings["list"] = "列表"; +$a->strings["User not found"] = "找不到用户"; +$a->strings["This calendar format is not supported"] = "这个日历格式不被支持"; +$a->strings["No exportable data found"] = "找不到可导出的数据"; +$a->strings["calendar"] = "日历"; $a->strings["Item not found"] = "项目没找到"; $a->strings["Edit post"] = "编辑文章"; $a->strings["Save"] = "保存"; -$a->strings["Insert web link"] = "插入网页链接"; $a->strings["web link"] = "网页链接"; $a->strings["Insert video link"] = "插入视频链接"; $a->strings["video link"] = "视频链接"; @@ -267,118 +663,20 @@ $a->strings["Description:"] = "描述:"; $a->strings["Location:"] = "位置:"; $a->strings["Title:"] = "标题:"; $a->strings["Share this event"] = "分享这个事件"; -$a->strings["Submit"] = "提交"; $a->strings["Basic"] = "基本"; $a->strings["Advanced"] = "高级"; $a->strings["Permissions"] = "权限"; $a->strings["Failed to remove event"] = "删除事件失败"; -$a->strings["Event removed"] = "事件已删除"; -$a->strings["Photos"] = "照片"; +$a->strings["The contact could not be added."] = "无法添加此联系人。"; +$a->strings["You already added this contact."] = "您已添加此联系人。"; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "网络类型无法被检测。无法添加联系人。"; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora 支持没被启用。无法添加联系人。"; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus 支持没被启用。无法添加联系人。"; +$a->strings["Tags:"] = "标签:"; $a->strings["Contact Photos"] = "联系人照片"; $a->strings["Upload"] = "上传"; $a->strings["Files"] = "文件"; -$a->strings["The contact could not be added."] = "无法添加此联系人。"; -$a->strings["You already added this contact."] = "您已添加此联系人。"; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora 支持没被启用。无法添加联系人。"; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus 支持没被启用。无法添加联系人。"; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "网络类型无法被检测。无法添加联系人。"; -$a->strings["Your Identity Address:"] = "你的身份地址:"; -$a->strings["Profile URL"] = "简介 URL"; -$a->strings["Tags:"] = "标签:"; -$a->strings["Status Messages and Posts"] = "现状通知和文章"; -$a->strings["Unable to locate original post."] = "找不到当初的新闻"; -$a->strings["Empty post discarded."] = "空帖子被丢弃了。"; -$a->strings["Post updated."] = ""; -$a->strings["Item wasn't stored."] = ""; -$a->strings["Item couldn't be fetched."] = ""; -$a->strings["Post published."] = ""; -$a->strings["Remote privacy information not available."] = "摇隐私信息无效"; -$a->strings["Visible to:"] = "可见方:"; -$a->strings["Followers"] = "关注者"; -$a->strings["Mutuals"] = ""; -$a->strings["No valid account found."] = "找不到效的账户。"; -$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "重设密码要求被发布%s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "要求确认不了。(您可能已经提交它。)重设密码失败了。"; -$a->strings["Request has expired, please make a new one."] = "请求超时,请重试。"; -$a->strings["Forgot your Password?"] = "忘记你的密码吗?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"; -$a->strings["Nickname or Email: "] = "昵称或邮件地址:"; -$a->strings["Reset"] = "复位"; -$a->strings["Password Reset"] = "复位密码"; -$a->strings["Your password has been reset as requested."] = "您的密码被重设如要求的。"; -$a->strings["Your new password is"] = "你的新的密码是"; -$a->strings["Save or copy your new password - and then"] = "保存或复制新密码-之后"; -$a->strings["click here to login"] = "点击这里登录"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "您的密码可以在成功登录后在设置页修改。"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = ""; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "您密码被变化在%s"; -$a->strings["No keywords to match. Please add keywords to your profile."] = ""; -$a->strings["Connect"] = "连接"; -$a->strings["first"] = "首先"; -$a->strings["next"] = "下个"; -$a->strings["No matches"] = "没有结果"; -$a->strings["Profile Match"] = "简介符合"; -$a->strings["New Message"] = "新的消息"; -$a->strings["No recipient selected."] = "没有选择的接受者。"; -$a->strings["Unable to locate contact information."] = "无法找到联系人信息。"; -$a->strings["Message could not be sent."] = "消息发不了。"; -$a->strings["Message collection failure."] = "通信受到错误。"; -$a->strings["Message sent."] = "消息发了"; -$a->strings["Discard"] = "丢弃"; -$a->strings["Messages"] = "消息"; -$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?"; -$a->strings["Conversation not found."] = ""; -$a->strings["Message deleted."] = "消息删除了。"; -$a->strings["Conversation removed."] = "交流删除了。"; -$a->strings["Please enter a link URL:"] = "请输入一个链接 URL:"; -$a->strings["Send Private Message"] = "发私人的通信"; -$a->strings["To:"] = "到:"; -$a->strings["Subject:"] = "题目:"; -$a->strings["Your message:"] = "你的消息:"; -$a->strings["No messages."] = "没有消息"; -$a->strings["Message not available."] = "通信不可用的"; -$a->strings["Delete message"] = "删除消息"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "删除交谈"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "没可用的安全交通。您可能会在发送人的简介页会回答。"; -$a->strings["Send Reply"] = "发回答"; -$a->strings["Unknown sender - %s"] = "生发送人-%s"; -$a->strings["You and %s"] = "您和%s"; -$a->strings["%s and You"] = "%s和您"; -$a->strings["%d message"] = [ - 0 => "%d通知", -]; -$a->strings["No such group"] = "没有这个组"; -$a->strings["Group is empty"] = "组没有成员"; -$a->strings["Group: %s"] = "组:%s"; -$a->strings["Invalid contact."] = "无效的联系人。"; -$a->strings["Latest Activity"] = "最新活动"; -$a->strings["Sort by latest activity"] = "按最新活动排序"; -$a->strings["Latest Posts"] = "最新发帖"; -$a->strings["Sort by post received date"] = "按发帖日期排序"; -$a->strings["Personal"] = "私人"; -$a->strings["Posts that mention or involve you"] = "提及你或你参与的文章"; -$a->strings["New"] = "新"; -$a->strings["Activity Stream - by date"] = "活动流-按日期"; -$a->strings["Shared Links"] = "共享的链接"; -$a->strings["Interesting Links"] = "有意思的超链接"; -$a->strings["Starred"] = "已收藏"; -$a->strings["Favourite Posts"] = "最喜欢的文章"; -$a->strings["Personal Notes"] = "私人便条"; -$a->strings["Post successful."] = "评论发表了。"; -$a->strings["Subscribing to OStatus contacts"] = "正在订阅 OStatus 联系人"; -$a->strings["No contact provided."] = "未提供联系人。"; -$a->strings["Couldn't fetch information for contact."] = "无法获取联系人信息。"; -$a->strings["Couldn't fetch friends for contact."] = "无法取得联系人的朋友信息。"; -$a->strings["Done"] = "完成"; -$a->strings["success"] = "成功"; -$a->strings["failed"] = "失败"; -$a->strings["ignored"] = "已忽视的"; -$a->strings["Keep this window open until done."] = "保持窗口打开直到完成。"; +$a->strings["Personal Notes"] = "个人笔记"; $a->strings["Photo Albums"] = "相册"; $a->strings["Recent Photos"] = "最近的照片"; $a->strings["Upload New Photos"] = "上传新照片"; @@ -386,28 +684,25 @@ $a->strings["everybody"] = "每人"; $a->strings["Contact information unavailable"] = "联系人信息不可用"; $a->strings["Album not found."] = "取回不了相册."; $a->strings["Album successfully deleted"] = "相册已成功删除"; -$a->strings["Album was empty."] = ""; +$a->strings["Album was empty."] = "相册是空的。"; +$a->strings["Failed to delete the photo."] = ""; $a->strings["a photo"] = "一张照片"; $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s被%3\$s标签在%2\$s"; -$a->strings["Image exceeds size limit of %s"] = "图片超过 %s 的大小限制"; $a->strings["Image upload didn't complete, please try again"] = "图片上传未完成,请重试"; $a->strings["Image file is missing"] = "缺少图片文件"; $a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "服务器目前无法接受新的上传文件,请联系您的管理员"; $a->strings["Image file is empty."] = "图片文件空的。"; -$a->strings["Unable to process image."] = "处理不了图像."; -$a->strings["Image upload failed."] = "图像上载失败了."; $a->strings["No photos selected"] = "没有照片挑选了"; -$a->strings["Access to this item is restricted."] = "这个项目使用权限的。"; $a->strings["Upload Photos"] = "上传照片"; $a->strings["New album name: "] = "新册名:"; -$a->strings["or select existing album:"] = ""; +$a->strings["or select existing album:"] = "或选择现有专辑:"; $a->strings["Do not show a status post for this upload"] = "别显示现状报到关于这个上传"; -$a->strings["Show to Groups"] = "给组表示"; +$a->strings["Show to Groups"] = "展示到群组"; $a->strings["Show to Contacts"] = "展示给联系人"; $a->strings["Do you really want to delete this photo album and all its photos?"] = "您真的想删除这个相册和所有里面的照相吗?"; $a->strings["Delete Album"] = "删除相册"; $a->strings["Edit Album"] = "编照片册"; -$a->strings["Drop Album"] = ""; +$a->strings["Drop Album"] = "丢弃相册"; $a->strings["Show Newest First"] = "先表示最新的"; $a->strings["Show Oldest First"] = "先表示最老的"; $a->strings["View Photo"] = "看照片"; @@ -417,12 +712,12 @@ $a->strings["Do you really want to delete this photo?"] = "您真的想删除这 $a->strings["Delete Photo"] = "删除照片"; $a->strings["View photo"] = "看照片"; $a->strings["Edit photo"] = "编辑照片"; -$a->strings["Delete photo"] = ""; +$a->strings["Delete photo"] = "删除照片"; $a->strings["Use as profile photo"] = "用为资料图"; -$a->strings["Private Photo"] = ""; +$a->strings["Private Photo"] = "私人照片"; $a->strings["View Full Size"] = "看全尺寸"; $a->strings["Tags: "] = "标签:"; -$a->strings["[Select tags to remove]"] = ""; +$a->strings["[Select tags to remove]"] = "[选择要删除的标签]"; $a->strings["New album name"] = "新册名"; $a->strings["Caption"] = "字幕"; $a->strings["Add a Tag"] = "加标签"; @@ -435,458 +730,48 @@ $a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)"; $a->strings["This is you"] = "这是你"; $a->strings["Comment"] = "评论"; $a->strings["Map"] = "地图"; -$a->strings["View Album"] = "看照片册"; -$a->strings["{0} wants to be your friend"] = "{0}想成为您的朋友"; -$a->strings["{0} requested registration"] = "{0}要求注册"; -$a->strings["Poke/Prod"] = "戳"; -$a->strings["poke, prod or do other things to somebody"] = "把人家戳或别的行动"; -$a->strings["Recipient"] = "接受者"; -$a->strings["Choose what you wish to do to recipient"] = "选择您想把别人作"; -$a->strings["Make this post private"] = "使这个文章私人"; -$a->strings["User deleted their account"] = ""; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "在您的Friendica节点上,用户删除了他们的帐户。请确保从备份中删除他们的数据。"; -$a->strings["The user id is %d"] = "用户 id 为 %d"; -$a->strings["Remove My Account"] = "删除我的账户"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。"; -$a->strings["Please enter your password for verification:"] = "请输入密码为确认:"; -$a->strings["Resubscribing to OStatus contacts"] = "重新订阅 OStatus 联系人"; -$a->strings["Error"] = [ - 0 => "错误", -]; -$a->strings["Missing some important data!"] = "缺失一些重要数据!"; -$a->strings["Update"] = "更新"; -$a->strings["Failed to connect with email account using the settings provided."] = "不能连接电子邮件账户用输入的设置。"; -$a->strings["Email settings updated."] = "电子邮件设置更新了"; -$a->strings["Features updated"] = "特点更新了"; -$a->strings["Contact CSV file upload error"] = "联系人CSV文件上载错误"; -$a->strings["Importing Contacts done"] = "导入联系人完成"; -$a->strings["Relocate message has been send to your contacts"] = "调动消息已发送给您的联系人"; -$a->strings["Passwords do not match."] = "密码不匹配。"; -$a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。"; -$a->strings["Password changed."] = "密码已改变。"; -$a->strings["Password unchanged."] = "密码未改变。"; -$a->strings["Please use a shorter name."] = "请使用较短的名称。"; -$a->strings["Name too short."] = "名称太短。"; -$a->strings["Wrong Password."] = "密码错误。"; -$a->strings["Invalid email."] = "无效的邮箱。"; -$a->strings["Cannot change to that email."] = "无法更改到此电子邮件地址。"; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "私人评坛没有隐私批准。默认隐私组用者。"; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "私人评坛没有隐私批准或默认隐私组。"; -$a->strings["Settings updated."] = "设置更新了。"; -$a->strings["Add application"] = "加入应用"; -$a->strings["Save Settings"] = "保存设置"; -$a->strings["Name"] = "名字"; -$a->strings["Consumer Key"] = "用户密钥"; -$a->strings["Consumer Secret"] = "密码(Consumer Secret)"; -$a->strings["Redirect"] = "重定向"; -$a->strings["Icon url"] = "图符URL"; -$a->strings["You can't edit this application."] = "您不能编辑这个应用。"; -$a->strings["Connected Apps"] = "连接着应用"; -$a->strings["Edit"] = "编辑"; -$a->strings["Client key starts with"] = "客户端密钥开头"; -$a->strings["No name"] = "无名"; -$a->strings["Remove authorization"] = "撤消权能"; -$a->strings["No Addon settings configured"] = "无插件设置配置完成"; -$a->strings["Addon Settings"] = "插件设置"; -$a->strings["Additional Features"] = "附加特性"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings["enabled"] = "已启用"; -$a->strings["disabled"] = "已停用"; -$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s"; -$a->strings["OStatus (GNU Social)"] = ""; -$a->strings["Email access is disabled on this site."] = "电子邮件访问在这个站上被禁用。"; -$a->strings["None"] = "没有"; -$a->strings["Social Networks"] = "社会化网络"; -$a->strings["General Social Media Settings"] = "通用社交媒体设置"; -$a->strings["Accept only top level posts by contacts you follow"] = "只接受您关注的联系人发布的帖子"; -$a->strings["The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow."] = "当评论到达时,系统会自动完成线程。这有一个副作用,那就是你可能会收到由非关注者发起的帖子,但已经被你追随者评论了。此配置将停用此行为。激活后,严格来说,你只会收到来自你真正关注的人的帖子。"; -$a->strings["Disable Content Warning"] = "禁用内容警告"; -$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "像Mastodon或Pleroma这样的网络上的用户可以设置一个内容警告字段,默认情况下会折叠他们的发帖。这将禁用自动折叠,并将内容警告设置为发帖标题。不会影响您最终设置的任何其他内容筛选。"; -$a->strings["Disable intelligent shortening"] = "禁用智能缩短"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "通常情况下,系统会尝试找到添加到缩短帖子的最佳链接。如果启用此选项,则每个缩短的帖子都将始终指向原始的Friendica帖子。"; -$a->strings["Attach the link title"] = ""; -$a->strings["When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content."] = "激活后,附加链接的标题将作为标题添加到Diaspora的帖子中。这对共享提要内容的“远程自我”联系人最有帮助。"; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "自动关注任何 GNU Social (OStatus) 关注者/提及者"; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "如果您收到来自未知OStatus用户的消息,则此选项决定如何操作。如果选中,将为每个未知用户创建一个新联系人。"; -$a->strings["Default group for OStatus contacts"] = "用于 OStatus 联系人的默认组"; -$a->strings["Your legacy GNU Social account"] = "您遗留的 GNU Social 账户"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "如果您在这里输入您旧的 GNU Social/Statusnet 账号名 (格式示例 user@domain.tld) ,您的联系人列表将会被自动添加。完成后该字段将被清空。"; -$a->strings["Repair OStatus subscriptions"] = "修复 OStatus 订阅"; -$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:"] = "上个成功收件箱检查:"; -$a->strings["IMAP server name:"] = "IMAP服务器名字:"; -$a->strings["IMAP port:"] = "IMAP服务器端口:"; -$a->strings["Security:"] = "安全:"; -$a->strings["Email login name:"] = "邮件登录名:"; -$a->strings["Email password:"] = "邮件密码:"; -$a->strings["Reply-to address:"] = "回答地址:"; -$a->strings["Send public posts to all email contacts:"] = "发送公开文章给所有的邮件联系人:"; -$a->strings["Action after import:"] = "进口后行动:"; -$a->strings["Mark as seen"] = "标注看过"; -$a->strings["Move to folder"] = "搬到文件夹"; -$a->strings["Move to folder:"] = "搬到文件夹:"; -$a->strings["Unable to find your profile. Please contact your admin."] = "无法找到您的简介。请联系您的管理员。"; -$a->strings["Account Types"] = "账户类型"; -$a->strings["Personal Page Subtypes"] = ""; -$a->strings["Community Forum Subtypes"] = ""; -$a->strings["Personal Page"] = "个人页面"; -$a->strings["Account for a personal profile."] = ""; -$a->strings["Organisation Page"] = "组织页面"; -$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["News Page"] = "新闻页面"; -$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["Community Forum"] = "社区论坛"; -$a->strings["Account for community discussions."] = ""; -$a->strings["Normal Account Page"] = "标准账户页面"; -$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = ""; -$a->strings["Soapbox Page"] = "演讲台页"; -$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["Public Forum"] = "公共论坛"; -$a->strings["Automatically approves all contact requests."] = "自动批准所有联系人请求。"; -$a->strings["Automatic Friend Page"] = "自动朋友页"; -$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = ""; -$a->strings["Private Forum [Experimental]"] = "隐私评坛[实验性的 ]"; -$a->strings["Requires manual approval of contact requests."] = "需要人工批准联系人请求。"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(可选的) 允许这个 OpenID 登录这个账户。"; -$a->strings["Publish your profile in your local site directory?"] = ""; -$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = ""; -$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = ""; -$a->strings["Your Identity Address is '%s' or '%s'."] = "你的身份地址是 '%s' 或者 '%s'."; -$a->strings["Account Settings"] = "帐户设置"; -$a->strings["Password Settings"] = "密码设置"; -$a->strings["New Password:"] = "新密码:"; -$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = "允许的字符为a-z、A-Z、0-9以及除空格、重音字母和冒号(:)之外的特殊字符。"; -$a->strings["Confirm:"] = "确认:"; -$a->strings["Leave password fields blank unless changing"] = "留空密码字段,除非要修改"; -$a->strings["Current Password:"] = "当前密码:"; -$a->strings["Your current password to confirm the changes"] = "您的当前密码以验证变更"; -$a->strings["Password:"] = "密码:"; -$a->strings["Delete OpenID URL"] = ""; -$a->strings["Basic Settings"] = "基础设置"; -$a->strings["Full Name:"] = "全名:"; -$a->strings["Email Address:"] = "电子邮件地址:"; -$a->strings["Your Timezone:"] = "你的时区:"; -$a->strings["Your Language:"] = "您的语言 :"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; -$a->strings["Default Post Location:"] = "默认文章位置:"; -$a->strings["Use Browser Location:"] = "使用浏览器位置:"; -$a->strings["Security and Privacy Settings"] = "安全和隐私设置"; -$a->strings["Maximum Friend Requests/Day:"] = "每天最大朋友请求数:"; -$a->strings["(to prevent spam abuse)"] = "(用于防止垃圾信息滥用)"; -$a->strings["Allow your profile to be searchable globally?"] = ""; -$a->strings["Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."] = ""; -$a->strings["Hide your contact/friend list from viewers of your profile?"] = ""; -$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = ""; -$a->strings["Hide your profile details from anonymous viewers?"] = "对匿名访问者隐藏详细简介?"; -$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = ""; -$a->strings["Make public posts unlisted"] = ""; -$a->strings["Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."] = ""; -$a->strings["Make all posted pictures accessible"] = ""; -$a->strings["This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."] = "此选项使每一张张贴的图片都可以通过直接链接访问。这是解决大多数其他网络无法处理图片权限问题的解决方法。不过,公众仍然无法在您的相册中看到非公开图片。"; -$a->strings["Allow friends to post to your profile page?"] = "允许朋友们贴文章在您的简介页?"; -$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = ""; -$a->strings["Allow friends to tag your posts?"] = "允许朋友们标签您的文章?"; -$a->strings["Your contacts can add additional tags to your posts."] = "您的联系人可以为您的帖子添加额外的标签。"; -$a->strings["Permit unknown people to send you private mail?"] = "允许生人寄给您私人邮件?"; -$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Friendica 网络用户可能会向您发送私人信息,即使他们不在您的联系人列表中。"; -$a->strings["Maximum private messages per day from unknown people:"] = "每天来自未知的人的私信:"; -$a->strings["Default Post Permissions"] = "默认文章权限"; -$a->strings["Expiration settings"] = "过期设置"; -$a->strings["Automatically expire posts after this many days:"] = "在这数天后自动使文章过期:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "如果为空,文章不会过期。过期的文章将被删除"; -$a->strings["Expire posts"] = ""; -$a->strings["When activated, posts and comments will be expired."] = ""; -$a->strings["Expire personal notes"] = ""; -$a->strings["When activated, the personal notes on your profile page will be expired."] = ""; -$a->strings["Expire starred posts"] = "已收藏的帖子過期"; -$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = "收藏帖子不会过期。该行为将被此设置覆盖。"; -$a->strings["Expire photos"] = "过期照片"; -$a->strings["When activated, photos will be expired."] = "激活时,照片将过期。"; -$a->strings["Only expire posts by others"] = ""; -$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = ""; -$a->strings["Notification Settings"] = "通知设置"; -$a->strings["Send a notification email when:"] = "发一个消息要是:"; -$a->strings["You receive an introduction"] = "你收到一份介绍"; -$a->strings["Your introductions are confirmed"] = "你的介绍被确认了"; -$a->strings["Someone writes on your profile wall"] = "某人写在你的简历墙"; -$a->strings["Someone writes a followup comment"] = "某人写一个后续的评论"; -$a->strings["You receive a private message"] = "你收到一封私信"; -$a->strings["You receive a friend suggestion"] = "你受到一个朋友建议"; -$a->strings["You are tagged in a post"] = "你被在新闻标签"; -$a->strings["You are poked/prodded/etc. in a post"] = "您在文章被戳"; -$a->strings["Activate desktop notifications"] = "启用桌面通知"; -$a->strings["Show desktop popup on new notifications"] = "在有新的提示时显示桌面弹出窗口"; -$a->strings["Text-only notification emails"] = "纯文本通知邮件"; -$a->strings["Send text only notification emails, without the html part"] = "发送纯文本通知邮件,无 html 部分"; -$a->strings["Show detailled notifications"] = "显示详细通知"; -$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "默认情况下,通知被压缩为每个项目的单个通知。启用后,将显示每个通知。"; -$a->strings["Advanced Account/Page Type Settings"] = "专家账户/页种设置"; -$a->strings["Change the behaviour of this account for special situations"] = "把这个账户特别情况的时候行动变化"; -$a->strings["Import Contacts"] = "导入联系人"; -$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "上传一个CSV文件,该文件在您从旧帐号导出的第一列中包含您关注的帐号的句柄。"; -$a->strings["Upload File"] = "上传文件"; -$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["Contact suggestion successfully ignored."] = ""; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "没有建议。如果这是新网站,请24小时后再试。"; -$a->strings["Do you really want to delete this suggestion?"] = "您真的想删除这个建议吗?"; -$a->strings["Ignore/Hide"] = "忽视/隐藏"; -$a->strings["Friend Suggestions"] = "朋友推荐"; -$a->strings["Tag(s) removed"] = ""; -$a->strings["Remove Item Tag"] = "去除项目标签"; -$a->strings["Select a tag to remove: "] = "选择删除一个标签: "; -$a->strings["Remove"] = "移走"; -$a->strings["User imports on closed servers can only be done by an administrator."] = ""; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "这个网站超过一天最多账户注册。请明天再试。"; -$a->strings["Import"] = ""; -$a->strings["Move account"] = "把账户搬出"; -$a->strings["You can import an account from another Friendica server."] = "您会从别的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."] = "你需要从老服务器导出你的账户并在这里上传。我们会在这里重建你的账户,包括你所有的联系人。我们也会通知你的朋友们你搬到了这里。"; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "这个特性是实验性的。我们不能从 OStatus 网络 (GNU Social/Statusnet) 或者 Diaspora 导入联系人"; -$a->strings["Account file"] = "账户文件"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」"; -$a->strings["You aren't following this contact."] = ""; -$a->strings["Unfollowing is currently not supported by your network."] = "取消关注现在不被你的网络支持。"; -$a->strings["Contact unfollowed"] = "取消关注了的联系人"; -$a->strings["Disconnect/Unfollow"] = "断开连接/取消关注"; -$a->strings["No videos selected"] = "没有视频被选择"; -$a->strings["View Video"] = "察看视频"; -$a->strings["Recent Videos"] = "最近的视频"; -$a->strings["Upload New Videos"] = "上传新视频"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "一天最多墙通知给%s超过了。通知没有通过 。"; -$a->strings["Unable to check your home location."] = "核对不了您的主页。"; -$a->strings["No recipient."] = "没有接受者。"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。"; -$a->strings["Invalid request."] = "无效请求。"; -$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 %s"] = "文件超过了 %s 的大小限制"; -$a->strings["File upload failed."] = "文件上传失败。"; -$a->strings["Wall Photos"] = "墙照片"; -$a->strings["Login failed."] = "登录失败。"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"; -$a->strings["The error message was:"] = "错误通知是:"; -$a->strings["Login failed. Please check your credentials."] = ""; -$a->strings["Welcome %s"] = ""; -$a->strings["Please upload a profile photo."] = "请上传一张简介照片"; -$a->strings["Welcome back %s"] = ""; $a->strings["You must be logged in to use addons. "] = "您用插件前要登录"; $a->strings["Delete this item?"] = "删除这个项目?"; $a->strings["toggle mobile"] = "切换移动设备"; -$a->strings["Method not allowed for this module. Allowed method(s): %s"] = ""; +$a->strings["Login failed."] = "登录失败。"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"; +$a->strings["The error message was:"] = "错误通知是:"; +$a->strings["Login failed. Please check your credentials."] = "登录失败。请检查一下您的资格。"; +$a->strings["Welcome %s"] = "欢迎%s"; +$a->strings["Please upload a profile photo."] = "请上传一张简介照片"; +$a->strings["Method not allowed for this module. Allowed method(s): %s"] = "此模块不允许使用模块。允许的方法:%s"; $a->strings["Page not found."] = "页发现。"; -$a->strings["No system theme config value set."] = ""; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。"; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = ""; -$a->strings["The contact entries have been archived"] = ""; -$a->strings["Could not find any contact entry for this URL (%s)"] = ""; -$a->strings["The contact has been blocked from the node"] = "该联系人已被本节点屏蔽。"; -$a->strings["Post update version number has been set to %s."] = ""; -$a->strings["Check for pending update actions."] = ""; -$a->strings["Done."] = ""; -$a->strings["Execute pending post updates."] = ""; -$a->strings["All pending post updates are done."] = ""; -$a->strings["Enter new password: "] = ""; -$a->strings["Enter user name: "] = ""; -$a->strings["Enter user nickname: "] = ""; -$a->strings["Enter user email address: "] = ""; -$a->strings["Enter a language (optional): "] = ""; -$a->strings["User is not pending."] = ""; -$a->strings["Type \"yes\" to delete %s"] = ""; -$a->strings["newer"] = "更新"; -$a->strings["older"] = "更旧"; -$a->strings["Frequently"] = ""; -$a->strings["Hourly"] = "每小时"; -$a->strings["Twice daily"] = "每天两次"; -$a->strings["Daily"] = "每天"; -$a->strings["Weekly"] = "每周"; -$a->strings["Monthly"] = "每月"; -$a->strings["DFRN"] = ""; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "电子邮件"; -$a->strings["Diaspora"] = "Diaspora"; -$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"] = "推特"; -$a->strings["Discourse"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["GNU Social Connector"] = "GNU Social 连接器"; -$a->strings["ActivityPub"] = ""; -$a->strings["pnut"] = ""; -$a->strings["%s (via %s)"] = ""; -$a->strings["General Features"] = "通用特性"; -$a->strings["Photo Location"] = "照片地点"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "照片元数据通常被剥离。这将在剥离元数据之前提取位置(如果存在),并将其链接到地图。"; -$a->strings["Export Public Calendar"] = "导出公共日历"; -$a->strings["Ability for visitors to download the public calendar"] = "允许访问者下载公共日历"; -$a->strings["Trending Tags"] = ""; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = ""; -$a->strings["Post Composition Features"] = "发帖编写功能"; -$a->strings["Auto-mention Forums"] = "自动提示论坛"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "在ACL窗口中选择/取消选择论坛页面时添加/删除提及。"; -$a->strings["Explicit Mentions"] = "明确提及"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "在“评论”框中添加显式提及,以手动控制在答复中提及的人。"; -$a->strings["Network Sidebar"] = "网络工具栏"; -$a->strings["Archives"] = "档案"; -$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章"; -$a->strings["Protocol Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "启用小窗口以仅显示来自选定协议的网络帖子"; -$a->strings["Network Tabs"] = "网络分页"; -$a->strings["Network New Tab"] = "网络新分页"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "启用只显示新的网络文章(过去12小时)的标签页"; -$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["Post Categories"] = "文章种类"; -$a->strings["Add categories to your posts"] = "加入种类给您的文章"; -$a->strings["Advanced Profile Settings"] = "高级简介设置"; -$a->strings["List Forums"] = "列出各论坛"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "在“高级简介设置”页上向访问者显示公共社区论坛"; -$a->strings["Tag Cloud"] = "标签云"; -$a->strings["Provide a personal tag cloud on your profile page"] = "在您的个人简介中提供个人标签云"; -$a->strings["Display Membership Date"] = ""; -$a->strings["Display membership date in profile"] = ""; -$a->strings["Forums"] = "论坛"; -$a->strings["External link to forum"] = "到论坛的外链"; -$a->strings["show more"] = "显示更多"; -$a->strings["Nothing new here"] = "这里没有什么新的"; -$a->strings["Go back"] = ""; -$a->strings["Clear notifications"] = "清理出通知"; -$a->strings["@name, !forum, #tags, content"] = ""; -$a->strings["Logout"] = "注销"; -$a->strings["End this session"] = "结束此次会话"; -$a->strings["Login"] = "登录"; -$a->strings["Sign in"] = "登录"; -$a->strings["Status"] = "状态"; -$a->strings["Your posts and conversations"] = "你的消息和交谈"; -$a->strings["Profile"] = "简介"; -$a->strings["Your profile page"] = "你的简介页"; -$a->strings["Your photos"] = "你的照片"; -$a->strings["Videos"] = "视频"; -$a->strings["Your videos"] = "你的视频"; -$a->strings["Your events"] = "你的项目"; -$a->strings["Personal notes"] = "私人的便条"; -$a->strings["Your personal notes"] = "你的私人便条"; -$a->strings["Home"] = "主页"; -$a->strings["Home Page"] = "主页"; -$a->strings["Register"] = "注册"; -$a->strings["Create an account"] = "注册"; -$a->strings["Help"] = "帮助"; -$a->strings["Help and documentation"] = "帮助及文档"; -$a->strings["Apps"] = "应用程序"; -$a->strings["Addon applications, utilities, games"] = "可加的应用,设施,游戏"; -$a->strings["Search"] = "搜索"; -$a->strings["Search site content"] = "搜索网站内容"; -$a->strings["Full Text"] = "全文"; -$a->strings["Tags"] = "标签:"; -$a->strings["Contacts"] = "联系人"; -$a->strings["Community"] = "社会"; -$a->strings["Conversations on this and other servers"] = ""; -$a->strings["Events and Calendar"] = "事件和日历"; -$a->strings["Directory"] = "名录"; -$a->strings["People directory"] = "人物名录"; -$a->strings["Information"] = "资料"; -$a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器"; -$a->strings["Terms of Service"] = "服务条款"; -$a->strings["Terms of Service of this Friendica instance"] = ""; -$a->strings["Network"] = "网络"; -$a->strings["Conversations from your friends"] = "来自你的朋友们的交谈"; -$a->strings["Introductions"] = "介绍"; -$a->strings["Friend Requests"] = "友谊邀请"; -$a->strings["Notifications"] = "通知"; -$a->strings["See all notifications"] = "看所有的通知"; -$a->strings["Mark all system notifications seen"] = "记号各系统通知看过的"; -$a->strings["Private mail"] = "私人的邮件"; -$a->strings["Inbox"] = "收件箱"; -$a->strings["Outbox"] = "发件箱"; -$a->strings["Accounts"] = ""; -$a->strings["Manage other pages"] = "管理别的页"; -$a->strings["Settings"] = "设置"; -$a->strings["Account settings"] = "帐户设置"; -$a->strings["Manage/edit friends and contacts"] = "管理/编辑朋友和联系人"; -$a->strings["Admin"] = "管理"; -$a->strings["Site setup and configuration"] = "网站开办和配置"; -$a->strings["Navigation"] = "导航"; -$a->strings["Site map"] = "网站地图"; -$a->strings["Embedding disabled"] = "嵌入已停用"; -$a->strings["Embedded content"] = "嵌入内容"; -$a->strings["prev"] = "上个"; -$a->strings["last"] = "最后"; -$a->strings["Image/photo"] = "图像/照片"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["Click to open/close"] = "点击为开关"; -$a->strings["$1 wrote:"] = "$1写:"; -$a->strings["Encrypted content"] = "加密的内容"; -$a->strings["Invalid source protocol"] = "无效的源协议"; -$a->strings["Invalid link protocol"] = "无效的连接协议"; -$a->strings["Loading more entries..."] = "没有项目..."; -$a->strings["The end"] = ""; -$a->strings["Follow"] = "关注"; -$a->strings["Export"] = "导出"; -$a->strings["Export calendar as ical"] = "导出日历为 ical"; -$a->strings["Export calendar as csv"] = "导出日历为 csv"; -$a->strings["No contacts"] = "没有联系人"; -$a->strings["%d Contact"] = [ - 0 => "%d 联系人", -]; -$a->strings["View Contacts"] = "查看联系人"; -$a->strings["Remove term"] = "删除关键字"; -$a->strings["Saved Searches"] = "保存的搜索"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "", -]; -$a->strings["More Trending Tags"] = ""; -$a->strings["Add New Contact"] = "添加新的联系人"; -$a->strings["Enter address or web location"] = "输入地址或网络位置"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; -$a->strings["%d invitation available"] = [ - 0 => "%d邀请可用的", -]; -$a->strings["Find People"] = "找人物"; -$a->strings["Enter name or interest"] = "输入名字或兴趣"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:罗伯特·摩根斯坦,钓鱼"; -$a->strings["Find"] = "搜索"; -$a->strings["Similar Interests"] = "相似兴趣"; -$a->strings["Random Profile"] = "随机简介"; -$a->strings["Invite Friends"] = "邀请朋友们"; -$a->strings["Global Directory"] = "综合目录"; -$a->strings["Local Directory"] = "本地目录"; -$a->strings["Groups"] = "组"; -$a->strings["Everyone"] = ""; -$a->strings["Following"] = ""; -$a->strings["Mutual friends"] = ""; -$a->strings["Relationships"] = ""; -$a->strings["All Contacts"] = "所有联系人"; -$a->strings["Protocols"] = ""; -$a->strings["All Protocols"] = ""; -$a->strings["Saved Folders"] = "保存的文件夹"; -$a->strings["Everything"] = "一切"; -$a->strings["Categories"] = "种类"; -$a->strings["%d contact in common"] = [ - 0 => "%d 个共同的联系人", -]; -$a->strings["Yourself"] = ""; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n在数据库更新的时候发生了错误 %d\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "操作数据库更改的时候遇到了错误:"; +$a->strings["Another database update is currently running."] = ""; +$a->strings["%s: Database update"] = "%s:数据库更新"; +$a->strings["%s: updating %s table."] = "%s: 正在更新 %s 表。"; +$a->strings["Database error %d \"%s\" at \"%s\""] = ""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "更新 %s 失败。查看错误日志。"; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = "错误消息是\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = ""; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = ""; +$a->strings["Yourself"] = "你自己"; +$a->strings["Followers"] = "关注者"; +$a->strings["Mutuals"] = "互惠互利"; $a->strings["Post to Email"] = "电邮发布"; $a->strings["Public"] = "公开"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "此内容将显示给您的所有追随者,并可在社区页面中查看,任何具有其链接的人都可以看到。"; -$a->strings["Limited/Private"] = ""; +$a->strings["Limited/Private"] = "私人"; $a->strings["This content will be shown only to the people in the first box, to the exception of the people mentioned in the second box. It won't appear anywhere public."] = "此内容将仅向第一个框中的人显示,第二个框中提到的人除外。它不会出现在任何公共场合。"; $a->strings["Show to:"] = ""; $a->strings["Except to:"] = ""; -$a->strings["Connectors"] = ""; -$a->strings["The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +$a->strings["Connectors"] = "连接器"; +$a->strings["The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "无法写入数据库配置文件“config/local.config.php”。请使用附带的文本在您的Web服务器根目录中创建配置文件。"; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"; $a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。"; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; $a->strings["PHP executable path"] = "PHP可执行路径"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "输入全路线到php执行程序。您会留空白为继续安装。"; $a->strings["Command line PHP"] = "命令行PHP"; @@ -901,7 +786,7 @@ $a->strings["If running under Windows, please see \"http://www.php.net/manual/en $a->strings["Generate encryption keys"] = "产生加密钥匙"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"; $a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite部件"; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = ""; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "错误:需要PDO或MySQLi PHP模块,但尚未安装。"; $a->strings["Error: The MySQL driver for PDO is not installed."] = "错误:MySQL 的 PHP 数据对象 (PDO) 扩展驱动未安装。"; $a->strings["PDO or MySQLi PHP module"] = "PDO 或者 MySQLi PHP 模块"; $a->strings["Error, XML PHP module required but not installed."] = "部件错误,需要 XML PHP 模块但它并没有被安装。"; @@ -920,20 +805,20 @@ $a->strings["POSIX PHP module"] = "POSIX PHP 模块"; $a->strings["Error: POSIX PHP module required but not installed."] = ""; $a->strings["JSON PHP module"] = ""; $a->strings["Error: JSON PHP module required but not installed."] = ""; -$a->strings["File Information PHP module"] = ""; +$a->strings["File Information PHP module"] = "文件信息PHP模块"; $a->strings["Error: File Information PHP module required but not installed."] = ""; -$a->strings["The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."] = ""; +$a->strings["The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."] = "Web安装程序需要能够在Web服务器的“config”文件夹中创建名为“local.config.php”的文件,但它无法做到这一点。"; $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"; -$a->strings["At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."] = ""; +$a->strings["At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."] = "在此过程结束时,我们将为您提供一个要保存在Friendica“config”文件夹中名为local.config.php的文件中的文本。"; $a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"; -$a->strings["config/local.config.php is writable"] = ""; +$a->strings["config/local.config.php is writable"] = "Config/local.config.php是可写的"; $a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。"; $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."] = "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。"; $a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "请保险您网服务器用户(比如www-data)有这个目录的写权利。"; $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."] = "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。"; $a->strings["view/smarty3 is writable"] = "能写view/smarty3"; -$a->strings["Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess."] = ""; -$a->strings["Error message from Curl when fetching"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess."] = ".htaccess中的URL重写不起作用。确保将.htaccess-dist复制到.htaccess。"; +$a->strings["Error message from Curl when fetching"] = "获取时来自Curl的错误消息"; $a->strings["Url rewrite is working"] = "URL改写发挥机能"; $a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP 扩展没有安装"; $a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP 扩展已安装"; @@ -989,11 +874,6 @@ $a->strings["finger"] = "指"; $a->strings["fingered"] = "指了"; $a->strings["rebuff"] = "拒绝"; $a->strings["rebuffed"] = "已拒绝"; -$a->strings["Update %s failed. See error logs."] = "更新 %s 失败。查看错误日志。"; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = "错误消息是\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = ""; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = ""; $a->strings["Error decoding account file"] = "解码账户文件出错误"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "错误!文件没有版本数!这不是Friendica账户文件吗?"; $a->strings["User '%s' already exists on this server!"] = "用户「%s」已经存在这个服务器!"; @@ -1003,11 +883,102 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "用户简介创建错误"; $a->strings["Done. You can now login with your username and password"] = "完成。你现在可以用你的用户名和密码登录"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n在数据库更新的时候发生了错误 %d\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "操作数据库更改的时候遇到了错误:"; -$a->strings["%s: Database update"] = ""; -$a->strings["%s: updating %s table."] = "%s: 正在更新 %s 表。"; +$a->strings["Legacy module file not found: %s"] = "找不到旧模块文件:%s"; +$a->strings["(no subject)"] = "(无主题)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"; +$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。"; +$a->strings["%s posted an update."] = "%s贴上一个新闻。"; +$a->strings["This entry was edited"] = "这个条目被编辑了"; +$a->strings["Private Message"] = "私人的新闻"; +$a->strings["pinned item"] = ""; +$a->strings["Delete locally"] = ""; +$a->strings["Delete globally"] = "全局删除"; +$a->strings["Remove locally"] = "本地删除"; +$a->strings["save to folder"] = "保存在文件夹"; +$a->strings["I will attend"] = "我将会参加"; +$a->strings["I will not attend"] = "我将不会参加"; +$a->strings["I might attend"] = "我可能会参加"; +$a->strings["ignore thread"] = "忽视主题"; +$a->strings["unignore thread"] = "取消忽视主题"; +$a->strings["toggle ignore status"] = "切换忽视状态"; +$a->strings["pin"] = ""; +$a->strings["unpin"] = ""; +$a->strings["toggle pin status"] = ""; +$a->strings["pinned"] = ""; +$a->strings["add star"] = "添加收藏"; +$a->strings["remove star"] = "移除收藏"; +$a->strings["toggle star status"] = ""; +$a->strings["starred"] = ""; +$a->strings["add tag"] = "加标签"; +$a->strings["like"] = "喜欢"; +$a->strings["dislike"] = "不喜欢"; +$a->strings["Share this"] = "分享这个"; +$a->strings["share"] = "分享"; +$a->strings["%s (Received %s)"] = "%s( 收到%s)"; +$a->strings["Comment this item on your system"] = "在您的系统上注释此项目"; +$a->strings["remote comment"] = ""; +$a->strings["Pushed"] = ""; +$a->strings["Pulled"] = ""; +$a->strings["to"] = "至"; +$a->strings["via"] = "经过"; +$a->strings["Wall-to-Wall"] = "从墙到墙"; +$a->strings["via Wall-To-Wall:"] = "通过从墙到墙"; +$a->strings["Reply to %s"] = ""; +$a->strings["More"] = "更多"; +$a->strings["Notifier task is pending"] = ""; +$a->strings["Delivery to remote servers is pending"] = ""; +$a->strings["Delivery to remote servers is underway"] = ""; +$a->strings["Delivery to remote servers is mostly done"] = ""; +$a->strings["Delivery to remote servers is done"] = ""; +$a->strings["%d comment"] = [ + 0 => "%d 条评论", +]; +$a->strings["Show more"] = "显示更多"; +$a->strings["Show fewer"] = ""; +$a->strings["comment"] = [ + 0 => "评论", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "找不到此URL(%s)的任何未存档联系人条目"; +$a->strings["The contact entries have been archived"] = "联系人条目已存档"; +$a->strings["Could not find any contact entry for this URL (%s)"] = "找不到此URL(%s)的任何联系人条目"; +$a->strings["The contact has been blocked from the node"] = "该联系人已被本节点屏蔽。"; +$a->strings["Enter new password: "] = "输入新密码:"; +$a->strings["Enter user name: "] = "输入用户名:"; +$a->strings["Enter user nickname: "] = "输入用户昵称:"; +$a->strings["Enter user email address: "] = "输入用户电子邮件地址:"; +$a->strings["Enter a language (optional): "] = "输入语言(可选):"; +$a->strings["User is not pending."] = "用户未挂起。"; +$a->strings["User has already been marked for deletion."] = ""; +$a->strings["Type \"yes\" to delete %s"] = "键入“yes”可删除%s"; +$a->strings["Deletion aborted."] = ""; +$a->strings["Post update version number has been set to %s."] = "更新后版本号已设置为%s"; +$a->strings["Check for pending update actions."] = "检查待定的更新操作。"; +$a->strings["Done."] = "好了。"; +$a->strings["Execute pending post updates."] = "实行待定的发帖更新。"; +$a->strings["All pending post updates are done."] = "所有待定的发帖更新都已完成。"; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "故乡:"; +$a->strings["Marital Status:"] = ""; +$a->strings["With:"] = ""; +$a->strings["Since:"] = ""; +$a->strings["Sexual Preference:"] = "性取向:"; +$a->strings["Political Views:"] = "政治观念:"; +$a->strings["Religious Views:"] = " 宗教信仰 :"; +$a->strings["Likes:"] = "喜欢:"; +$a->strings["Dislikes:"] = "不喜欢:"; +$a->strings["Title/Description:"] = "标题/描述:"; +$a->strings["Summary"] = "概要"; +$a->strings["Musical interests"] = "音乐兴趣"; +$a->strings["Books, literature"] = "书,文学"; +$a->strings["Television"] = "电视"; +$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐"; +$a->strings["Hobbies/Interests"] = "爱好/兴趣"; +$a->strings["Love/romance"] = "爱情/浪漫"; +$a->strings["Work/employment"] = "工作"; +$a->strings["School/education"] = "学院/教育"; +$a->strings["Contact information and Social Networks"] = "联系人信息和社交网络"; +$a->strings["No system theme config value set."] = "未设置系统主题配置值。"; $a->strings["Friend Suggestion"] = "朋友建议"; $a->strings["Friend/Connect Request"] = "友谊/联络要求"; $a->strings["New Follower"] = "新关注者"; @@ -1019,15 +990,1108 @@ $a->strings["%s is attending %s's event"] = "%s 正在参加 %s 的事件"; $a->strings["%s is not attending %s's event"] = "%s 不在参加 %s 的事件"; $a->strings["%s may attending %s's event"] = ""; $a->strings["%s is now friends with %s"] = "%s成为%s的朋友"; -$a->strings["Legacy module file not found: %s"] = ""; -$a->strings["UnFollow"] = ""; -$a->strings["Drop Contact"] = "删除联系人"; +$a->strings["Network Notifications"] = "网络通知"; +$a->strings["System Notifications"] = "系统通知"; +$a->strings["Personal Notifications"] = "私人通知"; +$a->strings["Home Notifications"] = "主页通知"; +$a->strings["No more %s notifications."] = "没有更多的 %s 通知。"; +$a->strings["Show unread"] = "显示未读"; +$a->strings["Show all"] = "显示全部"; +$a->strings["You must be logged in to show this page."] = "您必须登录才能显示此页面。"; +$a->strings["Notifications"] = "通知"; +$a->strings["Show Ignored Requests"] = "显示被忽视的请求"; +$a->strings["Hide Ignored Requests"] = "隐藏被忽视的请求"; +$a->strings["Notification type:"] = ""; +$a->strings["Suggested by:"] = ""; +$a->strings["Hide this contact from others"] = "对其他人隐藏这个联系人"; $a->strings["Approve"] = "批准"; +$a->strings["Claims to be known to you: "] = "声称被您认识:"; +$a->strings["Shall your connection be bidirectional or not?"] = "是否启用双向连接?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "接受%s为朋友%s可以订阅您的帖子,您还可以在新闻提要中收到他们的最新消息。"; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "接受%s作为订阅者允许他们订阅你的帖子,但你不会在你的新闻源中收到他们的更新。"; +$a->strings["Friend"] = "朋友"; +$a->strings["Subscriber"] = "订阅者"; +$a->strings["About:"] = "关于:"; +$a->strings["Network:"] = "网络"; +$a->strings["No introductions."] = "没有介绍。"; +$a->strings["A Decentralized Social Network"] = ""; +$a->strings["Logged out."] = "已注销。"; +$a->strings["Invalid code, please retry."] = ""; +$a->strings["Two-factor authentication"] = "两步认证"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = ""; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = ""; +$a->strings["Please enter a code from your authentication app"] = ""; +$a->strings["Verify code and complete login"] = ""; +$a->strings["Remaining recovery codes: %d"] = ""; +$a->strings["Two-factor recovery"] = "两步恢复"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = ""; +$a->strings["Please enter a recovery code"] = ""; +$a->strings["Submit recovery code and complete login"] = ""; +$a->strings["Create a New Account"] = "创建新的账户"; +$a->strings["Register"] = "注册"; +$a->strings["Your OpenID: "] = "您的OpenID:"; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = ""; +$a->strings["Or login using OpenID: "] = "或者使用 OpenID 登录: "; +$a->strings["Logout"] = "注销"; +$a->strings["Login"] = "登录"; +$a->strings["Password: "] = "密码:"; +$a->strings["Remember me"] = "记住我"; +$a->strings["Forgot your password?"] = "忘记你的密码吗?"; +$a->strings["Website Terms of Service"] = "网站服务条款"; +$a->strings["terms of service"] = "服务条款"; +$a->strings["Website Privacy Policy"] = "网站隐私政策"; +$a->strings["privacy policy"] = "隐私政策"; +$a->strings["OpenID protocol error. No ID returned"] = "OpenID协议错误。未返回ID"; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "找不到帐户。请登录到您的现有帐户以向其添加OpenID。"; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = ""; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "时间装换"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。"; +$a->strings["UTC time: %s"] = "UTC时间: %s"; +$a->strings["Current timezone: %s"] = "现在时区: %s"; +$a->strings["Converted localtime: %s"] = "装换的当地时间:%s"; +$a->strings["Please select your timezone:"] = "请选择你的时区:"; +$a->strings["Source input"] = "源码输入"; +$a->strings["BBCode::toPlaintext"] = ""; +$a->strings["BBCode::convert (raw HTML)"] = ""; +$a->strings["BBCode::convert"] = ""; +$a->strings["BBCode::convert => HTML::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; +$a->strings["Item Body"] = ""; +$a->strings["Item Tags"] = ""; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = ""; +$a->strings["Source input (Markdown)"] = ""; +$a->strings["Markdown::convert (raw HTML)"] = ""; +$a->strings["Markdown::convert"] = ""; +$a->strings["Markdown::toBBCode"] = ""; +$a->strings["Raw HTML input"] = "原始 HTML 输入"; +$a->strings["HTML Input"] = "HTML 输入"; +$a->strings["HTML::toBBCode"] = ""; +$a->strings["HTML::toBBCode => BBCode::convert"] = ""; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = ""; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; +$a->strings["HTML::toMarkdown"] = ""; +$a->strings["HTML::toPlaintext"] = ""; +$a->strings["HTML::toPlaintext (compact)"] = ""; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = "源文本"; +$a->strings["BBCode"] = ""; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = "只有已登录用户才被允许进行探测。"; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = "您必须登录才能使用此模块"; +$a->strings["Source URL"] = "源链接"; +$a->strings["Lookup address"] = ""; +$a->strings["%s's timeline"] = "%s 的时间线"; +$a->strings["%s's posts"] = "%s的帖子"; +$a->strings["%s's comments"] = "%s 的评论"; +$a->strings["No contacts."] = "没有联系人。"; +$a->strings["Follower (%s)"] = [ + 0 => "关注(%s)", +]; +$a->strings["Following (%s)"] = [ + 0 => "关注(%s)", +]; +$a->strings["Mutual friend (%s)"] = [ + 0 => "互为好友 (%s)", +]; +$a->strings["Contact (%s)"] = [ + 0 => "", +]; +$a->strings["All contacts"] = ""; +$a->strings["Following"] = "正在关注"; +$a->strings["Mutual friends"] = "互为好友"; +$a->strings["You're currently viewing your profile as %s Cancel"] = ""; +$a->strings["Member since:"] = ""; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "生日:"; +$a->strings["Age: "] = "年龄 :"; +$a->strings["%d year old"] = [ + 0 => "%d岁", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "主页:"; +$a->strings["Forums:"] = ""; +$a->strings["View profile as:"] = ""; +$a->strings["Edit profile"] = "修改简介"; +$a->strings["View as"] = ""; +$a->strings["Only parent users can create additional accounts."] = "只有父用户才能创建其他帐户。"; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "您可以(可选)通过OpenID填写此表单,方法是提供您的OpenID并单击“注册”。"; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。"; +$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):"; +$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?"; +$a->strings["Note for the admin"] = "给管理员的便条"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "给管理员留条消息,为什么你想加入这个节点"; +$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。"; +$a->strings["Your invitation code: "] = "您的邀请码:"; +$a->strings["Registration"] = "注册"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "你的全名 (比如张三,真名或看起来是真名):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)"; +$a->strings["Please repeat your e-mail address:"] = "请重复您的电子邮件地址"; +$a->strings["Leave empty for an auto generated password."] = "留空以使用自动生成的密码。"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "选择配置文件昵称。这必须以文本字符开始。您在此站点上的个人资料地址将是“昵称@”%s。"; +$a->strings["Choose a nickname: "] = "选择昵称:"; +$a->strings["Import your profile to this friendica instance"] = "导入您的简介到这个friendica服务器"; +$a->strings["Terms of Service"] = "服务条款"; +$a->strings["Note: This node explicitly contains adult content"] = "注意:此节点明确包含成人内容"; +$a->strings["Parent Password:"] = "家长密码:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "请为家长账户设置密码以使您的请求有效化。"; +$a->strings["Password doesn't match."] = "密码不匹配。"; +$a->strings["Please enter your password."] = "请输入您的密码。"; +$a->strings["You have entered too much information."] = "您输入的信息太多。"; +$a->strings["Please enter the identical mail address in the second field."] = "请在第二个字段中输入相同的邮件地址。"; +$a->strings["The additional account was created."] = "附加帐户已创建。"; +$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功。请检查您的收件箱以获取进一步操作。"; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。"; +$a->strings["Registration successful."] = "注册成功。"; +$a->strings["Your registration can not be processed."] = "处理不了您的注册。"; +$a->strings["You have to leave a request note for the admin."] = "您必须给管理员留下一张申请单。"; +$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。"; +$a->strings["Bad Request"] = ""; +$a->strings["Unauthorized"] = ""; +$a->strings["Forbidden"] = ""; +$a->strings["Not Found"] = "未发现"; +$a->strings["Internal Server Error"] = ""; +$a->strings["Service Unavailable"] = ""; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; +$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; +$a->strings["The requested resource could not be found but may be available in the future."] = ""; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "遇到意外情况,没有合适的更具体的消息。"; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; +$a->strings["Go back"] = "回去"; +$a->strings["Welcome to %s"] = "%s欢迎你"; +$a->strings["No friends to display."] = "没有朋友展示。"; +$a->strings["Suggested contact not found."] = ""; +$a->strings["Friend suggestion sent."] = "朋友建议发送了。"; +$a->strings["Suggest Friends"] = "推荐的朋友们"; +$a->strings["Suggest a friend for %s"] = "给 %s 推荐朋友"; +$a->strings["Credits"] = "贡献"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica 是一个社区项目,如果没有许多人的努力她将无法实现。这里列出了那些为代码作出贡献或者参与本地化翻译的人们。感谢大家的努力!"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["System check"] = "系统检测"; +$a->strings["Check again"] = "再检测"; +$a->strings["No SSL policy, links will track page SSL state"] = "没SSL方针,环节将追踪页SSL现状"; +$a->strings["Force all links to use SSL"] = "强制所有链接使用 SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "自签证书,只在本地链接使用 SSL(不推荐)"; +$a->strings["Base settings"] = ""; +$a->strings["SSL link policy"] = "SSL环节方针"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "决定产生的链接是否应该强制使用 SSL"; +$a->strings["Host name"] = "服务器名"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = ""; +$a->strings["Base path to installation"] = "基础安装路线"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "如果您的系统无法为您检测到正确的安装路径,请在这里输入正确的路径。此配置仅在您使用设有限制的系统时符号链接到网页服务器根目录使用。"; +$a->strings["Sub path of the URL"] = ""; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = ""; +$a->strings["Database connection"] = "数据库接通"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。"; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。"; +$a->strings["Database Server Name"] = "数据库服务器名"; +$a->strings["Database Login Name"] = "数据库登录名"; +$a->strings["Database Login Password"] = "数据库登录密码"; +$a->strings["For security reasons the password must not be empty"] = "由于安全的原因,密码不能为空"; +$a->strings["Database Name"] = "数据库名字"; +$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区"; +$a->strings["Site settings"] = "网站设置"; +$a->strings["Site administrator email address"] = "网站行政人员邮件地址"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板"; +$a->strings["System Language:"] = "系统语言:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "为 Friendica 安装界面及邮件发送设置默认语言。"; +$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。"; +$a->strings["Installation finished"] = ""; +$a->strings["

What next

"] = "

下步是什么

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; +$a->strings["- select -"] = "-选择-"; +$a->strings["Item was not removed"] = ""; +$a->strings["Item was not deleted"] = ""; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "摇隐私信息无效"; +$a->strings["Visible to:"] = "可见方:"; +$a->strings["Manage Identities and/or Pages"] = "管理身份或页"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "交替不同同一人或社会/组页合用您的账户或给您「管理」批准"; +$a->strings["Select an identity to manage: "] = "选择同一个人管理:"; +$a->strings["Local Community"] = "本地社区"; +$a->strings["Posts from local users on this server"] = ""; +$a->strings["Global Community"] = "全球社区"; +$a->strings["Posts from users of the whole federated network"] = ""; +$a->strings["No results."] = "没有结果。"; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "此社区流显示此节点接收到的所有公共帖子。它们可能无法反映此节点用户的意见。"; +$a->strings["Community option not available."] = "社区选项不可用。"; +$a->strings["Not available."] = "不可用的"; +$a->strings["Welcome to Friendica"] = "Friendica欢迎你"; +$a->strings["New Member Checklist"] = "新成员清单"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "我们想提供一些建议和链接以助于让你有愉快的经历。点击任意一项访问相应的网页。在你注册之后,到这个页面的链接会在你的主页显示两周,之后悄声地消失。"; +$a->strings["Getting Started"] = "入门"; +$a->strings["Friendica Walk-Through"] = "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."] = "在你的快速上手页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。"; +$a->strings["Go to Your Settings"] = "您的设置"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "在你的设置页 - 改变你最初的密码。同时也记住你的身份地址。这看起来像一个电子邮件地址 - 并且在这个自由的社交网络交友时会有用。"; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "校对别的设置,特别是隐私设置。一个未发布的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"; +$a->strings["Upload Profile Photo"] = "上传简介照片"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"; +$a->strings["Edit Your Profile"] = "编辑您的简介"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。"; +$a->strings["Profile Keywords"] = "简介关键字"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "为你的个人资料设置一些描述你兴趣的公共关键字。我们也许能找到其他有相似兴趣的人,并建议结交朋友。"; +$a->strings["Connecting"] = "连接着"; +$a->strings["Importing Emails"] = "正在导入邮件"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。"; +$a->strings["Go to Your Contacts Page"] = "转到您的联系人页面"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。"; +$a->strings["Go to Your Site's Directory"] = "您网站的目录"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "目录页让你在这个网络或者其他的联邦的站点找到其他人。在他们的简介页找一个连接关注链接。如果需要,提供你自己的身份地址。"; +$a->strings["Finding New People"] = "找新人"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。"; +$a->strings["Groups"] = "群组"; +$a->strings["Group Your Contacts"] = "给你的联系人分组"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。"; +$a->strings["Why Aren't My Posts Public?"] = "我文章怎么没公开的?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。"; +$a->strings["Getting Help"] = "获取帮助"; +$a->strings["Go to the Help Section"] = "看帮助部分"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "我们帮助页可查阅到详情关于别的编程特点和资源。"; +$a->strings["This page is missing a url parameter."] = ""; +$a->strings["The post was created"] = "文章创建了"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "资料"; +$a->strings["Overview"] = "概览"; +$a->strings["Federation Statistics"] = "联邦网络统计"; +$a->strings["Configuration"] = "配置"; +$a->strings["Site"] = "网站"; +$a->strings["Users"] = "用户"; +$a->strings["Addons"] = "插件"; +$a->strings["Themes"] = "主题"; +$a->strings["Additional features"] = "附加功能"; +$a->strings["Database"] = "数据库"; +$a->strings["DB updates"] = "数据库更新"; +$a->strings["Inspect Deferred Workers"] = ""; +$a->strings["Inspect worker Queue"] = ""; +$a->strings["Tools"] = "工具"; +$a->strings["Contact Blocklist"] = "联系人屏蔽列表"; +$a->strings["Server Blocklist"] = "服务器屏蔽列表"; +$a->strings["Delete Item"] = "删除项目"; +$a->strings["Logs"] = "记录"; +$a->strings["View Logs"] = "查看日志"; +$a->strings["Diagnostics"] = "诊断"; +$a->strings["PHP Info"] = "PHP Info"; +$a->strings["probe address"] = "探测地址"; +$a->strings["check webfinger"] = "检查 webfinger"; +$a->strings["Item Source"] = ""; +$a->strings["Babel"] = ""; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "管理"; +$a->strings["Addon Features"] = "插件特性"; +$a->strings["User registrations waiting for confirmation"] = "用户注册等确认"; +$a->strings["%d contact edited."] = [ + 0 => "%d 个联系人被编辑了。", +]; +$a->strings["Could not access contact record."] = "无法访问联系人记录。"; +$a->strings["Follow"] = "关注"; +$a->strings["Unfollow"] = "取消关注"; +$a->strings["Contact not found"] = "没有找到联系人"; +$a->strings["Contact has been blocked"] = "联系人已被屏蔽"; +$a->strings["Contact has been unblocked"] = "联系人已被解除屏蔽"; +$a->strings["Contact has been ignored"] = "联系人已被忽视"; +$a->strings["Contact has been unignored"] = "联系人已被解除忽视"; +$a->strings["Contact has been archived"] = "联系人已存档"; +$a->strings["Contact has been unarchived"] = "联系人已被解除存档"; +$a->strings["Drop contact"] = "删除联系人"; +$a->strings["Do you really want to delete this contact?"] = "您真的想删除这个联系人吗?"; +$a->strings["Contact has been removed."] = "联系人被删除了。"; +$a->strings["You are mutual friends with %s"] = "您和 %s 互为好友"; +$a->strings["You are sharing with %s"] = "你正在和 %s 分享"; +$a->strings["%s is sharing with you"] = "%s 正在和你分享"; +$a->strings["Private communications are not available for this contact."] = "此联系人无法使用私人通信"; +$a->strings["Never"] = "从未"; +$a->strings["(Update was successful)"] = "(更新成功)"; +$a->strings["(Update was not successful)"] = "(更新不成功)"; +$a->strings["Suggest friends"] = "建议朋友们"; +$a->strings["Network type: %s"] = "网络种类: %s"; +$a->strings["Communications lost with this contact!"] = "和这个联系人的通信断开了!"; +$a->strings["Fetch further information for feeds"] = "获取来源的更多信息"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "从订阅源项获取预览图片、标题和摘要等信息。如果feed不包含太多文本,可以激活它。关键字取自提要项中的meta头,并作为散列标记发布。"; +$a->strings["Disabled"] = "已停用"; +$a->strings["Fetch information"] = "取消息"; +$a->strings["Fetch keywords"] = "获取关键字"; +$a->strings["Fetch information and keywords"] = "取消息和关键词"; +$a->strings["Contact Information / Notes"] = "联系人信息/便条"; +$a->strings["Contact Settings"] = "联系人设置"; +$a->strings["Contact"] = "联系人"; +$a->strings["Their personal note"] = "他们的个人记录"; +$a->strings["Edit contact notes"] = "编辑联系人便条"; +$a->strings["Visit %s's profile [%s]"] = "看%s的简介[%s]"; +$a->strings["Block/Unblock contact"] = "屏蔽/解除屏蔽联系人"; +$a->strings["Ignore contact"] = "忽略联系人"; +$a->strings["View conversations"] = "看交流"; +$a->strings["Last update:"] = "上个更新:"; +$a->strings["Update public posts"] = "更新公开文章"; +$a->strings["Update now"] = "现在更新"; +$a->strings["Unblock"] = "解除屏蔽"; +$a->strings["Unignore"] = "取消忽视"; +$a->strings["Currently blocked"] = "现在被封禁的"; +$a->strings["Currently ignored"] = "现在不理的"; +$a->strings["Currently archived"] = "当前已存档"; +$a->strings["Awaiting connection acknowledge"] = "等待连接确认"; +$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["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "选择“FETCH INFORMATION AND KEYS”时,不应转换为哈希标签的关键字的逗号分隔列表"; +$a->strings["Actions"] = "操作"; +$a->strings["All Contacts"] = "所有联系人"; +$a->strings["Show all contacts"] = "显示所有的联系人"; +$a->strings["Pending"] = "待定"; +$a->strings["Only show pending contacts"] = "仅显示待定的联系人"; +$a->strings["Blocked"] = "被屏蔽的"; +$a->strings["Only show blocked contacts"] = "只显示被屏蔽的联系人"; +$a->strings["Ignored"] = "忽视的"; +$a->strings["Only show ignored contacts"] = "只显示忽略的联系人"; +$a->strings["Archived"] = "已存档"; +$a->strings["Only show archived contacts"] = "只显示已存档联系人"; +$a->strings["Hidden"] = "隐藏的"; +$a->strings["Only show hidden contacts"] = "只显示隐藏的联系人"; +$a->strings["Organize your contact groups"] = "组织你的联络群组"; +$a->strings["Search your contacts"] = "搜索您的联系人"; +$a->strings["Results for: %s"] = ""; +$a->strings["Archive"] = "存档"; +$a->strings["Unarchive"] = "从存档拿来"; +$a->strings["Batch Actions"] = "批量操作"; +$a->strings["Conversations started by this contact"] = "此联系人开始的对话"; +$a->strings["Posts and Comments"] = ""; +$a->strings["Profile Details"] = "个人资料内容"; +$a->strings["View all contacts"] = "查看所有联系人"; +$a->strings["View all common friends"] = "查看所有公共好友"; +$a->strings["Advanced Contact Settings"] = "高级联系人设置"; +$a->strings["Mutual Friendship"] = "互为好友"; +$a->strings["is a fan of yours"] = "是你的粉丝"; +$a->strings["you are a fan of"] = "您已关注"; +$a->strings["Pending outgoing contact request"] = "挂起的传出联系人请求"; +$a->strings["Pending incoming contact request"] = "挂起的传入联系人请求"; +$a->strings["Refetch contact data"] = "重新获取联系人数据"; +$a->strings["Toggle Blocked status"] = "切换屏蔽状态"; +$a->strings["Toggle Ignored status"] = "交替忽视现状"; +$a->strings["Toggle Archive status"] = "交替档案现状"; +$a->strings["Delete contact"] = "删除联系人"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "该数据是通信所必需的,并且被传递到通信伙伴的节点并存储在那里。用户可以输入可传输到通信伙伴帐户的附加私人数据。"; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["Privacy Statement"] = "隐私声明"; +$a->strings["Help:"] = "帮助:"; +$a->strings["Method Not Allowed."] = ""; +$a->strings["Profile not found"] = ""; +$a->strings["Total invitation limit exceeded."] = "邀请限超过了。"; +$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址."; +$a->strings["Please join us on Friendica"] = "请加入我们再Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "邀请限超过了。请联系您的网站管理员。"; +$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。"; +$a->strings["%d message sent."] = [ + 0 => "%d消息传送了。", +]; +$a->strings["You have no more invitations available"] = "您没有别的邀请"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。"; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "为接受这个邀请,请再%s或什么别的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."] = "Friendica 站点互相连接来创建一个增强隐私的由他们的成员拥有并控制的社交网络。它们也能跟多传统的社交网络连接。看 %s 来获取一份你可以选择加入的 Friendica 站点。"; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"; +$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."] = "各 Friendica 站点相互连接以创造出一个由其组成成员控制拥有的有强大隐私保护能力的大型社交网络。各站点同时也能够接入许多传统社交网络。"; +$a->strings["To accept this invitation, please visit and register at %s."] = "要接受这个邀请,请在 %s 访问并注册。"; +$a->strings["Send invitations"] = "发请柬"; +$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "在 Friendica,你被诚挚地邀请来加入我和其他亲密的朋友-并帮助我们创建更好的社会网络。"; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "欲了解更多关于 Friendica 项目的信息以及为什么我们认为这很重要,请访问 http://friendi.ca"; +$a->strings["People Search - %s"] = "搜索人 - %s"; +$a->strings["Forum Search - %s"] = "搜索论坛 - %s"; +$a->strings["Disable"] = "停用"; +$a->strings["Enable"] = "使能用"; +$a->strings["Theme %s disabled."] = ""; +$a->strings["Theme %s successfully enabled."] = ""; +$a->strings["Theme %s failed to install."] = ""; +$a->strings["Screenshot"] = "截图"; +$a->strings["Administration"] = "管理"; +$a->strings["Toggle"] = "肘节"; +$a->strings["Author: "] = "作者:"; +$a->strings["Maintainer: "] = "维护者:"; +$a->strings["Unknown theme."] = ""; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "重载活动的主题"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "未在系统中发现主题。它们应该被放置在 %1\$s"; +$a->strings["[Experimental]"] = "[试验]"; +$a->strings["[Unsupported]"] = "[没支持]"; +$a->strings["Lock feature %s"] = "锁定特性 %s"; +$a->strings["Manage Additional Features"] = "管理附加功能"; +$a->strings["%s user blocked"] = [ + 0 => "%s用户被屏蔽了", +]; +$a->strings["%s user unblocked"] = [ + 0 => "%s用户已解除屏蔽", +]; +$a->strings["You can't remove yourself"] = "你不能把你自己移除"; +$a->strings["%s user deleted"] = [ + 0 => "%s 用户被删除了", +]; +$a->strings["%s user approved"] = [ + 0 => "", +]; +$a->strings["%s registration revoked"] = [ + 0 => "", +]; +$a->strings["User \"%s\" deleted"] = ""; +$a->strings["User \"%s\" blocked"] = ""; +$a->strings["User \"%s\" unblocked"] = ""; +$a->strings["Account approved."] = "账户已被批准。"; +$a->strings["Registration revoked"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Relay"] = ""; +$a->strings["Email"] = "电子邮件"; +$a->strings["Register date"] = "注册日期"; +$a->strings["Last login"] = "上次登录"; +$a->strings["Last public item"] = ""; +$a->strings["Type"] = ""; +$a->strings["Add User"] = "添加用户"; +$a->strings["select all"] = "全选"; +$a->strings["User registrations waiting for confirm"] = "用户注册等待确认"; +$a->strings["User waiting for permanent deletion"] = "用户等待长久删除"; +$a->strings["Request date"] = "要求日期"; +$a->strings["No registrations."] = "没有注册。"; +$a->strings["Note from the user"] = ""; +$a->strings["Deny"] = "否定"; +$a->strings["User blocked"] = ""; +$a->strings["Site admin"] = "网站管理员"; +$a->strings["Account expired"] = "帐户过期了"; +$a->strings["New User"] = "新用户"; +$a->strings["Permanent deletion"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"; +$a->strings["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["Inspect Deferred Worker Queue"] = ""; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = ""; +$a->strings["Inspect Worker Queue"] = ""; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = ""; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = ""; +$a->strings["Created"] = "已创建"; +$a->strings["Priority"] = ""; +$a->strings["Update has been marked successful"] = "更新当成功标签了"; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = "执行 %s 失败,错误:%s"; +$a->strings["Update %s was successfully applied."] = "把%s更新成功地实行。"; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "%s更新没回答现状。不知道是否成功。"; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "没有不通过地更新。"; +$a->strings["Check database structure"] = "检查数据库结构"; +$a->strings["Failed Updates"] = "没通过的更新"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "这个不包括1139号更新之前,它们没回答装线。"; +$a->strings["Mark success (if update was manually applied)"] = "标注成功(如果手动地把更新实行了)"; +$a->strings["Attempt to execute this update step automatically"] = "试图自动地把这步更新实行"; +$a->strings["Other"] = "别的"; +$a->strings["unknown"] = "未知"; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; +$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = ""; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "打开 %1\$s 日志文件出错。\\r\\n
请检查 %1\$s 文件是否存在并且可读。"; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "无法打开 %1\$s 日志文件。\\r\\n
请检查 %1\$s 文件是否可读。"; +$a->strings["The logfile '%s' is not writable. No logging possible"] = ""; +$a->strings["PHP log currently enabled."] = "PHP 日志已启用。"; +$a->strings["PHP log currently disabled."] = "PHP 日志已禁用。"; +$a->strings["Clear"] = "清理出"; +$a->strings["Enable Debugging"] = "启用调试"; +$a->strings["Log file"] = "日志文件"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "必要被网页服务器可写的。相对Friendica主文件夹。"; +$a->strings["Log level"] = "日志级别"; +$a->strings["PHP logging"] = "PHP 日志"; +$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "要临时启用PHP错误和警告的日志记录,您可以在安装的index.php文件中添加以下内容。“ERROR_LOG”行中设置的文件名相对于Friendica顶级目录,并且必须可由Web服务器写入。“LOG_ERROR”和“DISPLAY_ERROR”的选项“1”用于启用这些选项,设置为“0”将禁用它们。"; +$a->strings["Can not parse base url. Must have at least ://"] = "不能分析基础URL。至少要://"; +$a->strings["Relocation started. Could take a while to complete."] = ""; +$a->strings["Invalid storage backend setting value."] = ""; +$a->strings["No special theme for mobile devices"] = "没专门适合手机的主题"; +$a->strings["%s - (Experimental)"] = "%s - (实验性)"; +$a->strings["No community page for local users"] = ""; +$a->strings["No community page"] = "没有社会页"; +$a->strings["Public postings from users of this site"] = "本网站用户的公开文章"; +$a->strings["Public postings from the federated network"] = ""; +$a->strings["Public postings from local users and the federated network"] = ""; +$a->strings["Multi user instance"] = "多用户网站"; +$a->strings["Closed"] = "关闭"; +$a->strings["Requires approval"] = "要批准"; +$a->strings["Open"] = "打开"; +$a->strings["Don't check"] = "请勿检查"; +$a->strings["check the stable version"] = "检查稳定版"; +$a->strings["check the development version"] = "检查开发版本"; +$a->strings["none"] = ""; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; +$a->strings["Database (legacy)"] = ""; +$a->strings["Republish users to directory"] = ""; +$a->strings["File upload"] = "文件上传"; +$a->strings["Policies"] = "政策"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "性能"; +$a->strings["Worker"] = ""; +$a->strings["Message Relay"] = "讯息中继"; +$a->strings["Relocate Instance"] = "迁移实例"; +$a->strings["Warning! Advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "网页名字"; +$a->strings["Sender Email"] = "寄主邮件"; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = "标题/标志"; +$a->strings["Email Banner/Logo"] = ""; +$a->strings["Shortcut icon"] = "捷径小图片"; +$a->strings["Link to an icon that will be used for browsers."] = "指向将用于浏览器的图标的链接。"; +$a->strings["Touch icon"] = "触摸小图片"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "链接到将用于平板电脑和移动设备的图标。"; +$a->strings["Additional Info"] = "别的消息"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = ""; +$a->strings["System language"] = "系统语言"; +$a->strings["System theme"] = "系统主题"; +$a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = ""; +$a->strings["Mobile system theme"] = "手机系统主题"; +$a->strings["Theme for mobile devices"] = "用于移动设备的主题"; +$a->strings["Force SSL"] = "强制使用 SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环"; +$a->strings["Hide help entry from navigation menu"] = "在导航菜单隐藏帮助条目"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "在导航菜单中隐藏帮助页面的菜单条目。您仍然可以通过输入「/help」直接访问。"; +$a->strings["Single user instance"] = "单用户网站"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "弄这网站多用户或单用户为选择的用户"; +$a->strings["File storage backend"] = ""; +$a->strings["The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you do not do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure."] = "用于存储上载数据的后端。如果更改存储后端,则可以手动移动现有文件。如果不这样做,则在更改之前上载的文件仍将在旧后端可用。有关选择和移动过程的详细信息,请参阅设置文档。"; +$a->strings["Maximum image size"] = "图片最大尺寸"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "最多上传照相的字节。默认是零,意思是无限。"; +$a->strings["Maximum image length"] = "最大图片大小"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "最多像素在上传图片的长度。默认-1,意思是无限。"; +$a->strings["JPEG image quality"] = "JPEG 图片质量"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "上传的JPEG被用这质量[0-100]保存。默认100,最高。"; +$a->strings["Register policy"] = "注册政策"; +$a->strings["Maximum Daily Registrations"] = "一天最多注册"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。"; +$a->strings["Register text"] = "注册正文"; +$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = ""; +$a->strings["Forbidden Nicknames"] = ""; +$a->strings["Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142."] = ""; +$a->strings["Accounts abandoned after x days"] = "账户丢弃X天后"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"; +$a->strings["Allowed friend domains"] = "允许的朋友域"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。"; +$a->strings["Allowed email domains"] = "允许的电子邮件域"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。"; +$a->strings["No OEmbed rich content"] = ""; +$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "不显示丰富内容(例如嵌入式PDF),除非来自下面列出的域。"; +$a->strings["Allowed OEmbed domains"] = ""; +$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = ""; +$a->strings["Block public"] = "阻止公开"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = "强行发布"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "让所有这网站的的简介表明在网站目录。"; +$a->strings["Enabling this may violate privacy laws like the GDPR"] = "启用此项可能会违反隐私法律,譬如 GDPR 等"; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Private posts by default for new users"] = "新用户默认写私人文章"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "默认新用户文章批准使默认隐私组,没有公开。"; +$a->strings["Don't include post content in email notifications"] = "别包含文章内容在邮件消息"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。"; +$a->strings["Disallow public access to addons listed in the apps menu."] = "不允许插件的公众使用权在应用选单。"; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "复选这个框为把应用选内插件限制仅成员"; +$a->strings["Don't embed private images in posts"] = "别嵌入私人图案在文章里"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "不要将帖子中本地托管的私人照片替换为嵌入的图像副本。这意味着,收到包含私人照片的帖子的联系人将不得不验证并加载每张图像,这可能需要一段时间。"; +$a->strings["Explicit Content"] = ""; +$a->strings["Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page."] = "设置此选项以通知您的节点主要用于可能不适合未成年人的显式内容。此信息将在节点信息中发布,并且可能被(例如)全局目录用来从要加入的节点列表中过滤您的节点。此外,用户注册页面上将显示有关此问题的说明。"; +$a->strings["Allow Users to set 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"] = "阻止多次注册"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "不允许用户注册别的账户为当页。"; +$a->strings["Disable OpenID"] = ""; +$a->strings["Disable OpenID support for registration and logins."] = ""; +$a->strings["No Fullname check"] = ""; +$a->strings["Allow users to register without a space between the first name and the last name in their full name."] = ""; +$a->strings["Community pages for visitors"] = ""; +$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = ""; +$a->strings["Posts per user on community page"] = "个用户文章数量在社会页"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for \"Global Community\")"] = ""; +$a->strings["Disable OStatus support"] = "禁用OStatus支持"; +$a->strings["Disable 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 support can only be enabled if threading is enabled."] = "只有在启用线程时才能启用OStatus支持。"; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora 支持无法启用,因为 Friendica 被安装到了一个子目录。"; +$a->strings["Enable Diaspora support"] = "启用 Diaspora 支持"; +$a->strings["Provide built-in Diaspora network compatibility."] = "提供内置的 Diaspora 网络兼容性。"; +$a->strings["Only allow Friendica contacts"] = "只允许 Friendica 联系人"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "所有联系人必须使用 Friendica 协议 。所有其他内置沟通协议都已停用。"; +$a->strings["Verify SSL"] = "验证 SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。"; +$a->strings["Proxy user"] = "代理用户"; +$a->strings["Proxy URL"] = "代理URL"; +$a->strings["Network timeout"] = "网络超时"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "输入秒数。输入零为无限(不推荐的)。"; +$a->strings["Maximum Load Average"] = "最大平均负荷"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default %d."] = "延迟传递和轮询过程之前的最大系统负载-默认值%d。"; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "前端退出服务之前的最大系统负载-默认值为50。"; +$a->strings["Minimal Memory"] = "最少内存"; +$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; +$a->strings["Days between requery"] = "重新查询间隔天数"; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = "从其他服务器上发现联系人"; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; +$a->strings["Search the local directory"] = "搜索本地目录"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "搜索本地目录,而不是全局目录。在本地搜索时,每次搜索都将在后台对全局目录执行。这会在重复搜索时改进搜索结果。"; +$a->strings["Publish server information"] = "发布服务器信息"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "如果启用,将发布常规服务器和使用数据。这些数据包括服务器的名称和版本、拥有公共配置文件的用户数量、帖子数量以及激活的协议和连接器。有关详细信息,请参阅-the-federation.info。"; +$a->strings["Check upstream version"] = "检查上游版本"; +$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。"; +$a->strings["Suppress Tags"] = "压制标签"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "不在文章末尾显示主题标签列表。"; +$a->strings["Clean database"] = "清理数据库"; +$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = "从一些其他帮助器表中删除旧的远程项目、孤立的数据库记录和旧内容。"; +$a->strings["Lifespan of remote items"] = "远程项目的使用期限"; +$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = "启用数据库清理后,这将定义删除远程项目的天数。自己的物品,标记或归档的物品总是保存着。0禁用此行为。"; +$a->strings["Lifespan of unclaimed items"] = "无人认领物品的寿命"; +$a->strings["When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."] = ""; +$a->strings["Lifespan of raw conversation data"] = ""; +$a->strings["The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days."] = ""; +$a->strings["Path to item cache"] = "路线到项目缓存"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = "缓存时间秒"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。"; +$a->strings["Maximum numbers of comments per post"] = "文件最多评论"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; +$a->strings["Temp path"] = "临时文件路线"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "如果您有受限制的系统,其中Web服务器无法访问系统临时路径,请在此处输入其他路径。"; +$a->strings["Disable picture proxy"] = "停用图片代理"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "图片代理提高了性能和私密性。它不应该用于带宽非常低的系统。"; +$a->strings["Only search in tags"] = "只在标签项内搜索"; +$a->strings["On large systems the text search can slow down the system extremely."] = "在大型系统中,正文搜索会极大降低系统运行速度。"; +$a->strings["New base url"] = "新基础URL"; +$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "更改此服务器的URL。向所有用户的所有Friendica和Diaspora*联系人发送迁移消息。"; +$a->strings["RINO Encryption"] = "RINO 加密"; +$a->strings["Encryption layer between nodes."] = "节点之间的加密层。"; +$a->strings["Enabled"] = "已启用"; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = ""; +$a->strings["Don't use \"proc_open\" with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = "如果您的系统不允许使用“proc_open”,请启用此选项。这可能发生在共享主机上。如果启用此功能,则应在crontab中增加工作进程调用的频率。"; +$a->strings["Enable fastlane"] = "启用快车道模式"; +$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; +$a->strings["Enable frontend worker"] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = ""; +$a->strings["Subscribe to relay"] = ""; +$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = ""; +$a->strings["Relay server"] = "中继服务器"; +$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = ""; +$a->strings["Direct relay transfer"] = ""; +$a->strings["Enables the direct transfer to other servers without using the relay servers"] = ""; +$a->strings["Relay scope"] = ""; +$a->strings["Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received."] = ""; +$a->strings["all"] = "所有"; +$a->strings["tags"] = ""; +$a->strings["Server tags"] = ""; +$a->strings["Comma separated list of tags for the \"tags\" subscription."] = ""; +$a->strings["Allow user tags"] = ""; +$a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = ""; +$a->strings["Start Relocation"] = ""; +$a->strings["Template engine (%s) error: %s"] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; +$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "有新的 Friendica 版本可供下载。您当前的版本为 %1\$s,上游版本为 %2\$s"; +$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = ""; +$a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = ""; +$a->strings["The worker was never executed. Please check your database structure!"] = ""; +$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = ""; +$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition."] = ""; +$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition."] = ""; +$a->strings["%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."] = ""; +$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = ""; +$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = ""; +$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = ""; +$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = ""; +$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = ""; +$a->strings["Normal Account"] = "正常帐户"; +$a->strings["Automatic Follower Account"] = ""; +$a->strings["Public Forum Account"] = "公开论坛帐号"; +$a->strings["Automatic Friend Account"] = "自动朋友帐户"; +$a->strings["Blog Account"] = "博客账户"; +$a->strings["Private Forum Account"] = ""; +$a->strings["Message queues"] = "通知排队"; +$a->strings["Server Settings"] = ""; +$a->strings["Registered users"] = "注册的用户"; +$a->strings["Pending registrations"] = "待定的注册"; +$a->strings["Version"] = "版本"; +$a->strings["Active addons"] = "激活插件"; +$a->strings["Display Terms of Service"] = "显示服务条款"; +$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "启用服务条款页面。如果启用此功能,则会在注册表和常规信息页面中添加一个条款链接。"; +$a->strings["Display Privacy Statement"] = "显示隐私说明"; +$a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = ""; +$a->strings["Privacy Statement Preview"] = "隐私声明预览"; +$a->strings["The Terms of Service"] = "服务条款"; +$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "在这里输入节点的服务条款。你可以使用 BBCode。节的标题应该是[ h2]及以下。"; +$a->strings["Server domain pattern added to blocklist."] = ""; +$a->strings["Blocked server domain pattern"] = ""; +$a->strings["Reason for the block"] = "封禁原因"; +$a->strings["Delete server domain pattern"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = "选中以从列表中删除此条目"; +$a->strings["Server Domain Pattern Blocklist"] = ""; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; +$a->strings["Add new entry to block list"] = "添加新条目到屏蔽列表"; +$a->strings["Server Domain Pattern"] = ""; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = "封禁原因"; +$a->strings["The reason why you blocked this server domain pattern."] = ""; +$a->strings["Add Entry"] = "添加条目"; +$a->strings["Save changes to the blocklist"] = "保存变更到屏蔽列表"; +$a->strings["Current Entries in the Blocklist"] = "屏蔽列表中的当前条目"; +$a->strings["Delete entry from blocklist"] = "删除屏蔽列表中的条目"; +$a->strings["Delete entry from blocklist?"] = "从屏蔽列表删除条目?"; +$a->strings["%s contact unblocked"] = [ + 0 => "", +]; +$a->strings["Remote Contact Blocklist"] = ""; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = ""; +$a->strings["Block Remote Contact"] = ""; +$a->strings["select none"] = ""; +$a->strings["No remote contact is blocked from this node."] = ""; +$a->strings["Blocked Remote Contacts"] = ""; +$a->strings["Block New Remote Contact"] = ""; +$a->strings["Photo"] = "照片"; +$a->strings["Reason"] = ""; +$a->strings["%s total blocked contact"] = [ + 0 => "", +]; +$a->strings["URL of the remote contact to block."] = ""; +$a->strings["Block Reason"] = ""; +$a->strings["Item Guid"] = ""; +$a->strings["Item marked for deletion."] = "被标记为要删除的项目。"; +$a->strings["Delete this Item"] = "删除这个项目"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = ""; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = ""; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "你想要删除的项目的 GUID."; +$a->strings["Addon not found."] = ""; +$a->strings["Addon %s disabled."] = "插件 %s 已禁用。"; +$a->strings["Addon %s enabled."] = "插件 %s 已启用。"; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = ""; +$a->strings["Reload active addons"] = "重新加载可用插件"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "目前您的节点上没有可用插件。您可以在 %1\$s 找到官方插件库,或者到开放的插件登记处 %2\$s 也能找到其他有趣的插件"; +$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。"; +$a->strings["Find on this site"] = "找在这网站"; +$a->strings["Results for:"] = "结果:"; +$a->strings["Site Directory"] = "站点目录"; +$a->strings["Item was not found."] = "找不到项目。"; +$a->strings["Please enter a post body."] = ""; +$a->strings["This feature is only available with the frio theme."] = ""; +$a->strings["Compose new personal note"] = ""; +$a->strings["Compose new post"] = ""; +$a->strings["Visibility"] = ""; +$a->strings["Clear the location"] = ""; +$a->strings["Location services are unavailable on your device"] = ""; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = ""; +$a->strings["Installed addons/apps:"] = "已安装的插件/应用:"; +$a->strings["No installed addons/apps"] = "没有已安装的插件或应用"; +$a->strings["Read about the Terms of Service of this node."] = "阅读此节点的服务条款。"; +$a->strings["On this server the following remote servers are blocked."] = "在这个服务器上以下远程服务器被封禁了。"; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "这是Friendica,版本为%s在此网站上运行的地址为%s。数据库版本为%s,更新后发布版本为%s。"; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "请浏览 Friendi.ca 以了解更多关于 Friendica 项目的信息。"; +$a->strings["Bug reports and issues: please visit"] = "Bug 及 issues 报告:请访问"; +$a->strings["the bugtracker at github"] = "在 github 上的错误追踪系统"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; +$a->strings["Only You Can See This"] = "只有你可以看这个"; +$a->strings["Tips for New Members"] = "新人建议"; +$a->strings["The Photo with id %s is not available."] = ""; +$a->strings["Invalid photo with id %s."] = ""; +$a->strings["The provided profile link doesn't seem to be valid"] = "提供的个人资料链接似乎无效"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; +$a->strings["Account"] = "帐户"; +$a->strings["Display"] = "显示"; +$a->strings["Manage Accounts"] = "管理帐号"; +$a->strings["Connected apps"] = "已连接的应用程序"; +$a->strings["Export personal data"] = "导出个人信息"; +$a->strings["Remove account"] = "删除账户"; +$a->strings["Could not create group."] = "无法创建群组。"; +$a->strings["Group not found."] = "组找不到。"; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = ""; +$a->strings["Contact is deleted."] = ""; +$a->strings["Unable to add the contact to the group."] = ""; +$a->strings["Contact successfully added to group."] = ""; +$a->strings["Unable to remove the contact from the group."] = ""; +$a->strings["Contact successfully removed from group."] = ""; +$a->strings["Unknown group command."] = ""; +$a->strings["Bad request."] = ""; +$a->strings["Save Group"] = "保存组"; +$a->strings["Filter"] = ""; +$a->strings["Create a group of contacts/friends."] = "创建一组联系人/朋友。"; +$a->strings["Group Name: "] = "组名:"; +$a->strings["Contacts not in any group"] = "不在任何组的联系人"; +$a->strings["Unable to remove group."] = "不能删除组。"; +$a->strings["Delete Group"] = "删除群组"; +$a->strings["Edit Group Name"] = "编辑群组名称"; +$a->strings["Members"] = "成员"; +$a->strings["Remove contact from group"] = ""; +$a->strings["Click on a contact to add or remove."] = "单击联系人以添加或删除。"; +$a->strings["Add contact to group"] = ""; +$a->strings["Only logged in users are permitted to perform a search."] = "只有已登录的用户被允许进行搜索。"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "对未登录的用户,每分钟只允许一条搜索。"; +$a->strings["Search"] = "搜索"; +$a->strings["Items tagged with: %s"] = "项目标记为:%s"; +$a->strings["You must be logged in to use this module."] = ""; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = ""; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "无简介"; +$a->strings["Error while sending poke, please retry."] = ""; +$a->strings["Poke/Prod"] = "戳"; +$a->strings["poke, prod or do other things to somebody"] = "把人家戳或别的行动"; +$a->strings["Choose what you wish to do to recipient"] = "选择您想把别人作"; +$a->strings["Make this post private"] = "使这个文章私人"; +$a->strings["Contact update failed."] = "联系人更新失败。"; +$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."] = "请立即用后退按钮如果您不确定怎么用这页"; +$a->strings["No mirroring"] = "没有复制"; +$a->strings["Mirror as forwarded posting"] = "复制为传达文章"; +$a->strings["Mirror as my own posting"] = "复制为我自己的文章"; +$a->strings["Return to contact editor"] = "返回到联系人编辑器"; +$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."] = "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。"; +$a->strings["Account Nickname"] = "帐户昵称"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称"; +$a->strings["Account URL"] = "帐户URL"; +$a->strings["Account URL Alias"] = ""; +$a->strings["Friend Request URL"] = "朋友请求URL"; +$a->strings["Friend Confirm URL"] = "朋友确认URL"; +$a->strings["Notification Endpoint URL"] = "通知端URL"; +$a->strings["Poll/Feed URL"] = "喂URL"; +$a->strings["New photo from this URL"] = "新照片从这个URL"; +$a->strings["No installed applications."] = "没有安装的应用"; +$a->strings["Applications"] = "应用"; +$a->strings["Profile Name is required."] = "必要简介名"; +$a->strings["Profile couldn't be updated."] = "无法更新简介"; +$a->strings["Label:"] = "标签:"; +$a->strings["Value:"] = ""; +$a->strings["Field Permissions"] = "字段权限"; +$a->strings["(click to open/close)"] = "(点击来打开/关闭)"; +$a->strings["Add a new profile field"] = ""; +$a->strings["Profile Actions"] = "简介照片操作"; +$a->strings["Edit Profile Details"] = "剪辑简介消息"; +$a->strings["Change Profile Photo"] = "改变简介照片"; +$a->strings["Profile picture"] = "头像"; +$a->strings["Location"] = "位置"; +$a->strings["Miscellaneous"] = "其他"; +$a->strings["Custom Profile Fields"] = "自定义简介字段"; +$a->strings["Display name:"] = "显示名称:"; +$a->strings["Street Address:"] = "地址:"; +$a->strings["Locality/City:"] = "现场/城市:"; +$a->strings["Region/State:"] = "区域/省"; +$a->strings["Postal/Zip Code:"] = "邮政编码:"; +$a->strings["Country:"] = "国家:"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) 地址:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。"; +$a->strings["Homepage URL:"] = "主页URL:"; +$a->strings["Public Keywords:"] = "公开关键字 :"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)"; +$a->strings["Private Keywords:"] = "私人关键字"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)"; +$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = "

自定义字段将显示在您的个人资料页面上。

\n\t\t\t\t

您可以在字段值中使用BBCodes。

\n\n\t\t\t\t

通过拖动字段标题重新排序。

\n\t\t\t\t

清空标签字段以删除自定义字段。

\n\t\t\t\t

非公共字段只能由选定的Friendica联系人或选定组中的Friendica联系人查看。

"; +$a->strings["Image size reduction [%s] failed."] = "图片压缩 [%s] 失败。"; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "如果新照片没有立即显示,请刷新页面或者清除浏览器缓存。"; +$a->strings["Unable to process image"] = "无法处理图像"; +$a->strings["Photo not found."] = ""; +$a->strings["Profile picture successfully updated."] = ""; +$a->strings["Crop Image"] = "修剪照片"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "请调图片剪裁为最好看。"; +$a->strings["Use Image As Is"] = ""; +$a->strings["Missing uploaded image."] = ""; +$a->strings["Profile Picture Settings"] = ""; +$a->strings["Current Profile Picture"] = ""; +$a->strings["Upload Profile Picture"] = ""; +$a->strings["Upload Picture:"] = ""; +$a->strings["or"] = "或者"; +$a->strings["skip this step"] = "略过这步"; +$a->strings["select a photo from your photo albums"] = "从您的照片册选择一片。"; +$a->strings["Delegation successfully granted."] = "委派已成功授予。"; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "找不到父用户、不可用或密码不匹配。"; +$a->strings["Delegation successfully revoked."] = "委派已成功吊销。"; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "委派管理员可以查看但不能更改委派权限。"; +$a->strings["Delegate user not found."] = "找不到委派用户。"; +$a->strings["No parent user"] = "无家长账户"; +$a->strings["Parent User"] = "家长账户"; +$a->strings["Additional Accounts"] = "其他账号"; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "注册自动连接到现有帐号的其他帐号,以便您可以从此帐号管理它们。"; +$a->strings["Register an additional account"] = "注册一个附加帐号"; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "父用户对此帐号拥有完全控制权,包括帐号设置。请仔细检查您授予此访问权限的人员。"; +$a->strings["Delegates"] = "代表"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。"; +$a->strings["Existing Page Delegates"] = "目前页代表"; +$a->strings["Potential Delegates"] = "潜力的代表"; +$a->strings["Add"] = "加"; +$a->strings["No entries."] = "没有项目。"; +$a->strings["Two-factor authentication successfully disabled."] = ""; +$a->strings["Wrong Password"] = "密码不正确"; +$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

使用移动设备上的应用程序在登录时获取两步认证代码

"; +$a->strings["Authenticator app"] = "身份验证应用"; +$a->strings["Configured"] = "配置"; +$a->strings["Not Configured"] = "未配置"; +$a->strings["

You haven't finished configuring your authenticator app.

"] = ""; +$a->strings["

Your authenticator app is correctly configured.

"] = ""; +$a->strings["Recovery codes"] = "恢复码"; +$a->strings["Remaining valid codes"] = ""; +$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = ""; +$a->strings["App-specific passwords"] = ""; +$a->strings["Generated app-specific passwords"] = ""; +$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = ""; +$a->strings["Current password:"] = "当前密码"; +$a->strings["You need to provide your current password to change two-factor authentication settings."] = "您需要提供当前密码才能更改两步身份验证设置。"; +$a->strings["Enable two-factor authentication"] = "启用两步认证"; +$a->strings["Disable two-factor authentication"] = ""; +$a->strings["Show recovery codes"] = ""; +$a->strings["Manage app-specific passwords"] = ""; +$a->strings["Finish app configuration"] = ""; +$a->strings["Please enter your password to access this page."] = ""; +$a->strings["Two-factor authentication successfully activated."] = "成功激活双因素身份验证。"; +$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = ""; +$a->strings["Two-factor code verification"] = "双因素码验证"; +$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = ""; +$a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = ""; +$a->strings["Verify code and enable two-factor authentication"] = "验证码并启用双因素身份验证"; +$a->strings["New recovery codes successfully generated."] = "已成功生成新的恢复代码。"; +$a->strings["Two-factor recovery codes"] = "两步验证码"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "生成新恢复代码时,必须复制新代码。你的旧密码不会再起作用了。"; +$a->strings["Generate new recovery codes"] = "生成新的恢复代码"; +$a->strings["Next: Verification"] = ""; +$a->strings["App-specific password generation failed: The description is empty."] = ""; +$a->strings["App-specific password generation failed: This description already exists."] = ""; +$a->strings["New app-specific password generated."] = ""; +$a->strings["App-specific passwords successfully revoked."] = ""; +$a->strings["App-specific password successfully revoked."] = ""; +$a->strings["Two-factor app-specific passwords"] = ""; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; +$a->strings["Description"] = ""; +$a->strings["Last Used"] = ""; +$a->strings["Revoke"] = "取消"; +$a->strings["Revoke All"] = "全部取消"; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "当您生成特定于应用程序的新密码时,您必须立即使用它,生成密码后会显示给您一次。"; +$a->strings["Generate new app-specific password"] = ""; +$a->strings["Friendiqa on my Fairphone 2..."] = ""; +$a->strings["Generate"] = ""; +$a->strings["The theme you chose isn't available."] = ""; +$a->strings["%s - (Unsupported)"] = "%s - (不支持的)"; +$a->strings["Display Settings"] = "表示设置"; +$a->strings["General Theme Settings"] = "通用主题设置"; +$a->strings["Custom Theme Settings"] = "自定义主题设置"; +$a->strings["Content Settings"] = "内容设置"; +$a->strings["Calendar"] = "日历"; +$a->strings["Display Theme:"] = "显示主题:"; +$a->strings["Mobile Theme:"] = "手机主题:"; +$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["Update browser every xx seconds"] = "更新游览器每XX秒"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "至少 10 秒。输入 -1 禁用。"; +$a->strings["Automatic updates only at the top of the post stream pages"] = "仅在帖子流页面顶部进行自动更新"; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "自动更新可能会在帖子流页面的顶部添加新帖子,如果它发生在页面顶部的其他位置,可能会影响滚动位置并扰乱正常阅读。"; +$a->strings["Don't show emoticons"] = "不显示表情符号"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "通常,表情符号会被匹配的符号替换。此设置禁用此行为。"; +$a->strings["Infinite scroll"] = "无限的滚动"; +$a->strings["Automatic fetch new items when reaching the page end."] = "到达页尾时自动获取新项目。"; +$a->strings["Disable Smart Threading"] = "禁用智能线程"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "禁用自动抑制无关的线程缩进。"; +$a->strings["Hide the Dislike feature"] = "隐藏不喜欢的功能"; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "隐藏“不喜欢”按钮和帖子和评论中的“不喜欢”反应。"; +$a->strings["Beginning of week:"] = "一周的开始:"; +$a->strings["Export account"] = "导出账户"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "导出你的账户信息和联系人。用这个功能来生成一个你的账户的备份,并且/或者把它移到另外一个服务器。"; +$a->strings["Export all"] = "导出全部"; +$a->strings["Export your account 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)"] = "将您的帐户信息、联系人和所有项目导出为json。可能是非常大的文件,并且可能需要很长时间。使用此选项对您的帐户进行完全备份(不导出照片)"; +$a->strings["Export Contacts to CSV"] = "将联系人导出为CSV"; +$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "将您关注的客户列表导出为CSV文件。兼容例如Mastodon。"; +$a->strings["System down for maintenance"] = "系统关闭为了维持"; +$a->strings["%s is now following %s."] = "%s 正在关注 %s."; +$a->strings["following"] = "关注"; +$a->strings["%s stopped following %s."] = "%s 停止关注了 %s."; +$a->strings["stopped following"] = "取消关注"; +$a->strings["Attachments:"] = "附件:"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s 的管理员"; +$a->strings["%s Administrator"] = "%s管理员"; +$a->strings["thanks"] = ""; +$a->strings["Friendica Notification"] = "Friendica 通知"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD 或 MM-DD"; +$a->strings["never"] = "从未"; +$a->strings["less than a second ago"] = "一秒以内"; +$a->strings["year"] = "年"; +$a->strings["years"] = "年"; +$a->strings["months"] = "月"; +$a->strings["weeks"] = "星期"; +$a->strings["days"] = "天"; +$a->strings["hour"] = "小时"; +$a->strings["hours"] = "小时"; +$a->strings["minute"] = "分钟"; +$a->strings["minutes"] = "分钟"; +$a->strings["second"] = "秒"; +$a->strings["seconds"] = "秒"; +$a->strings["in %1\$d %2\$s"] = ""; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前"; +$a->strings["Database storage failed to update %s"] = "数据库存储更新失败%s"; +$a->strings["Database storage failed to insert data"] = "数据库存储无法插入数据"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = ""; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = ""; +$a->strings["Storage base path"] = "存储基本路径"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "保存上传文件的文件夹。为了最大限度的安全,这应该是一个在 web 服务器文件夹树之外的路径 "; +$a->strings["Enter a valid existing folder"] = "输入一个有效的现有文件夹"; +$a->strings["activity"] = "活动"; +$a->strings["post"] = "文章"; +$a->strings["Content warning: %s"] = "内容警告:%s"; +$a->strings["bytes"] = "字节"; +$a->strings["View on separate page"] = "在另一页面中查看"; +$a->strings["view on separate page"] = "在另一页面中查看"; +$a->strings["link to source"] = "来源链接"; +$a->strings["[no subject]"] = "[无题目]"; +$a->strings["UnFollow"] = "取关"; +$a->strings["Drop Contact"] = "删除联系人"; $a->strings["Organisation"] = "组织"; $a->strings["News"] = "新闻"; $a->strings["Forum"] = "论坛"; $a->strings["Connect URL missing."] = "连接URL失踪的。"; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = ""; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "无法添加该联系人。请在您的设置->社交网络页面中检查相关的网络凭据。"; $a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流."; $a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了."; $a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。"; @@ -1038,7 +2102,6 @@ $a->strings["Use mailto: in front of address to force email check."] = "输入ma $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。"; $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。"; $a->strings["Unable to retrieve contact information."] = "无法检索联系人信息。"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Starts:"] = "开始:"; $a->strings["Finishes:"] = "结束:"; $a->strings["all-day"] = "全天"; @@ -1046,66 +2109,20 @@ $a->strings["Sept"] = "九月"; $a->strings["No events to display"] = "没有可显示的事件"; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "编辑事件"; -$a->strings["Duplicate event"] = ""; +$a->strings["Duplicate event"] = "重复事件"; $a->strings["Delete event"] = "删除事件"; -$a->strings["link to source"] = "链接到来源"; $a->strings["D g:i A"] = ""; $a->strings["g:i A"] = ""; $a->strings["Show map"] = "显示地图"; $a->strings["Hide map"] = "隐藏地图"; $a->strings["%s's birthday"] = "%s的生日"; $a->strings["Happy Birthday %s"] = "生日快乐%s"; -$a->strings["Item filed"] = "把项目归档了"; -$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."] = "一个用这个名字的被删掉的组复活了。现有项目的权限可能对这个组和任何未来的成员有效。如果这不是你想要的,请用一个不同的名字创建另一个组。"; -$a->strings["Default privacy group for new contacts"] = "对新联系人的默认隐私组"; -$a->strings["Everybody"] = "每人"; -$a->strings["edit"] = "编辑"; -$a->strings["add"] = "添加"; -$a->strings["Edit group"] = "编辑组"; -$a->strings["Contacts not in any group"] = "不在任何组的联系人"; -$a->strings["Create a new group"] = "创建新组"; -$a->strings["Group Name: "] = "组名:"; -$a->strings["Edit groups"] = "编辑组"; -$a->strings["activity"] = "活动"; -$a->strings["comment"] = [ - 0 => "评论", -]; -$a->strings["post"] = "文章"; -$a->strings["Content warning: %s"] = "内容警告:%s"; -$a->strings["bytes"] = "字节"; -$a->strings["View on separate page"] = "在另一页面中查看"; -$a->strings["view on separate page"] = "在另一页面中查看"; -$a->strings["[no subject]"] = "[无题目]"; -$a->strings["Edit profile"] = "修改简介"; -$a->strings["Change profile photo"] = "更换简介照片"; -$a->strings["Homepage:"] = "主页:"; -$a->strings["About:"] = "关于:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Unfollow"] = ""; -$a->strings["Atom feed"] = "Atom 源"; -$a->strings["Network:"] = "网络"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[今天]"; -$a->strings["Birthday Reminders"] = "提醒生日"; -$a->strings["Birthdays this week:"] = "这周的生日:"; -$a->strings["[No description]"] = "[无描述]"; -$a->strings["Event Reminders"] = "事件提醒"; -$a->strings["Upcoming events the next 7 days:"] = ""; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; -$a->strings["Database storage failed to update %s"] = ""; -$a->strings["Database storage failed to insert data"] = ""; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = ""; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = ""; -$a->strings["Storage base path"] = ""; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = ""; -$a->strings["Enter a valid existing folder"] = ""; $a->strings["Login failed"] = "登录失败"; $a->strings["Not enough information to authenticate"] = "没有足够信息以认证"; -$a->strings["Password can't be empty"] = ""; -$a->strings["Empty passwords are not allowed."] = ""; +$a->strings["Password can't be empty"] = "密码不能是空的"; +$a->strings["Empty passwords are not allowed."] = "不允许使用空密码"; $a->strings["The new password has been exposed in a public data dump, please choose another."] = "新密码已暴露在公共数据转储中,请务必另选密码。"; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = ""; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "(:) 密码不能包含强调字母、空格或冒号(:)"; $a->strings["Passwords do not match. Password unchanged."] = "密码不匹配。密码没改变。"; $a->strings["An invitation is required."] = "需要邀请。"; $a->strings["Invitation could not be verified."] = "不能验证邀请。"; @@ -1138,1169 +2155,145 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Yo $a->strings["Registration at %s"] = "在 %s 的注册"; $a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = ""; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Addon not found."] = ""; -$a->strings["Addon %s disabled."] = "插件 %s 已禁用。"; -$a->strings["Addon %s enabled."] = "插件 %s 已启用。"; -$a->strings["Disable"] = "停用"; -$a->strings["Enable"] = "使能用"; -$a->strings["Administration"] = "管理"; -$a->strings["Addons"] = "插件"; -$a->strings["Toggle"] = "肘节"; -$a->strings["Author: "] = "作者:"; -$a->strings["Maintainer: "] = "维护者:"; -$a->strings["Addon %s failed to install."] = ""; -$a->strings["Reload active addons"] = "重新加载可用插件"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "目前您的节点上没有可用插件。您可以在 %1\$s 找到官方插件库,或者到开放的插件登记处 %2\$s 也能找到其他有趣的插件"; -$a->strings["%s contact unblocked"] = [ - 0 => "", +$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."] = "一个用这个名字的被删掉的组复活了。现有项目的权限可能对这个组和任何未来的成员有效。如果这不是你想要的,请用一个不同的名字创建另一个组。"; +$a->strings["Default privacy group for new contacts"] = "对新联系人的默认隐私组"; +$a->strings["Everybody"] = "每人"; +$a->strings["edit"] = "编辑"; +$a->strings["add"] = "添加"; +$a->strings["Edit group"] = "编辑组"; +$a->strings["Create a new group"] = "创建新组"; +$a->strings["Edit groups"] = "编辑群组"; +$a->strings["Change profile photo"] = "更换简介照片"; +$a->strings["Atom feed"] = "Atom 源"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[今天]"; +$a->strings["Birthday Reminders"] = "提醒生日"; +$a->strings["Birthdays this week:"] = "这周的生日:"; +$a->strings["[No description]"] = "[无描述]"; +$a->strings["Event Reminders"] = "事件提醒"; +$a->strings["Upcoming events the next 7 days:"] = "未来7天即将举行的活动:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +$a->strings["Add New Contact"] = "添加新的联系人"; +$a->strings["Enter address or web location"] = "输入地址或网络位置"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; +$a->strings["Connect"] = "连接"; +$a->strings["%d invitation available"] = [ + 0 => "%d邀请可用的", ]; -$a->strings["Remote Contact Blocklist"] = ""; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = ""; -$a->strings["Block Remote Contact"] = ""; -$a->strings["select all"] = "全选"; -$a->strings["select none"] = ""; -$a->strings["Unblock"] = "解除屏蔽"; -$a->strings["No remote contact is blocked from this node."] = ""; -$a->strings["Blocked Remote Contacts"] = ""; -$a->strings["Block New Remote Contact"] = ""; -$a->strings["Photo"] = "照片"; -$a->strings["Reason"] = ""; -$a->strings["%s total blocked contact"] = [ - 0 => "", +$a->strings["Everyone"] = "所有人"; +$a->strings["Relationships"] = "关系"; +$a->strings["Protocols"] = "协议"; +$a->strings["All Protocols"] = "所有协议"; +$a->strings["Saved Folders"] = "保存的文件夹"; +$a->strings["Everything"] = "一切"; +$a->strings["Categories"] = "种类"; +$a->strings["%d contact in common"] = [ + 0 => "%d 个共同的联系人", ]; -$a->strings["URL of the remote contact to block."] = ""; -$a->strings["Block Reason"] = ""; -$a->strings["Server domain pattern added to blocklist."] = ""; -$a->strings["Site blocklist updated."] = "站点屏蔽列表已更新。"; -$a->strings["Blocked server domain pattern"] = ""; -$a->strings["Reason for the block"] = "封禁原因"; -$a->strings["Delete server domain pattern"] = ""; -$a->strings["Check to delete this entry from the blocklist"] = "选中以从列表中删除此条目"; -$a->strings["Server Domain Pattern Blocklist"] = ""; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; -$a->strings["Add new entry to block list"] = "添加新条目到屏蔽列表"; -$a->strings["Server Domain Pattern"] = ""; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = ""; -$a->strings["Block reason"] = "封禁原因"; -$a->strings["The reason why you blocked this server domain pattern."] = ""; -$a->strings["Add Entry"] = "添加条目"; -$a->strings["Save changes to the blocklist"] = "保存变更到屏蔽列表"; -$a->strings["Current Entries in the Blocklist"] = "屏蔽列表中的当前条目"; -$a->strings["Delete entry from blocklist"] = "删除屏蔽列表中的条目"; -$a->strings["Delete entry from blocklist?"] = "从屏蔽列表删除条目?"; -$a->strings["Update has been marked successful"] = "更新当成功标签了"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = "执行 %s 失败,错误:%s"; -$a->strings["Update %s was successfully applied."] = "把%s更新成功地实行。"; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "%s更新没回答现状。不知道是否成功。"; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "没有不通过地更新。"; -$a->strings["Check database structure"] = "检查数据库结构"; -$a->strings["Failed Updates"] = "没通过的更新"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "这个不包括1139号更新之前,它们没回答装线。"; -$a->strings["Mark success (if update was manually applied)"] = "标注成功(如果手动地把更新实行了)"; -$a->strings["Attempt to execute this update step automatically"] = "试图自动地把这步更新实行"; -$a->strings["Lock feature %s"] = "锁定特性 %s"; -$a->strings["Manage Additional Features"] = "管理附加特性"; -$a->strings["Other"] = "别的"; -$a->strings["unknown"] = "未知"; -$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = ""; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; -$a->strings["Federation Statistics"] = "联邦网络统计"; -$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = ""; -$a->strings["Item marked for deletion."] = "被标记为要删除的项目。"; -$a->strings["Delete Item"] = "删除项目"; -$a->strings["Delete this Item"] = "删除这个项目"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = ""; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = ""; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "你想要删除的项目的 GUID."; -$a->strings["Item Guid"] = ""; -$a->strings["The logfile '%s' is not writable. No logging possible"] = ""; -$a->strings["Log settings updated."] = "日志设置更新了。"; -$a->strings["PHP log currently enabled."] = "PHP 日志已启用。"; -$a->strings["PHP log currently disabled."] = "PHP 日志已禁用。"; -$a->strings["Logs"] = "记录"; -$a->strings["Clear"] = "清理出"; -$a->strings["Enable Debugging"] = "启用调试"; -$a->strings["Log file"] = "日志文件"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "必要被网页服务器可写的。相对Friendica主文件夹。"; -$a->strings["Log level"] = "日志级别"; -$a->strings["PHP logging"] = "PHP 日志"; -$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "要临时启用PHP错误和警告的日志记录,您可以在安装的index.php文件中添加以下内容。“ERROR_LOG”行中设置的文件名相对于Friendica顶级目录,并且必须可由Web服务器写入。“LOG_ERROR”和“DISPLAY_ERROR”的选项“1”用于启用这些选项,设置为“0”将禁用它们。"; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "打开 %1\$s 日志文件出错。\\r\\n
请检查 %1\$s 文件是否存在并且可读。"; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "无法打开 %1\$s 日志文件。\\r\\n
请检查 %1\$s 文件是否可读。"; -$a->strings["View Logs"] = "查看日志"; -$a->strings["Inspect Deferred Worker Queue"] = ""; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = ""; -$a->strings["Inspect Worker Queue"] = ""; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = ""; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = ""; -$a->strings["Created"] = "已创建"; -$a->strings["Priority"] = ""; -$a->strings["Can not parse base url. Must have at least ://"] = "不能分析基础URL。至少要://"; -$a->strings["Invalid storage backend setting value."] = ""; -$a->strings["Site settings updated."] = "网站设置更新了。"; -$a->strings["No special theme for mobile devices"] = "没专门适合手机的主题"; -$a->strings["%s - (Experimental)"] = "%s - (实验性)"; -$a->strings["No community page for local users"] = ""; -$a->strings["No community page"] = "没有社会页"; -$a->strings["Public postings from users of this site"] = "本网站用户的公开文章"; -$a->strings["Public postings from the federated network"] = ""; -$a->strings["Public postings from local users and the federated network"] = ""; -$a->strings["Disabled"] = "已停用"; -$a->strings["Users"] = "用户"; -$a->strings["Users, Global Contacts"] = "用户,全球联系人"; -$a->strings["Users, Global Contacts/fallback"] = ""; -$a->strings["One month"] = "一个月"; -$a->strings["Three months"] = "三个月"; -$a->strings["Half a year"] = "半年"; -$a->strings["One year"] = "一年"; -$a->strings["Multi user instance"] = "多用户网站"; -$a->strings["Closed"] = "关闭"; -$a->strings["Requires approval"] = "要批准"; -$a->strings["Open"] = "打开"; -$a->strings["No SSL policy, links will track page SSL state"] = "没SSL方针,环节将追踪页SSL现状"; -$a->strings["Force all links to use SSL"] = "强制所有链接使用 SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "自签证书,只在本地链接使用 SSL(不推荐)"; -$a->strings["Don't check"] = "请勿检查"; -$a->strings["check the stable version"] = "检查稳定版"; -$a->strings["check the development version"] = "检查开发版本"; -$a->strings["none"] = ""; -$a->strings["Direct contacts"] = ""; -$a->strings["Contacts of contacts"] = ""; -$a->strings["Database (legacy)"] = ""; -$a->strings["Site"] = "网站"; -$a->strings["Republish users to directory"] = ""; -$a->strings["Registration"] = "注册"; -$a->strings["File upload"] = "文件上传"; -$a->strings["Policies"] = "政策"; -$a->strings["Auto Discovered Contact Directory"] = ""; -$a->strings["Performance"] = "性能"; -$a->strings["Worker"] = ""; -$a->strings["Message Relay"] = "讯息中继"; -$a->strings["Relocate Instance"] = ""; -$a->strings["Warning! Advanced function. Could make this server unreachable."] = ""; -$a->strings["Site name"] = "网页名字"; -$a->strings["Sender Email"] = "寄主邮件"; -$a->strings["The email address your server shall use to send notification emails from."] = ""; -$a->strings["Banner/Logo"] = "标题/标志"; -$a->strings["Email Banner/Logo"] = ""; -$a->strings["Shortcut icon"] = "捷径小图片"; -$a->strings["Link to an icon that will be used for browsers."] = ""; -$a->strings["Touch icon"] = "触摸小图片"; -$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; -$a->strings["Additional Info"] = "别的消息"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = ""; -$a->strings["System language"] = "系统语言"; -$a->strings["System theme"] = "系统主题"; -$a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = ""; -$a->strings["Mobile system theme"] = "手机系统主题"; -$a->strings["Theme for mobile devices"] = "用于移动设备的主题"; -$a->strings["SSL link policy"] = "SSL环节方针"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "决定产生的链接是否应该强制使用 SSL"; -$a->strings["Force SSL"] = "强制使用 SSL"; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环"; -$a->strings["Hide help entry from navigation menu"] = "在导航菜单隐藏帮助条目"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "在导航菜单中隐藏帮助页面的菜单条目。您仍然可以通过输入「/help」直接访问。"; -$a->strings["Single user instance"] = "单用户网站"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "弄这网站多用户或单用户为选择的用户"; -$a->strings["File storage backend"] = ""; -$a->strings["The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you do not do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure."] = ""; -$a->strings["Maximum image size"] = "图片最大尺寸"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "最多上传照相的字节。默认是零,意思是无限。"; -$a->strings["Maximum image length"] = "最大图片大小"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "最多像素在上传图片的长度。默认-1,意思是无限。"; -$a->strings["JPEG image quality"] = "JPEG 图片质量"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "上传的JPEG被用这质量[0-100]保存。默认100,最高。"; -$a->strings["Register policy"] = "注册政策"; -$a->strings["Maximum Daily Registrations"] = "一天最多注册"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。"; -$a->strings["Register text"] = "注册正文"; -$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = ""; -$a->strings["Forbidden Nicknames"] = ""; -$a->strings["Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142."] = ""; -$a->strings["Accounts abandoned after x days"] = "账户丢弃X天后"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"; -$a->strings["Allowed friend domains"] = "允许的朋友域"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。"; -$a->strings["Allowed email domains"] = "允许的电子邮件域"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。"; -$a->strings["No OEmbed rich content"] = ""; -$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = ""; -$a->strings["Allowed OEmbed domains"] = ""; -$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = ""; -$a->strings["Block public"] = "阻止公开"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = "强行发布"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "让所有这网站的的简介表明在网站目录。"; -$a->strings["Enabling this may violate privacy laws like the GDPR"] = "启用此项可能会违反隐私法律,譬如 GDPR 等"; -$a->strings["Global directory URL"] = ""; -$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Private posts by default for new users"] = "新用户默认写私人文章"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "默认新用户文章批准使默认隐私组,没有公开。"; -$a->strings["Don't include post content in email notifications"] = "别包含文章内容在邮件消息"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。"; -$a->strings["Disallow public access to addons listed in the apps menu."] = "不允许插件的公众使用权在应用选单。"; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "复选这个框为把应用选内插件限制仅成员"; -$a->strings["Don't embed private images in posts"] = "别嵌入私人图案在文章里"; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。"; -$a->strings["Explicit Content"] = ""; -$a->strings["Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page."] = ""; -$a->strings["Allow Users to set 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"] = "阻止多次注册"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "不允许用户注册别的账户为当页。"; -$a->strings["Disable OpenID"] = ""; -$a->strings["Disable OpenID support for registration and logins."] = ""; -$a->strings["No Fullname check"] = ""; -$a->strings["Allow users to register without a space between the first name and the last name in their full name."] = ""; -$a->strings["Community pages for visitors"] = ""; -$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = ""; -$a->strings["Posts per user on community page"] = "个用户文章数量在社会页"; -$a->strings["The maximum number of posts per user on the community page. (Not valid for \"Global Community\")"] = ""; -$a->strings["Disable OStatus support"] = ""; -$a->strings["Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; -$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora 支持无法启用,因为 Friendica 被安装到了一个子目录。"; -$a->strings["Enable Diaspora support"] = "启用 Diaspora 支持"; -$a->strings["Provide built-in Diaspora network compatibility."] = "提供内置的 Diaspora 网络兼容性。"; -$a->strings["Only allow Friendica contacts"] = "只允许 Friendica 联系人"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "所有联系人必须使用 Friendica 协议 。所有其他内置沟通协议都已停用。"; -$a->strings["Verify SSL"] = "验证 SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。"; -$a->strings["Proxy user"] = "代理用户"; -$a->strings["Proxy URL"] = "代理URL"; -$a->strings["Network timeout"] = "网络超时"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "输入秒数。输入零为无限(不推荐的)。"; -$a->strings["Maximum Load Average"] = "最大平均负荷"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default %d."] = ""; -$a->strings["Maximum Load Average (Frontend)"] = ""; -$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; -$a->strings["Minimal Memory"] = "最少内存"; -$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; -$a->strings["Maximum table size for optimization"] = ""; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = ""; -$a->strings["Minimum level of fragmentation"] = ""; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; -$a->strings["Periodical check of global contacts"] = "定期检查全球联系人"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; -$a->strings["Discover followers/followings from global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = ""; -$a->strings["Days between requery"] = "重新查询间隔天数"; -$a->strings["Number of days after which a server is requeried for his contacts."] = ""; -$a->strings["Discover contacts from other servers"] = "从其他服务器上发现联系人"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = ""; -$a->strings["Timeframe for fetching global contacts"] = ""; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; -$a->strings["Search the local directory"] = "搜索本地目录"; -$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; -$a->strings["Publish server information"] = "发布服务器信息"; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; -$a->strings["Check upstream version"] = "检查上游版本"; -$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "启用在 github 上检查新的 Friendica 版本。如果发现新版本,您将在管理员概要面板得到通知。"; -$a->strings["Suppress Tags"] = "压制标签"; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "不在文章末尾显示主题标签列表。"; -$a->strings["Clean database"] = "清理数据库"; -$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = ""; -$a->strings["Lifespan of remote items"] = ""; -$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = ""; -$a->strings["Lifespan of unclaimed items"] = ""; -$a->strings["When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."] = ""; -$a->strings["Lifespan of raw conversation data"] = ""; -$a->strings["The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days."] = ""; -$a->strings["Path to item cache"] = "路线到项目缓存"; -$a->strings["The item caches buffers generated bbcode and external images."] = ""; -$a->strings["Cache duration in seconds"] = "缓存时间秒"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。"; -$a->strings["Maximum numbers of comments per post"] = "文件最多评论"; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Temp path"] = "临时文件路线"; -$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; -$a->strings["Disable picture proxy"] = "停用图片代理"; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = ""; -$a->strings["Only search in tags"] = "只在标签项内搜索"; -$a->strings["On large systems the text search can slow down the system extremely."] = "在大型系统中,正文搜索会极大降低系统运行速度。"; -$a->strings["New base url"] = "新基础URL"; -$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = ""; -$a->strings["RINO Encryption"] = "RINO 加密"; -$a->strings["Encryption layer between nodes."] = "节点之间的加密层。"; -$a->strings["Enabled"] = "已启用"; -$a->strings["Maximum number of parallel workers"] = ""; -$a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = ""; -$a->strings["Don't use \"proc_open\" with the worker"] = ""; -$a->strings["Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = ""; -$a->strings["Enable fastlane"] = "启用快车道模式"; -$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = ""; -$a->strings["Enable frontend worker"] = ""; -$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = ""; -$a->strings["Subscribe to relay"] = ""; -$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = ""; -$a->strings["Relay server"] = "中继服务器"; -$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = ""; -$a->strings["Direct relay transfer"] = ""; -$a->strings["Enables the direct transfer to other servers without using the relay servers"] = ""; -$a->strings["Relay scope"] = ""; -$a->strings["Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received."] = ""; -$a->strings["all"] = "所有"; -$a->strings["tags"] = ""; -$a->strings["Server tags"] = ""; -$a->strings["Comma separated list of tags for the \"tags\" subscription."] = ""; -$a->strings["Allow user tags"] = ""; -$a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = ""; -$a->strings["Start Relocation"] = ""; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; -$a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; -$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "有新的 Friendica 版本可供下载。您当前的版本为 %1\$s,上游版本为 %2\$s"; -$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = ""; -$a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = ""; -$a->strings["The worker was never executed. Please check your database structure!"] = ""; -$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = ""; -$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition."] = ""; -$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition."] = ""; -$a->strings["%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."] = ""; -$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = ""; -$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = ""; -$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = ""; -$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = ""; -$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = ""; -$a->strings["Normal Account"] = "正常帐户"; -$a->strings["Automatic Follower Account"] = ""; -$a->strings["Public Forum Account"] = "公开论坛帐号"; -$a->strings["Automatic Friend Account"] = "自动朋友帐户"; -$a->strings["Blog Account"] = "博客账户"; -$a->strings["Private Forum Account"] = ""; -$a->strings["Message queues"] = "通知排队"; -$a->strings["Server Settings"] = ""; -$a->strings["Summary"] = "概要"; -$a->strings["Registered users"] = "注册的用户"; -$a->strings["Pending registrations"] = "未决的注册"; -$a->strings["Version"] = "版本"; -$a->strings["Active addons"] = "激活插件"; -$a->strings["Theme settings updated."] = "主题设置更新了。"; -$a->strings["Theme %s disabled."] = ""; -$a->strings["Theme %s successfully enabled."] = ""; -$a->strings["Theme %s failed to install."] = ""; -$a->strings["Screenshot"] = "截图"; -$a->strings["Themes"] = "主题"; -$a->strings["Unknown theme."] = ""; -$a->strings["Reload active themes"] = "重载活动的主题"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "未在系统中发现主题。它们应该被放置在 %1\$s"; -$a->strings["[Experimental]"] = "[试验]"; -$a->strings["[Unsupported]"] = "[没支持]"; -$a->strings["The Terms of Service settings have been updated."] = ""; -$a->strings["Display Terms of Service"] = "显示服务条款"; -$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = ""; -$a->strings["Display Privacy Statement"] = "显示隐私说明"; -$a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = ""; -$a->strings["Privacy Statement Preview"] = "隐私声明预览"; -$a->strings["The Terms of Service"] = "服务条款"; -$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = ""; -$a->strings["%s user blocked"] = [ - 0 => "", +$a->strings["Archives"] = "档案"; +$a->strings["Frequently"] = "频繁"; +$a->strings["Hourly"] = "每小时"; +$a->strings["Twice daily"] = "每天两次"; +$a->strings["Daily"] = "每天"; +$a->strings["Weekly"] = "每周"; +$a->strings["Monthly"] = "每月"; +$a->strings["DFRN"] = ""; +$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"] = "推特"; +$a->strings["Discourse"] = ""; +$a->strings["Diaspora Connector"] = "Diaspora连接器"; +$a->strings["GNU Social Connector"] = "GNU Social 连接器"; +$a->strings["ActivityPub"] = "活动插件"; +$a->strings["pnut"] = ""; +$a->strings["%s (via %s)"] = ""; +$a->strings["General Features"] = "通用特性"; +$a->strings["Photo Location"] = "照片地点"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "照片元数据通常被剥离。这将在剥离元数据之前提取位置(如果存在),并将其链接到地图。"; +$a->strings["Trending Tags"] = "趋势标签"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "显示带有最近公共帖子中最受欢迎标签列表的社区页面小部件。"; +$a->strings["Post Composition Features"] = "发帖编写功能"; +$a->strings["Auto-mention Forums"] = "自动提示论坛"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "在ACL窗口中选择/取消选择论坛页面时添加/删除提及。"; +$a->strings["Explicit Mentions"] = "明确提及"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "在“评论”框中添加显式提及,以手动控制在答复中提及的人。"; +$a->strings["Post/Comment Tools"] = "文章/评论工具"; +$a->strings["Post Categories"] = "文章种类"; +$a->strings["Add categories to your posts"] = "加入种类给您的文章"; +$a->strings["Advanced Profile Settings"] = "高级简介设置"; +$a->strings["List Forums"] = "列出各论坛"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "在“高级简介设置”页上向访问者显示公共社区论坛"; +$a->strings["Tag Cloud"] = "标签云"; +$a->strings["Provide a personal tag cloud on your profile page"] = "在您的个人简介中提供个人标签云"; +$a->strings["Display Membership Date"] = "显示成员资格日期"; +$a->strings["Display membership date in profile"] = "在个人资料中显示成员资格日期"; +$a->strings["Nothing new here"] = "这里没有什么新的"; +$a->strings["Clear notifications"] = "清理出通知"; +$a->strings["@name, !forum, #tags, content"] = ""; +$a->strings["End this session"] = "结束此次会话"; +$a->strings["Sign in"] = "登录"; +$a->strings["Personal notes"] = "个人笔记"; +$a->strings["Your personal notes"] = "你的个人笔记"; +$a->strings["Home"] = "主页"; +$a->strings["Home Page"] = "主页"; +$a->strings["Create an account"] = "注册"; +$a->strings["Help and documentation"] = "帮助及文档"; +$a->strings["Apps"] = "应用程序"; +$a->strings["Addon applications, utilities, games"] = "可加的应用,设施,游戏"; +$a->strings["Search site content"] = "搜索网站内容"; +$a->strings["Full Text"] = "全文"; +$a->strings["Tags"] = "标签:"; +$a->strings["Community"] = "社会"; +$a->strings["Conversations on this and other servers"] = "此服务器和其他服务器上的对话"; +$a->strings["Directory"] = "目录"; +$a->strings["People directory"] = "人物名录"; +$a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器"; +$a->strings["Terms of Service of this Friendica instance"] = "此Friendica实例的服务条款"; +$a->strings["Introductions"] = "介绍"; +$a->strings["Friend Requests"] = "友谊邀请"; +$a->strings["See all notifications"] = "看所有的通知"; +$a->strings["Mark all system notifications seen"] = "记号各系统通知看过的"; +$a->strings["Inbox"] = "收件箱"; +$a->strings["Outbox"] = "发件箱"; +$a->strings["Accounts"] = "账户"; +$a->strings["Manage other pages"] = "管理别的页"; +$a->strings["Site setup and configuration"] = "网站开办和配置"; +$a->strings["Navigation"] = "导航"; +$a->strings["Site map"] = "网站地图"; +$a->strings["Remove term"] = "删除关键字"; +$a->strings["Saved Searches"] = "保存的搜索"; +$a->strings["Export"] = "导出"; +$a->strings["Export calendar as ical"] = "导出日历为 ical"; +$a->strings["Export calendar as csv"] = "导出日历为 csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "趋势标签(最近%d小时 )", ]; -$a->strings["%s user unblocked"] = [ - 0 => "", +$a->strings["More Trending Tags"] = "更多趋势标签"; +$a->strings["No contacts"] = "没有联系人"; +$a->strings["%d Contact"] = [ + 0 => "%d 联系人", ]; -$a->strings["You can't remove yourself"] = ""; -$a->strings["%s user deleted"] = [ - 0 => "%s 用户被删除了", -]; -$a->strings["%s user approved"] = [ - 0 => "", -]; -$a->strings["%s registration revoked"] = [ - 0 => "", -]; -$a->strings["User \"%s\" deleted"] = ""; -$a->strings["User \"%s\" blocked"] = ""; -$a->strings["User \"%s\" unblocked"] = ""; -$a->strings["Account approved."] = "账户已被批准。"; -$a->strings["Registration revoked"] = ""; -$a->strings["Private Forum"] = ""; -$a->strings["Relay"] = ""; -$a->strings["Register date"] = "注册日期"; -$a->strings["Last login"] = "上次登录"; -$a->strings["Last public item"] = ""; -$a->strings["Type"] = ""; -$a->strings["Add User"] = "添加用户"; -$a->strings["User registrations waiting for confirm"] = "用户注册等待确认"; -$a->strings["User waiting for permanent deletion"] = "用户等待长久删除"; -$a->strings["Request date"] = "要求日期"; -$a->strings["No registrations."] = "没有注册。"; -$a->strings["Note from the user"] = ""; -$a->strings["Deny"] = "否定"; -$a->strings["User blocked"] = ""; -$a->strings["Site admin"] = "网站管理员"; -$a->strings["Account expired"] = "帐户过期了"; -$a->strings["New User"] = "新用户"; -$a->strings["Permanent deletion"] = ""; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"; -$a->strings["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["No friends to display."] = "没有朋友展示。"; -$a->strings["No installed applications."] = "没有安装的应用"; -$a->strings["Applications"] = "应用"; -$a->strings["Item was not found."] = "找不到项目。"; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = ""; -$a->strings["Overview"] = "概览"; -$a->strings["Configuration"] = "配置"; -$a->strings["Additional features"] = "附加的特点"; -$a->strings["Database"] = "数据库"; -$a->strings["DB updates"] = "数据库更新"; -$a->strings["Inspect Deferred Workers"] = ""; -$a->strings["Inspect worker Queue"] = ""; -$a->strings["Tools"] = "工具"; -$a->strings["Contact Blocklist"] = "联系人屏蔽列表"; -$a->strings["Server Blocklist"] = "服务器屏蔽列表"; -$a->strings["Diagnostics"] = "诊断"; -$a->strings["PHP Info"] = "PHP Info"; -$a->strings["probe address"] = "探测地址"; -$a->strings["check webfinger"] = "检查 webfinger"; -$a->strings["Item Source"] = ""; -$a->strings["Babel"] = ""; -$a->strings["Addon Features"] = "插件特性"; -$a->strings["User registrations waiting for confirmation"] = "用户注册等确认"; -$a->strings["Profile Details"] = "简介内容"; -$a->strings["Only You Can See This"] = "只有你可以看这个"; -$a->strings["Tips for New Members"] = "新人建议"; -$a->strings["People Search - %s"] = "搜索人 - %s"; -$a->strings["Forum Search - %s"] = "搜索论坛 - %s"; -$a->strings["Account"] = "帐户"; -$a->strings["Two-factor authentication"] = "两步认证"; -$a->strings["Display"] = "显示"; -$a->strings["Manage Accounts"] = "管理帐号"; -$a->strings["Connected apps"] = "连接着应用"; -$a->strings["Export personal data"] = "导出个人信息"; -$a->strings["Remove account"] = "删除账户"; -$a->strings["This page is missing a url parameter."] = ""; -$a->strings["The post was created"] = "文章创建了"; -$a->strings["Contact settings applied."] = "联系人设置已应用。"; -$a->strings["Contact update failed."] = "联系人更新失败。"; -$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."] = "请立即用后退按钮如果您不确定怎么用这页"; -$a->strings["No mirroring"] = "没有复制"; -$a->strings["Mirror as forwarded posting"] = "复制为传达文章"; -$a->strings["Mirror as my own posting"] = "复制为我自己的文章"; -$a->strings["Return to contact editor"] = "返回到联系人编辑器"; -$a->strings["Refetch contact data"] = "重新获取联系人数据"; -$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."] = "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。"; -$a->strings["Account Nickname"] = "帐户昵称"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称"; -$a->strings["Account URL"] = "帐户URL"; -$a->strings["Account URL Alias"] = ""; -$a->strings["Friend Request URL"] = "朋友请求URL"; -$a->strings["Friend Confirm URL"] = "朋友确认URL"; -$a->strings["Notification Endpoint URL"] = "通知端URL"; -$a->strings["Poll/Feed URL"] = "喂URL"; -$a->strings["New photo from this URL"] = "新照片从这个URL"; -$a->strings["%d contact edited."] = [ - 0 => "%d 个联系人被编辑了。", -]; -$a->strings["Could not access contact record."] = "无法访问联系人记录。"; -$a->strings["Contact updated."] = "联系人更新了。"; -$a->strings["Contact not found"] = ""; -$a->strings["Contact has been blocked"] = "联系人已被屏蔽"; -$a->strings["Contact has been unblocked"] = "联系人已被解除屏蔽"; -$a->strings["Contact has been ignored"] = "联系人已被忽视"; -$a->strings["Contact has been unignored"] = "联系人已被解除忽视"; -$a->strings["Contact has been archived"] = "联系人已存档"; -$a->strings["Contact has been unarchived"] = "联系人已被解除存档"; -$a->strings["Drop contact"] = ""; -$a->strings["Do you really want to delete this contact?"] = "您真的想删除这个联系人吗?"; -$a->strings["Contact has been removed."] = "联系人被删除了。"; -$a->strings["You are mutual friends with %s"] = "您和 %s 互为朋友"; -$a->strings["You are sharing with %s"] = "你正在和 %s 分享"; -$a->strings["%s is sharing with you"] = "%s 正在和你分享"; -$a->strings["Private communications are not available for this contact."] = "私人交流对这个联系人不可用。"; -$a->strings["Never"] = "从未"; -$a->strings["(Update was successful)"] = "(更新成功)"; -$a->strings["(Update was not successful)"] = "(更新不成功)"; -$a->strings["Suggest friends"] = "建议朋友们"; -$a->strings["Network type: %s"] = "网络种类: %s"; -$a->strings["Communications lost with this contact!"] = "和这个联系人的通信断开了!"; -$a->strings["Fetch further information for feeds"] = "拿文源别的消息"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = ""; -$a->strings["Fetch information"] = "取消息"; -$a->strings["Fetch keywords"] = "获取关键字"; -$a->strings["Fetch information and keywords"] = "取消息和关键词"; -$a->strings["Contact Information / Notes"] = "联系人信息/便条"; -$a->strings["Contact Settings"] = "联系人设置"; -$a->strings["Contact"] = "联系人"; -$a->strings["Their personal note"] = ""; -$a->strings["Edit contact notes"] = "编辑联系人便条"; -$a->strings["Visit %s's profile [%s]"] = "看%s的简介[%s]"; -$a->strings["Block/Unblock contact"] = "屏蔽/解除屏蔽联系人"; -$a->strings["Ignore contact"] = "忽略联系人"; -$a->strings["View conversations"] = "看交流"; -$a->strings["Last update:"] = "上个更新:"; -$a->strings["Update public posts"] = "更新公开文章"; -$a->strings["Update now"] = "现在更新"; -$a->strings["Unignore"] = "取消忽视"; -$a->strings["Currently blocked"] = "现在被封禁的"; -$a->strings["Currently ignored"] = "现在不理的"; -$a->strings["Currently archived"] = "当前已存档"; -$a->strings["Awaiting connection acknowledge"] = "等待连接确认"; -$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["Blacklisted keywords"] = "黑名单关键词"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。"; -$a->strings["Actions"] = ""; -$a->strings["Show all contacts"] = "显示所有的联系人"; -$a->strings["Pending"] = ""; -$a->strings["Only show pending contacts"] = ""; -$a->strings["Blocked"] = "被屏蔽的"; -$a->strings["Only show blocked contacts"] = "只显示被屏蔽的联系人"; -$a->strings["Ignored"] = "忽视的"; -$a->strings["Only show ignored contacts"] = "只显示忽略的联系人"; -$a->strings["Archived"] = "已存档"; -$a->strings["Only show archived contacts"] = "只显示已存档联系人"; -$a->strings["Hidden"] = "隐藏的"; -$a->strings["Only show hidden contacts"] = "只显示隐藏的联系人"; -$a->strings["Organize your contact groups"] = ""; -$a->strings["Search your contacts"] = "搜索您的联系人"; -$a->strings["Results for: %s"] = ""; -$a->strings["Archive"] = "存档"; -$a->strings["Unarchive"] = "从存档拿来"; -$a->strings["Batch Actions"] = "批量操作"; -$a->strings["Conversations started by this contact"] = "此联系人开始的对话"; -$a->strings["Posts and Comments"] = ""; -$a->strings["View all contacts"] = "查看所有联系人"; -$a->strings["View all common friends"] = "查看所有公共好友"; -$a->strings["Advanced Contact Settings"] = "高级联系人设置"; -$a->strings["Mutual Friendship"] = "共同友谊"; -$a->strings["is a fan of yours"] = "是你的粉丝"; -$a->strings["you are a fan of"] = "您已关注"; -$a->strings["Pending outgoing contact request"] = ""; -$a->strings["Pending incoming contact request"] = ""; -$a->strings["Edit contact"] = "编辑联系人"; -$a->strings["Toggle Blocked status"] = "切换屏蔽状态"; -$a->strings["Toggle Ignored status"] = "交替忽视现状"; -$a->strings["Toggle Archive status"] = "交替档案现状"; -$a->strings["Delete contact"] = "删除联系人"; -$a->strings["Local Community"] = "本地社区"; -$a->strings["Posts from local users on this server"] = ""; -$a->strings["Global Community"] = "全球社区"; -$a->strings["Posts from users of the whole federated network"] = ""; -$a->strings["No results."] = "没有结果。"; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; -$a->strings["Community option not available."] = "社区选项不可用。"; -$a->strings["Not available."] = "不可用的"; -$a->strings["Credits"] = "贡献"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica 是一个社区项目,如果没有许多人的努力她将无法实现。这里列出了那些为代码作出贡献或者参与本地化翻译的人们。感谢大家的努力!"; -$a->strings["Source input"] = "源码输入"; -$a->strings["BBCode::toPlaintext"] = ""; -$a->strings["BBCode::convert (raw HTML)"] = ""; -$a->strings["BBCode::convert"] = ""; -$a->strings["BBCode::convert => HTML::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; -$a->strings["Item Body"] = ""; -$a->strings["Item Tags"] = ""; -$a->strings["Source input (Diaspora format)"] = ""; -$a->strings["Source input (Markdown)"] = ""; -$a->strings["Markdown::convert (raw HTML)"] = ""; -$a->strings["Markdown::convert"] = ""; -$a->strings["Markdown::toBBCode"] = ""; -$a->strings["Raw HTML input"] = "原始 HTML 输入"; -$a->strings["HTML Input"] = "HTML 输入"; -$a->strings["HTML::toBBCode"] = ""; -$a->strings["HTML::toBBCode => BBCode::convert"] = ""; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = ""; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; -$a->strings["HTML::toMarkdown"] = ""; -$a->strings["HTML::toPlaintext"] = ""; -$a->strings["HTML::toPlaintext (compact)"] = ""; -$a->strings["Source text"] = "源文本"; -$a->strings["BBCode"] = ""; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["You must be logged in to use this module"] = "您必须登录才能使用此模块"; -$a->strings["Source URL"] = "源链接"; -$a->strings["Time Conversion"] = "时间装换"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。"; -$a->strings["UTC time: %s"] = "UTC时间: %s"; -$a->strings["Current timezone: %s"] = "现在时区: %s"; -$a->strings["Converted localtime: %s"] = "装换的当地时间:%s"; -$a->strings["Please select your timezone:"] = "请选择你的时区:"; -$a->strings["Only logged in users are permitted to perform a probing."] = "只有已登录用户才被允许进行探测。"; -$a->strings["Lookup address"] = ""; -$a->strings["Manage Identities and/or Pages"] = "管理身份或页"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "交替不同同一人或社会/组页合用您的账户或给您「管理」批准"; -$a->strings["Select an identity to manage: "] = "选择同一个人管理:"; -$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。"; -$a->strings["Find on this site"] = "找在这网站"; -$a->strings["Results for:"] = "结果:"; -$a->strings["Site Directory"] = "网站目录"; -$a->strings["Filetag %s saved to item"] = ""; -$a->strings["- select -"] = "-选择-"; -$a->strings["Installed addons/apps:"] = "已安装的插件/应用:"; -$a->strings["No installed addons/apps"] = "没有已安装的插件或应用"; -$a->strings["Read about the Terms of Service of this node."] = "阅读此节点的服务条款。"; -$a->strings["On this server the following remote servers are blocked."] = "在这个服务器上以下远程服务器被封禁了。"; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = ""; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "请浏览 Friendi.ca 以了解更多关于 Friendica 项目的信息。"; -$a->strings["Bug reports and issues: please visit"] = "Bug 及 issues 报告:请访问"; -$a->strings["the bugtracker at github"] = "在 github 上的错误追踪系统"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; -$a->strings["Suggested contact not found."] = ""; -$a->strings["Friend suggestion sent."] = "朋友建议发送了。"; -$a->strings["Suggest Friends"] = "推荐的朋友们"; -$a->strings["Suggest a friend for %s"] = "给 %s 推荐朋友"; -$a->strings["Group created."] = "群组已创建。"; -$a->strings["Could not create group."] = "无法创建群组。"; -$a->strings["Group not found."] = "组找不到。"; -$a->strings["Group name changed."] = "组名变化了。"; -$a->strings["Unknown group."] = ""; -$a->strings["Contact is deleted."] = ""; -$a->strings["Unable to add the contact to the group."] = ""; -$a->strings["Contact successfully added to group."] = ""; -$a->strings["Unable to remove the contact from the group."] = ""; -$a->strings["Contact successfully removed from group."] = ""; -$a->strings["Unknown group command."] = ""; -$a->strings["Bad request."] = ""; -$a->strings["Save Group"] = "保存组"; -$a->strings["Filter"] = ""; -$a->strings["Create a group of contacts/friends."] = "创建一组联系人/朋友。"; -$a->strings["Group removed."] = "组删除了。"; -$a->strings["Unable to remove group."] = "不能删除组。"; -$a->strings["Delete Group"] = "删除群组"; -$a->strings["Edit Group Name"] = "编辑群组名称"; -$a->strings["Members"] = "成员"; -$a->strings["Remove contact from group"] = ""; -$a->strings["Click on a contact to add or remove."] = "单击联系人以添加或删除。"; -$a->strings["Add contact to group"] = ""; -$a->strings["Help:"] = "帮助:"; -$a->strings["Welcome to %s"] = "%s欢迎你"; -$a->strings["No profile"] = "无简介"; -$a->strings["Method Not Allowed."] = ""; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["System check"] = "系统检测"; -$a->strings["Check again"] = "再检测"; -$a->strings["Base settings"] = ""; -$a->strings["Host name"] = "服务器名"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = ""; -$a->strings["Base path to installation"] = "基础安装路线"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "如果您的系统无法为您检测到正确的安装路径,请在这里输入正确的路径。此配置仅在您使用设有限制的系统时符号链接到网页服务器根目录使用。"; -$a->strings["Sub path of the URL"] = ""; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = ""; -$a->strings["Database connection"] = "数据库接通"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。"; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。"; -$a->strings["Database Server Name"] = "数据库服务器名"; -$a->strings["Database Login Name"] = "数据库登录名"; -$a->strings["Database Login Password"] = "数据库登录密码"; -$a->strings["For security reasons the password must not be empty"] = "由于安全的原因,密码不能为空"; -$a->strings["Database Name"] = "数据库名字"; -$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区"; -$a->strings["Site settings"] = "网站设置"; -$a->strings["Site administrator email address"] = "网站行政人员邮件地址"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板"; -$a->strings["System Language:"] = "系统语言:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "为 Friendica 安装界面及邮件发送设置默认语言。"; -$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。"; -$a->strings["Installation finished"] = ""; -$a->strings["

What next

"] = "

下步是什么

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; -$a->strings["Total invitation limit exceeded."] = "邀请限超过了。"; -$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址."; -$a->strings["Please join us on Friendica"] = "请加入我们再Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "邀请限超过了。请联系您的网站管理员。"; -$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。"; -$a->strings["%d message sent."] = [ - 0 => "%d消息传送了。", -]; -$a->strings["You have no more invitations available"] = "您没有别的邀请"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。"; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "为接受这个邀请,请再%s或什么别的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."] = "Friendica 站点互相连接来创建一个增强隐私的由他们的成员拥有并控制的社交网络。它们也能跟多传统的社交网络连接。看 %s 来获取一份你可以选择加入的 Friendica 站点。"; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"; -$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."] = "各 Friendica 站点相互连接以创造出一个由其组成成员控制拥有的有强大隐私保护能力的大型社交网络。各站点同时也能够接入许多传统社交网络。"; -$a->strings["To accept this invitation, please visit and register at %s."] = "要接受这个邀请,请在 %s 访问并注册。"; -$a->strings["Send invitations"] = "发请柬"; -$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "在 Friendica,你被诚挚地邀请来加入我和其他亲密的朋友-并帮助我们创建更好的社会网络。"; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "欲了解更多关于 Friendica 项目的信息以及为什么我们认为这很重要,请访问 http://friendi.ca"; -$a->strings["Please enter a post body."] = ""; -$a->strings["This feature is only available with the frio theme."] = ""; -$a->strings["Compose new personal note"] = ""; -$a->strings["Compose new post"] = ""; -$a->strings["Visibility"] = ""; -$a->strings["Clear the location"] = ""; -$a->strings["Location services are unavailable on your device"] = ""; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = ""; -$a->strings["System down for maintenance"] = "系统关闭为了维持"; -$a->strings["A Decentralized Social Network"] = ""; -$a->strings["Show Ignored Requests"] = "显示被忽视的请求"; -$a->strings["Hide Ignored Requests"] = "隐藏被忽视的请求"; -$a->strings["Notification type:"] = ""; -$a->strings["Suggested by:"] = ""; -$a->strings["Claims to be known to you: "] = "声称被您认识:"; -$a->strings["Shall your connection be bidirectional or not?"] = "是否启用双向连接?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Friend"] = "朋友"; -$a->strings["Subscriber"] = "订阅者"; -$a->strings["No introductions."] = "没有介绍。"; -$a->strings["No more %s notifications."] = "没有更多的 %s 通知。"; -$a->strings["You must be logged in to show this page."] = ""; -$a->strings["Network Notifications"] = "网络通知"; -$a->strings["System Notifications"] = "系统通知"; -$a->strings["Personal Notifications"] = "私人通知"; -$a->strings["Home Notifications"] = "主页通知"; -$a->strings["Show unread"] = "显示未读"; -$a->strings["Show all"] = "显示全部"; -$a->strings["The Photo with id %s is not available."] = ""; -$a->strings["Invalid photo with id %s."] = ""; -$a->strings["User not found."] = ""; -$a->strings["No contacts."] = "没有联系人。"; -$a->strings["Follower (%s)"] = [ - 0 => "", -]; -$a->strings["Following (%s)"] = [ - 0 => "", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "", -]; -$a->strings["Contact (%s)"] = [ - 0 => "", -]; -$a->strings["All contacts"] = ""; -$a->strings["Member since:"] = ""; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "生日:"; -$a->strings["Age: "] = "年龄 :"; -$a->strings["%d year old"] = [ - 0 => "%d岁", -]; -$a->strings["Forums:"] = ""; -$a->strings["View profile as:"] = ""; -$a->strings["%s's timeline"] = "%s 的时间线"; -$a->strings["%s's posts"] = "%s的帖子"; -$a->strings["%s's comments"] = "%s 的评论"; -$a->strings["Only parent users can create additional accounts."] = ""; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = ""; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。"; -$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):"; -$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?"; -$a->strings["Note for the admin"] = "给管理员的便条"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "给管理员留条消息,为什么你想加入这个节点"; -$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。"; -$a->strings["Your invitation code: "] = "您的邀请码:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "你的全名 (比如张三,真名或看起来是真名):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "您的电子邮件地址:(初始信息将发送到这里,所以这必须是一个存在的地址。)"; -$a->strings["Please repeat your e-mail address:"] = ""; -$a->strings["Leave empty for an auto generated password."] = "留空以使用自动生成的密码。"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = ""; -$a->strings["Choose a nickname: "] = "选择昵称:"; -$a->strings["Import your profile to this friendica instance"] = "进口您的简介到这个friendica服务器"; -$a->strings["Note: This node explicitly contains adult content"] = ""; -$a->strings["Parent Password:"] = "家长密码:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "请为家长账户设置密码以使您的请求有效化。"; -$a->strings["Password doesn't match."] = ""; -$a->strings["Please enter your password."] = ""; -$a->strings["You have entered too much information."] = ""; -$a->strings["Please enter the identical mail address in the second field."] = ""; -$a->strings["The additional account was created."] = ""; -$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功。请检查您的收件箱以获取进一步操作。"; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "发送邮件失败。你的账户消息是:
用户名:%s
密码: %s

。登录后能改密码。"; -$a->strings["Registration successful."] = "注册成功。"; -$a->strings["Your registration can not be processed."] = "处理不了您的注册。"; -$a->strings["You have to leave a request note for the admin."] = ""; -$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。"; -$a->strings["The provided profile link doesn't seem to be valid"] = ""; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; -$a->strings["You must be logged in to use this module."] = ""; -$a->strings["Only logged in users are permitted to perform a search."] = "只有已登录的用户被允许进行搜索。"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "对未登录的用户,每分钟只允许一条搜索。"; -$a->strings["Items tagged with: %s"] = "项目标记为:%s"; -$a->strings["Search term successfully saved."] = ""; -$a->strings["Search term already saved."] = ""; -$a->strings["Search term successfully removed."] = ""; -$a->strings["Create a New Account"] = "创建新的账户"; -$a->strings["Your OpenID: "] = ""; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = ""; -$a->strings["Or login using OpenID: "] = "或者使用 OpenID 登录: "; -$a->strings["Password: "] = "密码:"; -$a->strings["Remember me"] = "记住我"; -$a->strings["Forgot your password?"] = "忘记你的密码吗?"; -$a->strings["Website Terms of Service"] = "网站服务条款"; -$a->strings["terms of service"] = "服务条款"; -$a->strings["Website Privacy Policy"] = "网站隐私政策"; -$a->strings["privacy policy"] = "隐私政策"; -$a->strings["Logged out."] = "已注销。"; -$a->strings["OpenID protocol error. No ID returned"] = ""; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = ""; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = ""; -$a->strings["Remaining recovery codes: %d"] = ""; -$a->strings["Invalid code, please retry."] = ""; -$a->strings["Two-factor recovery"] = ""; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = ""; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = ""; -$a->strings["Please enter a recovery code"] = ""; -$a->strings["Submit recovery code and complete login"] = ""; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = ""; -$a->strings["Please enter a code from your authentication app"] = ""; -$a->strings["Verify code and complete login"] = ""; -$a->strings["Delegation successfully granted."] = "委派已成功授予。"; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "找不到父用户、不可用或密码不匹配。"; -$a->strings["Delegation successfully revoked."] = "委派已成功吊销。"; -$a->strings["Delegated administrators can view but not change delegation permissions."] = "委派管理员可以查看但不能更改委派权限。"; -$a->strings["Delegate user not found."] = "找不到委派用户。"; -$a->strings["No parent user"] = "无家长账户"; -$a->strings["Parent User"] = "家长账户"; -$a->strings["Additional Accounts"] = "其他账号"; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "注册自动连接到现有帐号的其他帐号,以便您可以从此帐号管理它们。"; -$a->strings["Register an additional account"] = "注册一个附加帐号"; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "父用户对此帐号拥有完全控制权,包括帐号设置。请仔细检查您授予此访问权限的人员。"; -$a->strings["Delegates"] = "代表"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。"; -$a->strings["Existing Page Delegates"] = "目前页代表"; -$a->strings["Potential Delegates"] = "潜力的代表"; -$a->strings["Add"] = "加"; -$a->strings["No entries."] = "没有项目。"; -$a->strings["The theme you chose isn't available."] = ""; -$a->strings["%s - (Unsupported)"] = "%s - (不支持的)"; -$a->strings["Display Settings"] = "表示设置"; -$a->strings["General Theme Settings"] = "通用主题设置"; -$a->strings["Custom Theme Settings"] = "自定义主题设置"; -$a->strings["Content Settings"] = "内容设置"; -$a->strings["Theme settings"] = "主题设置"; -$a->strings["Calendar"] = "日历"; -$a->strings["Display Theme:"] = "显示主题:"; -$a->strings["Mobile Theme:"] = "手机主题:"; -$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["Update browser every xx seconds"] = "更新游览器每XX秒"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "至少 10 秒。输入 -1 禁用。"; -$a->strings["Automatic updates only at the top of the post stream pages"] = ""; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; -$a->strings["Don't show emoticons"] = "不显示表情符号"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = ""; -$a->strings["Infinite scroll"] = "无限的滚动"; -$a->strings["Automatic fetch new items when reaching the page end."] = ""; -$a->strings["Disable Smart Threading"] = ""; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = ""; -$a->strings["Hide the Dislike feature"] = ""; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; -$a->strings["Beginning of week:"] = "一周的开始:"; -$a->strings["Profile Name is required."] = "必要简介名"; -$a->strings["Profile updated."] = "简介更新了。"; -$a->strings["Profile couldn't be updated."] = "无法更新简介"; -$a->strings["Label:"] = "标签:"; -$a->strings["Value:"] = ""; -$a->strings["Field Permissions"] = ""; -$a->strings["(click to open/close)"] = "(点击来打开/关闭)"; -$a->strings["Add a new profile field"] = ""; -$a->strings["Profile Actions"] = "简介照片操作"; -$a->strings["Edit Profile Details"] = "剪辑简介消息"; -$a->strings["Change Profile Photo"] = "改变简介照片"; -$a->strings["Profile picture"] = "头像"; -$a->strings["Location"] = "位置"; -$a->strings["Miscellaneous"] = "其他"; -$a->strings["Custom Profile Fields"] = "自定义简介字段"; -$a->strings["Upload Profile Photo"] = "上传简历照片"; -$a->strings["Display name:"] = "显示名称:"; -$a->strings["Street Address:"] = "地址:"; -$a->strings["Locality/City:"] = "现场/城市:"; -$a->strings["Region/State:"] = "区域/省"; -$a->strings["Postal/Zip Code:"] = "邮政编码:"; -$a->strings["Country:"] = "国家:"; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) 地址:"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。"; -$a->strings["Homepage URL:"] = "主页URL:"; -$a->strings["Public Keywords:"] = "公开关键字 :"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)"; -$a->strings["Private Keywords:"] = "私人关键字"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)"; -$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = ""; -$a->strings["Image size reduction [%s] failed."] = "图片压缩 [%s] 失败。"; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "如果新照片没有立即显示,请刷新页面或者清除浏览器缓存。"; -$a->strings["Unable to process image"] = "无法处理图像"; -$a->strings["Photo not found."] = ""; -$a->strings["Profile picture successfully updated."] = ""; -$a->strings["Crop Image"] = "修剪照片"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "请调图片剪裁为最好看。"; -$a->strings["Use Image As Is"] = ""; -$a->strings["Missing uploaded image."] = ""; -$a->strings["Image uploaded successfully."] = "照片成功地上传了。"; -$a->strings["Profile Picture Settings"] = ""; -$a->strings["Current Profile Picture"] = ""; -$a->strings["Upload Profile Picture"] = ""; -$a->strings["Upload Picture:"] = ""; -$a->strings["or"] = "或者"; -$a->strings["skip this step"] = "略过这步"; -$a->strings["select a photo from your photo albums"] = "从您的照片册选择一片。"; -$a->strings["Please enter your password to access this page."] = ""; -$a->strings["App-specific password generation failed: The description is empty."] = ""; -$a->strings["App-specific password generation failed: This description already exists."] = ""; -$a->strings["New app-specific password generated."] = ""; -$a->strings["App-specific passwords successfully revoked."] = ""; -$a->strings["App-specific password successfully revoked."] = ""; -$a->strings["Two-factor app-specific passwords"] = ""; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; -$a->strings["Description"] = ""; -$a->strings["Last Used"] = ""; -$a->strings["Revoke"] = "取消"; -$a->strings["Revoke All"] = "全部取消"; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "当您生成特定于应用程序的新密码时,您必须立即使用它,生成密码后会显示给您一次。"; -$a->strings["Generate new app-specific password"] = ""; -$a->strings["Friendiqa on my Fairphone 2..."] = ""; -$a->strings["Generate"] = ""; -$a->strings["Two-factor authentication successfully disabled."] = ""; -$a->strings["Wrong Password"] = "密码不正确"; -$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = ""; -$a->strings["Authenticator app"] = ""; -$a->strings["Configured"] = "配置"; -$a->strings["Not Configured"] = "未配置"; -$a->strings["

You haven't finished configuring your authenticator app.

"] = ""; -$a->strings["

Your authenticator app is correctly configured.

"] = ""; -$a->strings["Recovery codes"] = "恢复码"; -$a->strings["Remaining valid codes"] = ""; -$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = ""; -$a->strings["App-specific passwords"] = ""; -$a->strings["Generated app-specific passwords"] = ""; -$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = ""; -$a->strings["Current password:"] = "当前密码"; -$a->strings["You need to provide your current password to change two-factor authentication settings."] = "您需要提供当前密码才能更改两步身份验证设置。"; -$a->strings["Enable two-factor authentication"] = "启用两步认证"; -$a->strings["Disable two-factor authentication"] = ""; -$a->strings["Show recovery codes"] = ""; -$a->strings["Manage app-specific passwords"] = ""; -$a->strings["Finish app configuration"] = ""; -$a->strings["New recovery codes successfully generated."] = "已成功生成新的恢复代码。"; -$a->strings["Two-factor recovery codes"] = "两步验证码"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "生成新恢复代码时,必须复制新代码。你的旧密码不会再起作用了。"; -$a->strings["Generate new recovery codes"] = "生成新的恢复代码"; -$a->strings["Next: Verification"] = ""; -$a->strings["Two-factor authentication successfully activated."] = "成功激活双因素身份验证。"; -$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = ""; -$a->strings["Two-factor code verification"] = "双因素码验证"; -$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = ""; -$a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = ""; -$a->strings["Verify code and enable two-factor authentication"] = "验证码并启用双因素身份验证"; -$a->strings["Export account"] = "导出账户"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "导出你的账户信息和联系人。用这个功能来生成一个你的账户的备份,并且/或者把它移到另外一个服务器。"; -$a->strings["Export all"] = "导出全部"; -$a->strings["Export your account 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)"] = "将您的帐户信息、联系人和所有项目导出为json。可能是非常大的文件,并且可能需要很长时间。使用此选项对您的帐户进行完全备份(不导出照片)"; -$a->strings["Export Contacts to CSV"] = "将联系人导出为CSV"; -$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "将您关注的客户列表导出为CSV文件。兼容例如Mastodon。"; -$a->strings["Bad Request"] = ""; -$a->strings["Unauthorized"] = ""; -$a->strings["Forbidden"] = ""; -$a->strings["Not Found"] = "未发现"; -$a->strings["Internal Server Error"] = ""; -$a->strings["Service Unavailable"] = ""; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; -$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; -$a->strings["The requested resource could not be found but may be available in the future."] = ""; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; -$a->strings["Privacy Statement"] = "隐私声明"; -$a->strings["Welcome to Friendica"] = "Friendica欢迎你"; -$a->strings["New Member Checklist"] = "新成员清单"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "我们想提供一些建议和链接以助于让你有愉快的经历。点击任意一项访问相应的网页。在你注册之后,到这个页面的链接会在你的主页显示两周,之后悄声地消失。"; -$a->strings["Getting Started"] = "入门"; -$a->strings["Friendica Walk-Through"] = "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."] = "在你的快速上手页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。"; -$a->strings["Go to Your Settings"] = "您的设置"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "在你的设置页 - 改变你最初的密码。同时也记住你的身份地址。这看起来像一个电子邮件地址 - 并且在这个自由的社交网络交友时会有用。"; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "校对别的设置,特别是隐私设置。一个未发布的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"; -$a->strings["Edit Your Profile"] = "编辑您的简介"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。"; -$a->strings["Profile Keywords"] = "简介关键字"; -$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "为你的个人资料设置一些描述你兴趣的公共关键字。我们也许能找到其他有相似兴趣的人,并建议结交朋友。"; -$a->strings["Connecting"] = "连接着"; -$a->strings["Importing Emails"] = "进口着邮件"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。"; -$a->strings["Go to Your Contacts Page"] = "转到您的联系人页面"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。"; -$a->strings["Go to Your Site's Directory"] = "您网站的目录"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "目录页让你在这个网络或者其他的联邦的站点找到其他人。在他们的简介页找一个连接关注链接。如果需要,提供你自己的身份地址。"; -$a->strings["Finding New People"] = "找新人"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。"; -$a->strings["Group Your Contacts"] = "给你的联系人分组"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。"; -$a->strings["Why Aren't My Posts Public?"] = "我文章怎么没公开的?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。"; -$a->strings["Getting Help"] = "获取帮助"; -$a->strings["Go to the Help Section"] = "看帮助部分"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "我们帮助页可查阅到详情关于别的编程特点和资源。"; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"; -$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。"; -$a->strings["%s posted an update."] = "%s贴上一个新闻。"; -$a->strings["This entry was edited"] = "这个条目被编辑了"; -$a->strings["Private Message"] = "私人的新闻"; -$a->strings["pinned item"] = ""; -$a->strings["Delete locally"] = ""; -$a->strings["Delete globally"] = ""; -$a->strings["Remove locally"] = "本地删除"; -$a->strings["save to folder"] = "保存在文件夹"; -$a->strings["I will attend"] = "我将会参加"; -$a->strings["I will not attend"] = "我将不会参加"; -$a->strings["I might attend"] = "我可能会参加"; -$a->strings["ignore thread"] = "忽视主题"; -$a->strings["unignore thread"] = "取消忽视主题"; -$a->strings["toggle ignore status"] = "切换忽视状态"; -$a->strings["pin"] = ""; -$a->strings["unpin"] = ""; -$a->strings["toggle pin status"] = ""; -$a->strings["pinned"] = ""; -$a->strings["add star"] = "添加收藏"; -$a->strings["remove star"] = "移除收藏"; -$a->strings["toggle star status"] = ""; -$a->strings["starred"] = ""; -$a->strings["add tag"] = "加标签"; -$a->strings["like"] = "喜欢"; -$a->strings["dislike"] = "不喜欢"; -$a->strings["Share this"] = "分享这个"; -$a->strings["share"] = "分享"; -$a->strings["%s (Received %s)"] = ""; -$a->strings["Comment this item on your system"] = ""; -$a->strings["remote comment"] = ""; -$a->strings["Pushed"] = ""; -$a->strings["Pulled"] = ""; -$a->strings["to"] = "至"; -$a->strings["via"] = "经过"; -$a->strings["Wall-to-Wall"] = "从墙到墙"; -$a->strings["via Wall-To-Wall:"] = "通过从墙到墙"; -$a->strings["Reply to %s"] = ""; -$a->strings["More"] = ""; -$a->strings["Notifier task is pending"] = ""; -$a->strings["Delivery to remote servers is pending"] = ""; -$a->strings["Delivery to remote servers is underway"] = ""; -$a->strings["Delivery to remote servers is mostly done"] = ""; -$a->strings["Delivery to remote servers is done"] = ""; -$a->strings["%d comment"] = [ - 0 => "%d 条评论", -]; -$a->strings["Show more"] = ""; -$a->strings["Show fewer"] = ""; -$a->strings["Attachments:"] = "附件:"; -$a->strings["%s is now following %s."] = "%s 正在关注 %s."; -$a->strings["following"] = "关注"; -$a->strings["%s stopped following %s."] = "%s 停止关注了 %s."; -$a->strings["stopped following"] = "取消关注"; -$a->strings["Hometown:"] = "故乡:"; -$a->strings["Marital Status:"] = ""; -$a->strings["With:"] = ""; -$a->strings["Since:"] = ""; -$a->strings["Sexual Preference:"] = "性取向:"; -$a->strings["Political Views:"] = "政治观念:"; -$a->strings["Religious Views:"] = " 宗教信仰 :"; -$a->strings["Likes:"] = "喜欢:"; -$a->strings["Dislikes:"] = "不喜欢:"; -$a->strings["Title/Description:"] = "标题/描述:"; -$a->strings["Musical interests"] = "音乐兴趣"; -$a->strings["Books, literature"] = "书,文学"; -$a->strings["Television"] = "电视"; -$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐"; -$a->strings["Hobbies/Interests"] = "爱好/兴趣"; -$a->strings["Love/romance"] = "爱情/浪漫"; -$a->strings["Work/employment"] = "工作"; -$a->strings["School/education"] = "学院/教育"; -$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络"; -$a->strings["Friendica Notification"] = "Friendica 通知"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s 的管理员"; -$a->strings["%s Administrator"] = "%s管理员"; -$a->strings["thanks"] = ""; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD 或 MM-DD"; -$a->strings["never"] = "从未"; -$a->strings["less than a second ago"] = "一秒以内"; -$a->strings["year"] = "年"; -$a->strings["years"] = "年"; -$a->strings["months"] = "月"; -$a->strings["weeks"] = "星期"; -$a->strings["days"] = "天"; -$a->strings["hour"] = "小时"; -$a->strings["hours"] = "小时"; -$a->strings["minute"] = "分钟"; -$a->strings["minutes"] = "分钟"; -$a->strings["second"] = "秒"; -$a->strings["seconds"] = "秒"; -$a->strings["in %1\$d %2\$s"] = ""; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前"; -$a->strings["(no subject)"] = "(无主题)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; -$a->strings["%s: Updating post-type."] = ""; -$a->strings["default"] = "默认"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "变化"; -$a->strings["Custom"] = ""; -$a->strings["Note"] = "便条"; -$a->strings["Check image permissions if all users are allowed to see the image"] = ""; -$a->strings["Select color scheme"] = ""; -$a->strings["Copy or paste schemestring"] = ""; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = ""; -$a->strings["Navigation bar background color"] = ""; -$a->strings["Navigation bar icon color "] = ""; -$a->strings["Link color"] = "链接颜色"; -$a->strings["Set the background color"] = "设置背景色"; -$a->strings["Content background opacity"] = ""; -$a->strings["Set the background image"] = "设置背景图片"; -$a->strings["Background image style"] = ""; -$a->strings["Login page background image"] = "登录页面背景图片"; -$a->strings["Login page background color"] = "登录页面背景色"; -$a->strings["Leave background image and color empty for theme defaults"] = ""; -$a->strings["Skip to main content"] = ""; -$a->strings["Top Banner"] = ""; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = ""; -$a->strings["Full screen"] = ""; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = ""; -$a->strings["Single row mosaic"] = ""; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = ""; -$a->strings["Mosaic"] = ""; -$a->strings["Repeat image to fill the screen."] = ""; -$a->strings["Guest"] = ""; -$a->strings["Visitor"] = "访客"; -$a->strings["Alignment"] = "对齐"; -$a->strings["Left"] = "左边"; -$a->strings["Center"] = "中间"; -$a->strings["Color scheme"] = "色彩方案"; -$a->strings["Posts font size"] = "文章"; -$a->strings["Textareas font size"] = "文本区字体大小"; -$a->strings["Comma separated list of helper forums"] = ""; -$a->strings["don't show"] = "不要显示"; -$a->strings["show"] = "显示"; -$a->strings["Set style"] = "设置风格"; -$a->strings["Community Pages"] = "社会页"; -$a->strings["Community Profiles"] = "社会简介"; -$a->strings["Help or @NewHere ?"] = "需要帮助或@第一次来这儿?"; -$a->strings["Connect Services"] = "连接服务"; -$a->strings["Find Friends"] = "找朋友们"; -$a->strings["Last users"] = "上次用户"; -$a->strings["Quick Start"] = "快速入门"; +$a->strings["View Contacts"] = "查看联系人"; +$a->strings["newer"] = "更新"; +$a->strings["older"] = "更旧"; +$a->strings["Embedding disabled"] = "嵌入已停用"; +$a->strings["Embedded content"] = "嵌入内容"; +$a->strings["prev"] = "上个"; +$a->strings["last"] = "最后"; +$a->strings["Loading more entries..."] = "没有项目..."; +$a->strings["The end"] = ""; +$a->strings["Click to open/close"] = "点击为开关"; +$a->strings["Image/photo"] = "图像/照片"; +$a->strings["%2\$s %3\$s"] = "%2\$s%3\$s"; +$a->strings["$1 wrote:"] = "$1写:"; +$a->strings["Encrypted content"] = "加密的内容"; +$a->strings["Invalid source protocol"] = "无效的源协议"; +$a->strings["Invalid link protocol"] = "无效的连接协议"; +$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."] = "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。"; From e3ee79da2234d0fca4a7cbf183516c6c11e63e63 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:37:03 +0200 Subject: [PATCH 13/44] PL translation update THX Walis --- view/lang/pl/messages.po | 17139 ++++++++++++++++++------------------- view/lang/pl/strings.php | 2999 ++++--- 2 files changed, 10053 insertions(+), 10085 deletions(-) diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index ba402ec2fb..6d623180a5 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -56,9 +56,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-06-17 19:26+0000\n" -"Last-Translator: Waldemar Stoczkowski\n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-05 00:17+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,1116 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "standardowe" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "zielone zero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "fioletowe zero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "zajączek wielkanocny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "ciemne zero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "luźny" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Potwierdź" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Ustawienia motywu" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Zmiana" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Wyrównanie" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Lewo" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Środek" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Zestaw kolorów" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Rozmiar czcionki postów" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Rozmiar czcionki Textareas" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Lista pomocników oddzielona przecinkami" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "nie pokazuj" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "pokaż" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Ustaw styl" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Strony społeczności" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Profile społeczności" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Pomóż lub @NowyTutaj?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Połączone serwisy" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Znajdź znajomych" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Ostatni użytkownicy" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Znajdź ludzi" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Wpisz nazwę lub zainteresowanie" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Połącz/Obserwuj" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Przykład: Jan Kowalski, Wędkarstwo" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Znajdź" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Osoby, które możesz znać" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Podobne zainteresowania" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Domyślny profil" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Zaproś znajomych" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Katalog globalny" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Katalog lokalny" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Fora" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "Zewnętrzny link do forum" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "pokaż więcej" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Szybki start" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Pomoc" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "Niestandardowe" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Uwaga" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Sprawdź uprawnienia do zdjęć, jeśli wszyscy użytkownicy mogą zobaczyć obraz" + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "Wybierz schemat kolorów" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "Skopiuj lub wklej schemat" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat" + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Kolor tła paska nawigacyjnego" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Kolor ikon na pasku nawigacyjnym " + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Kolor łączy" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Ustaw kolor tła" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "Nieprzezroczystość tła treści" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Ustaw obraz tła" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "Styl tła" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "Obraz tła strony logowania" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "Kolor tła strony logowania" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji" + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Gość" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Odwiedzający" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Status" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "Twoje posty i rozmowy" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Profil użytkownika" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "Twoja strona profilowa" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Zdjęcia" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "Twoje zdjęcia" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Filmy" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "Twoje filmy" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Wydarzenia" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "Twoje wydarzenia" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Sieć" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "Rozmowy Twoich przyjaciół" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Wydarzenia i kalendarz" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Wiadomości" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Prywatne maile" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Ustawienia" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Ustawienia konta" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Kontakty" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Zarządzaj listą przyjaciół i kontaktami" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Śledź wątek" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "Przejdź do głównej zawartości" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Górny Baner" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Zmień rozmiar obrazu na szerokość ekranu i pokaż kolor tła poniżej na długich stronach." + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Pełny ekran" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Zmień rozmiar obrazu, aby wypełnić cały ekran, przycinając prawy lub dolny." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Mozaika jednorzędowa" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Zmień rozmiar obrazu, aby powtórzyć go w jednym wierszu, w pionie lub w poziomie." + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Mozaika" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Powtórz obraz, aby wypełnić ekran." + +#: update.php:195 +#, php-format +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku. " + +#: update.php:250 +#, php-format +msgid "%s: Updating post-type." +msgstr "%s: Aktualizowanie typu postu." + +#: include/conversation.php:188 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s zaczepił Cię %2$s" + +#: include/conversation.php:220 src/Model/Item.php:3330 +msgid "event" +msgstr "wydarzenie" + +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 +msgid "status" +msgstr "status" + +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 +msgid "photo" +msgstr "zdjęcie" + +#: include/conversation.php:242 mod/tagger.php:122 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" + +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 +msgid "Select" +msgstr "Wybierz" + +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 +msgid "Delete" +msgstr "Usuń" + +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Pokaż %s's profil @ %s" + +#: include/conversation.php:602 src/Object/Post.php:428 +msgid "Categories:" +msgstr "Kategorie:" + +#: include/conversation.php:603 src/Object/Post.php:429 +msgid "Filed under:" +msgstr "Zapisano w:" + +#: include/conversation.php:610 src/Object/Post.php:454 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: include/conversation.php:625 +msgid "View in context" +msgstr "Zobacz w kontekście" + +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 +msgid "Please wait" +msgstr "Proszę czekać" + +#: include/conversation.php:691 +msgid "remove" +msgstr "usuń" + +#: include/conversation.php:695 +msgid "Delete Selected Items" +msgstr "Usuń zaznaczone elementy" + +#: include/conversation.php:876 src/Model/Contact.php:1170 +msgid "View Status" +msgstr "Zobacz status" + +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 +msgid "View Profile" +msgstr "Zobacz profil" + +#: include/conversation.php:878 src/Model/Contact.php:1172 +msgid "View Photos" +msgstr "Zobacz zdjęcia" + +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 +msgid "Network Posts" +msgstr "Wiadomości sieciowe" + +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 +msgid "View Contact" +msgstr "Pokaż kontakt" + +#: include/conversation.php:881 src/Model/Contact.php:1176 +msgid "Send PM" +msgstr "Wyślij prywatną wiadomość" + +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 +msgid "Block" +msgstr "Zablokuj" + +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:110 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 +msgid "Ignore" +msgstr "Ignoruj" + +#: include/conversation.php:887 src/Model/Contact.php:1177 +msgid "Poke" +msgstr "Zaczepka" + +#: include/conversation.php:1018 +#, php-format +msgid "%s likes this." +msgstr "%s lubi to." + +#: include/conversation.php:1021 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nie lubi tego." + +#: include/conversation.php:1024 +#, php-format +msgid "%s attends." +msgstr "%s uczestniczy." + +#: include/conversation.php:1027 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nie uczestniczy." + +#: include/conversation.php:1030 +#, php-format +msgid "%s attends maybe." +msgstr "%s może bierze udział." + +#: include/conversation.php:1033 include/conversation.php:1076 +#, php-format +msgid "%s reshared this." +msgstr "%sudostępnił to. " + +#: include/conversation.php:1041 +msgid "and" +msgstr "i" + +#: include/conversation.php:1047 +#, php-format +msgid "and %d other people" +msgstr "i %d inni ludzie" + +#: include/conversation.php:1055 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d ludzi lubi to" + +#: include/conversation.php:1056 +#, php-format +msgid "%s like this." +msgstr "%s lubię to." + +#: include/conversation.php:1059 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d ludzi nie lubi tego" + +#: include/conversation.php:1060 +#, php-format +msgid "%s don't like this." +msgstr "%s nie lubię tego." + +#: include/conversation.php:1063 +#, php-format +msgid "%2$d people attend" +msgstr "%2$dosoby uczestniczą" + +#: include/conversation.php:1064 +#, php-format +msgid "%s attend." +msgstr "%s uczestniczy." + +#: include/conversation.php:1067 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$dludzie nie uczestniczą" + +#: include/conversation.php:1068 +#, php-format +msgid "%s don't attend." +msgstr "%s nie uczestniczy." + +#: include/conversation.php:1071 +#, php-format +msgid "%2$d people attend maybe" +msgstr "Możliwe, że %2$d osoby będą uczestniczyć" + +#: include/conversation.php:1072 +#, php-format +msgid "%s attend maybe." +msgstr "%sbyć może uczestniczyć." + +#: include/conversation.php:1075 +#, php-format +msgid "%2$d people reshared this" +msgstr "%2$d użytkowników udostępniło to dalej" + +#: include/conversation.php:1105 +msgid "Visible to everybody" +msgstr "Widoczne dla wszystkich" + +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:" + +#: include/conversation.php:1107 +msgid "Tag term:" +msgstr "Termin tagu:" + +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 +msgid "Save to Folder:" +msgstr "Zapisz w folderze:" + +#: include/conversation.php:1109 +msgid "Where are you right now?" +msgstr "Gdzie teraz jesteś?" + +#: include/conversation.php:1110 +msgid "Delete item(s)?" +msgstr "Usunąć pozycję (pozycje)?" + +#: include/conversation.php:1142 +msgid "New Post" +msgstr "Nowy Post" + +#: include/conversation.php:1145 +msgid "Share" +msgstr "Podziel się" + +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 +msgid "Loading..." +msgstr "Ładowanie..." + +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 +msgid "Upload photo" +msgstr "Wyślij zdjęcie" + +#: include/conversation.php:1148 mod/editpost.php:91 +msgid "upload photo" +msgstr "dodaj zdjęcie" + +#: include/conversation.php:1149 mod/editpost.php:92 +msgid "Attach file" +msgstr "Załącz plik" + +#: include/conversation.php:1150 mod/editpost.php:93 +msgid "attach file" +msgstr "załącz plik" + +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 +msgid "Bold" +msgstr "Pogrubienie" + +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 +msgid "Italic" +msgstr "Kursywa" + +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 +msgid "Underline" +msgstr "Podkreślenie" + +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 +msgid "Quote" +msgstr "Cytat" + +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 +msgid "Code" +msgstr "Kod" + +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 +msgid "Image" +msgstr "Obraz" + +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 +msgid "Link" +msgstr "Link" + +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 +msgid "Link or Media" +msgstr "Link lub Media" + +#: include/conversation.php:1159 mod/editpost.php:100 +#: src/Module/Item/Compose.php:155 +msgid "Set your location" +msgstr "Ustaw swoją lokalizację" + +#: include/conversation.php:1160 mod/editpost.php:101 +msgid "set location" +msgstr "wybierz lokalizację" + +#: include/conversation.php:1161 mod/editpost.php:102 +msgid "Clear browser location" +msgstr "Wyczyść lokalizację przeglądarki" + +#: include/conversation.php:1162 mod/editpost.php:103 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: include/conversation.php:1164 mod/editpost.php:117 +#: src/Module/Item/Compose.php:160 +msgid "Set title" +msgstr "Podaj tytuł" + +#: include/conversation.php:1166 mod/editpost.php:119 +#: src/Module/Item/Compose.php:161 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (lista słów oddzielonych przecinkiem)" + +#: include/conversation.php:1168 mod/editpost.php:105 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" + +#: include/conversation.php:1169 mod/editpost.php:134 +msgid "permissions" +msgstr "zezwolenia" + +#: include/conversation.php:1178 mod/editpost.php:114 +msgid "Public post" +msgstr "Publiczny post" + +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 +msgid "Preview" +msgstr "Podgląd" + +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 +msgid "Cancel" +msgstr "Anuluj" + +#: include/conversation.php:1191 +msgid "Post to Groups" +msgstr "Opublikuj w grupach" + +#: include/conversation.php:1192 +msgid "Post to Contacts" +msgstr "Wstaw do kontaktów" + +#: include/conversation.php:1193 +msgid "Private post" +msgstr "Prywatne posty" + +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 +msgid "Message" +msgstr "Wiadomość" + +#: include/conversation.php:1199 mod/editpost.php:133 +msgid "Browser" +msgstr "Przeglądarka" + +#: include/conversation.php:1201 mod/editpost.php:136 +msgid "Open Compose page" +msgstr "Otwórz stronę Redagowanie" + +#: include/enotify.php:50 +msgid "[Friendica:Notify]" +msgstr "[Friendica: Powiadomienie]" + +#: include/enotify.php:140 +#, php-format +msgid "%s New mail received at %s" +msgstr "%s Nowa poczta otrzymana o %s" + +#: include/enotify.php:142 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s wysłał(-a) ci nową prywatną wiadomość na %2$s." + +#: include/enotify.php:143 +msgid "a private message" +msgstr "prywatna wiadomość" + +#: include/enotify.php:143 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s wysłał(-a) ci %2$s." + +#: include/enotify.php:145 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości." + +#: include/enotify.php:189 +#, php-format +msgid "%1$s replied to you on %2$s's %3$s %4$s" +msgstr "%1$s odpowiedział ci na %2$s's %3$s %4$s" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s tagged you on %2$s's %3$s %4$s" +msgstr "%1$s oznaczył cię na %2$s's %3$s %4$s" + +#: include/enotify.php:193 +#, php-format +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "%1$s skomentował %2$s's %3$s %4$s" + +#: include/enotify.php:203 +#, php-format +msgid "%1$s replied to you on your %2$s %3$s" +msgstr "%1$s odpowiedział ci na twój %2$s %3$s" + +#: include/enotify.php:205 +#, php-format +msgid "%1$s tagged you on your %2$s %3$s" +msgstr "%1$s oznaczył cię tagiem na twoim %2$s %3$s" + +#: include/enotify.php:207 +#, php-format +msgid "%1$s commented on your %2$s %3$s" +msgstr "" + +#: include/enotify.php:214 +#, php-format +msgid "%1$s replied to you on their %2$s %3$s" +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s tagged you on their %2$s %3$s" +msgstr "" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s commented on their %2$s %3$s" +msgstr "" + +#: include/enotify.php:229 +#, php-format +msgid "%s %s tagged you" +msgstr "%s %s oznaczył Cię" + +#: include/enotify.php:231 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s oznaczono Cię tagiem %2$s" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "%1$s Komentarz do rozmowy #%2$d autor %3$s" + +#: include/enotify.php:235 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s skomentował(-a) rozmowę którą śledzisz." + +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na rozmowę." + +#: include/enotify.php:247 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:249 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s opublikował(-a) wpis na twojej ścianie o %2$s" + +#: include/enotify.php:250 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s opublikował(-a) na [url=%2$s]twojej ścianie[/url]" + +#: include/enotify.php:262 +#, php-format +msgid "%s %s shared a new post" +msgstr "%s %s udostępnił nowy post" + +#: include/enotify.php:264 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s udostępnił(-a) nowy wpis na %2$s" + +#: include/enotify.php:265 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s[url=%2$s]udostępnił wpis[/url]." + +#: include/enotify.php:277 +#, php-format +msgid "%1$s %2$s poked you" +msgstr "%1$s %2$s zaczepił cię" + +#: include/enotify.php:279 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s zaczepił Cię %2$s" + +#: include/enotify.php:280 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s[url=%2$s] zaczepił Cię[/url]." + +#: include/enotify.php:297 +#, php-format +msgid "%s %s tagged your post" +msgstr "%s %s oznaczył twój post" + +#: include/enotify.php:299 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s oznaczył(-a) twój wpis na %2$s" + +#: include/enotify.php:300 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$soznacz [url=%2$s]twój post[/url]" + +#: include/enotify.php:312 +#, php-format +msgid "%s Introduction received" +msgstr "" + +#: include/enotify.php:314 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Otrzymałeś wstęp od '%1$s' z %2$s" + +#: include/enotify.php:315 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s." + +#: include/enotify.php:320 include/enotify.php:366 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Możesz odwiedzić ich profil na stronie %s" + +#: include/enotify.php:322 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." + +#: include/enotify.php:329 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "%s Nowa osoba udostępnia Ci coś" + +#: include/enotify.php:331 include/enotify.php:332 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s dzieli się z tobą w %2$s" + +#: include/enotify.php:339 +#, php-format +msgid "%s You have a new follower" +msgstr "%s Masz nowego obserwującego" + +#: include/enotify.php:341 include/enotify.php:342 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Masz nowego obserwatora na %2$s : %1$s" + +#: include/enotify.php:355 +#, php-format +msgid "%s Friend suggestion received" +msgstr "%s Otrzymano sugestię znajomego" + +#: include/enotify.php:357 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s" + +#: include/enotify.php:358 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s." + +#: include/enotify.php:364 +msgid "Name:" +msgstr "Imię:" + +#: include/enotify.php:365 +msgid "Photo:" +msgstr "Zdjęcie:" + +#: include/enotify.php:368 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię." + +#: include/enotify.php:376 include/enotify.php:391 +#, php-format +msgid "%s Connection accepted" +msgstr "%s Połączenie zaakceptowane" + +#: include/enotify.php:378 include/enotify.php:393 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s" + +#: include/enotify.php:379 include/enotify.php:394 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s zaakceptował twoją [url=%1$s] prośbę o połączenie [/url]." + +#: include/enotify.php:384 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń." + +#: include/enotify.php:386 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku." + +#: include/enotify.php:399 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a fan, which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie." + +#: include/enotify.php:401 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." +msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkową lub bardziej ścisłą relację w przyszłości. " + +#: include/enotify.php:403 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji." + +#: include/enotify.php:413 mod/removeme.php:63 +msgid "[Friendica System Notify]" +msgstr "[Powiadomienie Systemu Friendica]" + +#: include/enotify.php:413 +msgid "registration request" +msgstr "prośba o rejestrację" + +#: include/enotify.php:415 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s" + +#: include/enotify.php:416 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s." + +#: include/enotify.php:421 +#, php-format +msgid "" +"Full Name:\t%s\n" +"Site Location:\t%s\n" +"Login Name:\t%s (%s)" +msgstr "Imię i nazwisko:\t%s\nLokalizacja witryny:\t%s\nNazwa użytkownika:\t%s(%s)" + +#: include/enotify.php:427 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek." + +#: include/api.php:1127 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -75,7 +1184,7 @@ msgstr[1] "Dzienny limit opublikowanych %d postów. Post został odrzucony." msgstr[2] "Dzienny limit opublikowanych %d postów. Post został odrzucony." msgstr[3] "Dzienny limit opublikowanych %d postów. Post został odrzucony." -#: include/api.php:1137 +#: include/api.php:1141 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -85,1388 +1194,1374 @@ msgstr[1] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." msgstr[2] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." msgstr[3] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." -#: include/api.php:1151 +#: include/api.php:1155 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "Miesięczny limit %d wysyłania postów. Post został odrzucony." -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 #: src/Module/Settings/Profile/Photo/Crop.php:113 #: src/Module/Settings/Profile/Photo/Crop.php:129 #: src/Module/Settings/Profile/Photo/Crop.php:178 #: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 msgid "Profile Photos" msgstr "Zdjęcie profilowe" -#: include/conversation.php:189 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s zaczepił Cię %2$s" - -#: include/conversation.php:221 src/Model/Item.php:3444 -msgid "event" -msgstr "wydarzenie" - -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 -msgid "status" -msgstr "status" - -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 -msgid "photo" -msgstr "zdjęcie" - -#: include/conversation.php:243 mod/tagger.php:121 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" - -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 -msgid "Select" -msgstr "Wybierz" - -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 -msgid "Delete" -msgstr "Usuń" - -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Pokaż %s's profil @ %s" - -#: include/conversation.php:603 src/Object/Post.php:426 -msgid "Categories:" -msgstr "Kategorie:" - -#: include/conversation.php:604 src/Object/Post.php:427 -msgid "Filed under:" -msgstr "Zapisano w:" - -#: include/conversation.php:611 src/Object/Post.php:452 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" - -#: include/conversation.php:626 -msgid "View in context" -msgstr "Zobacz w kontekście" - -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 -msgid "Please wait" -msgstr "Proszę czekać" - -#: include/conversation.php:692 -msgid "remove" -msgstr "usuń" - -#: include/conversation.php:696 -msgid "Delete Selected Items" -msgstr "Usuń zaznaczone elementy" - -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "Śledź wątek" - -#: include/conversation.php:858 src/Model/Contact.php:1277 -msgid "View Status" -msgstr "Zobacz status" - -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 -msgid "View Profile" -msgstr "Zobacz profil" - -#: include/conversation.php:860 src/Model/Contact.php:1279 -msgid "View Photos" -msgstr "Zobacz zdjęcia" - -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 -msgid "Network Posts" -msgstr "Wiadomości sieciowe" - -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 -msgid "View Contact" -msgstr "Pokaż kontakt" - -#: include/conversation.php:863 src/Model/Contact.php:1283 -msgid "Send PM" -msgstr "Wyślij prywatną wiadomość" - -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 -msgid "Block" -msgstr "Zablokuj" - -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 -#: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 -msgid "Ignore" -msgstr "Ignoruj" - -#: include/conversation.php:869 src/Model/Contact.php:1284 -msgid "Poke" -msgstr "Zaczepka" - -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "Połącz/Obserwuj" - -#: include/conversation.php:1000 -#, php-format -msgid "%s likes this." -msgstr "%s lubi to." - -#: include/conversation.php:1003 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nie lubi tego." - -#: include/conversation.php:1006 -#, php-format -msgid "%s attends." -msgstr "%s uczestniczy." - -#: include/conversation.php:1009 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nie uczestniczy." - -#: include/conversation.php:1012 -#, php-format -msgid "%s attends maybe." -msgstr "%s może bierze udział." - -#: include/conversation.php:1015 include/conversation.php:1058 -#, php-format -msgid "%s reshared this." -msgstr "%sudostępnił to. " - -#: include/conversation.php:1023 -msgid "and" -msgstr "i" - -#: include/conversation.php:1029 -#, php-format -msgid "and %d other people" -msgstr "i %d inni ludzie" - -#: include/conversation.php:1037 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d ludzi lubi to" - -#: include/conversation.php:1038 -#, php-format -msgid "%s like this." -msgstr "%s lubię to." - -#: include/conversation.php:1041 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d ludzi nie lubi tego" - -#: include/conversation.php:1042 -#, php-format -msgid "%s don't like this." -msgstr "%s nie lubię tego." - -#: include/conversation.php:1045 -#, php-format -msgid "%2$d people attend" -msgstr "%2$dosoby uczestniczą" - -#: include/conversation.php:1046 -#, php-format -msgid "%s attend." -msgstr "%s uczestniczy." - -#: include/conversation.php:1049 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$dludzie nie uczestniczą" - -#: include/conversation.php:1050 -#, php-format -msgid "%s don't attend." -msgstr "%s nie uczestniczy." - -#: include/conversation.php:1053 -#, php-format -msgid "%2$d people attend maybe" -msgstr "Możliwe, że %2$d osoby będą uczestniczyć" - -#: include/conversation.php:1054 -#, php-format -msgid "%s attend maybe." -msgstr "%sbyć może uczestniczyć." - -#: include/conversation.php:1057 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d użytkowników udostępniło to dalej" - -#: include/conversation.php:1087 -msgid "Visible to everybody" -msgstr "Widoczne dla wszystkich" - -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 -msgid "Please enter a image/video/audio/webpage URL:" -msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:" - -#: include/conversation.php:1089 -msgid "Tag term:" -msgstr "Termin tagu:" - -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 -msgid "Save to Folder:" -msgstr "Zapisz w folderze:" - -#: include/conversation.php:1091 -msgid "Where are you right now?" -msgstr "Gdzie teraz jesteś?" - -#: include/conversation.php:1092 -msgid "Delete item(s)?" -msgstr "Usunąć pozycję (pozycje)?" - -#: include/conversation.php:1124 -msgid "New Post" -msgstr "Nowy Post" - -#: include/conversation.php:1127 -msgid "Share" -msgstr "Podziel się" - -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 -msgid "Loading..." -msgstr "Ładowanie..." - -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 -msgid "Upload photo" -msgstr "Wyślij zdjęcie" - -#: include/conversation.php:1130 mod/editpost.php:91 -msgid "upload photo" -msgstr "dodaj zdjęcie" - -#: include/conversation.php:1131 mod/editpost.php:92 -msgid "Attach file" -msgstr "Załącz plik" - -#: include/conversation.php:1132 mod/editpost.php:93 -msgid "attach file" -msgstr "załącz plik" - -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 -msgid "Bold" -msgstr "Pogrubienie" - -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 -msgid "Italic" -msgstr "Kursywa" - -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 -msgid "Underline" -msgstr "Podkreślenie" - -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 -msgid "Quote" -msgstr "Cytat" - -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 -msgid "Code" -msgstr "Kod" - -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 -msgid "Image" -msgstr "Obraz" - -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 -msgid "Link" -msgstr "Link" - -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 -msgid "Link or Media" -msgstr "Link lub Media" - -#: include/conversation.php:1141 mod/editpost.php:100 -#: src/Module/Item/Compose.php:155 -msgid "Set your location" -msgstr "Ustaw swoją lokalizację" - -#: include/conversation.php:1142 mod/editpost.php:101 -msgid "set location" -msgstr "wybierz lokalizację" - -#: include/conversation.php:1143 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Wyczyść lokalizację przeglądarki" - -#: include/conversation.php:1144 mod/editpost.php:103 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: include/conversation.php:1146 mod/editpost.php:117 -#: src/Module/Item/Compose.php:160 -msgid "Set title" -msgstr "Podaj tytuł" - -#: include/conversation.php:1148 mod/editpost.php:119 -#: src/Module/Item/Compose.php:161 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (lista słów oddzielonych przecinkiem)" - -#: include/conversation.php:1150 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: include/conversation.php:1151 mod/editpost.php:134 -msgid "permissions" -msgstr "zezwolenia" - -#: include/conversation.php:1160 mod/editpost.php:114 -msgid "Public post" -msgstr "Publiczny post" - -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 -msgid "Preview" -msgstr "Podgląd" - -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 -msgid "Cancel" -msgstr "Anuluj" - -#: include/conversation.php:1173 -msgid "Post to Groups" -msgstr "Opublikuj w grupach" - -#: include/conversation.php:1174 -msgid "Post to Contacts" -msgstr "Wstaw do kontaktów" - -#: include/conversation.php:1175 -msgid "Private post" -msgstr "Prywatne posty" - -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 -msgid "Message" -msgstr "Wiadomość" - -#: include/conversation.php:1181 mod/editpost.php:133 -msgid "Browser" -msgstr "Przeglądarka" - -#: include/conversation.php:1183 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "Otwórz stronę Redagowanie" - -#: include/enotify.php:50 -msgid "[Friendica:Notify]" -msgstr "[Friendica: Powiadomienie]" - -#: include/enotify.php:128 -#, php-format -msgid "%s New mail received at %s" -msgstr "%s Nowa poczta otrzymana o %s" - -#: include/enotify.php:130 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s wysłał(-a) ci nową prywatną wiadomość na %2$s." - -#: include/enotify.php:131 -msgid "a private message" -msgstr "prywatna wiadomość" - -#: include/enotify.php:131 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s wysłał(-a) ci %2$s." - -#: include/enotify.php:133 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości." - -#: include/enotify.php:177 -#, php-format -msgid "%1$s replied to you on %2$s's %3$s %4$s" -msgstr "%1$s odpowiedział ci na %2$s's %3$s %4$s" - -#: include/enotify.php:179 -#, php-format -msgid "%1$s tagged you on %2$s's %3$s %4$s" -msgstr "%1$s oznaczył cię na %2$s's %3$s %4$s" - -#: include/enotify.php:181 -#, php-format -msgid "%1$s commented on %2$s's %3$s %4$s" -msgstr "" - -#: include/enotify.php:191 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "%1$s odpowiedział ci na twój %2$s %3$s" - -#: include/enotify.php:193 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:195 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "" - -#: include/enotify.php:202 -#, php-format -msgid "%1$s replied to you on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s tagged you on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:206 -#, php-format -msgid "%1$s commented on their %2$s %3$s" -msgstr "" - -#: include/enotify.php:217 -#, php-format -msgid "%s %s tagged you" -msgstr "%s %s oznaczył Cię" - -#: include/enotify.php:219 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s oznaczono Cię tagiem %2$s" - -#: include/enotify.php:221 -#, php-format -msgid "%1$s Comment to conversation #%2$d by %3$s" -msgstr "%1$s Komentarz do rozmowy #%2$d autor %3$s" - -#: include/enotify.php:223 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s skomentował(-a) rozmowę którą śledzisz." - -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na rozmowę." - -#: include/enotify.php:235 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "" - -#: include/enotify.php:237 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s opublikował(-a) wpis na twojej ścianie o %2$s" - -#: include/enotify.php:238 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s opublikował(-a) na [url=%2$s]twojej ścianie[/url]" - -#: include/enotify.php:250 -#, php-format -msgid "%s %s shared a new post" -msgstr "%s %s udostępnił nowy post" - -#: include/enotify.php:252 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s udostępnił(-a) nowy wpis na %2$s" - -#: include/enotify.php:253 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s[url=%2$s]udostępnił wpis[/url]." - -#: include/enotify.php:265 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s zaczepił cię" - -#: include/enotify.php:267 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s zaczepił Cię %2$s" - -#: include/enotify.php:268 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s[url=%2$s] zaczepił Cię[/url]." - -#: include/enotify.php:285 -#, php-format -msgid "%s %s tagged your post" -msgstr "%s %s oznaczył twój post" - -#: include/enotify.php:287 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s oznaczył(-a) twój wpis na %2$s" - -#: include/enotify.php:288 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$soznacz [url=%2$s]twój post[/url]" - -#: include/enotify.php:300 -#, php-format -msgid "%s Introduction received" -msgstr "" - -#: include/enotify.php:302 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Otrzymałeś wstęp od '%1$s' z %2$s" - -#: include/enotify.php:303 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s." - -#: include/enotify.php:308 include/enotify.php:354 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Możesz odwiedzić ich profil na stronie %s" - -#: include/enotify.php:310 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." - -#: include/enotify.php:317 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "%s Nowa osoba udostępnia Ci coś" - -#: include/enotify.php:319 include/enotify.php:320 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s dzieli się z tobą w %2$s" - -#: include/enotify.php:327 -#, php-format -msgid "%s You have a new follower" -msgstr "%s Masz nowego obserwującego" - -#: include/enotify.php:329 include/enotify.php:330 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Masz nowego obserwatora na %2$s : %1$s" - -#: include/enotify.php:343 -#, php-format -msgid "%s Friend suggestion received" -msgstr "%s Otrzymano sugestię znajomego" - -#: include/enotify.php:345 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s" - -#: include/enotify.php:346 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s." - -#: include/enotify.php:352 -msgid "Name:" -msgstr "Imię:" - -#: include/enotify.php:353 -msgid "Photo:" -msgstr "Zdjęcie:" - -#: include/enotify.php:356 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię." - -#: include/enotify.php:364 include/enotify.php:379 -#, php-format -msgid "%s Connection accepted" -msgstr "%s Połączenie zaakceptowane" - -#: include/enotify.php:366 include/enotify.php:381 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s" - -#: include/enotify.php:367 include/enotify.php:382 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s zaakceptował twoją [url=%1$s] prośbę o połączenie [/url]." - -#: include/enotify.php:372 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." -msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń." - -#: include/enotify.php:374 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku." - -#: include/enotify.php:387 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a fan, which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie." - -#: include/enotify.php:389 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." -msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkową lub bardziej ścisłą relację w przyszłości. " - -#: include/enotify.php:391 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji." - -#: include/enotify.php:401 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "[Powiadomienie Systemu Friendica]" - -#: include/enotify.php:401 -msgid "registration request" -msgstr "prośba o rejestrację" - -#: include/enotify.php:403 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s" - -#: include/enotify.php:404 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s." - -#: include/enotify.php:409 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "Imię i nazwisko:\t%s\nLokalizacja witryny:\t%s\nNazwa użytkownika:\t%s(%s)" - -#: include/enotify.php:415 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek." - -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "Element nie znaleziony." - -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "Czy na pewno chcesz usunąć ten element?" - -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "Tak" - -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "Brak uprawnień." - -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Autoryzacja połączenia aplikacji" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Zaloguj się aby kontynuować." - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?" - -#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "Nie" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Brak dostępu." -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Dostęp do tego profilu został ograniczony." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "" -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "Wydarzenia" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "Widok" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "Poprzedni" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "Następny" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "dzisiaj" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "miesiąc" - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "tydzień" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "dzień" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "lista" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "Użytkownik nie znaleziony" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "Ten format kalendarza nie jest obsługiwany" - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "Nie znaleziono danych do eksportu" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "kalendarz" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "Brak wspólnych kontaktów." - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "Wspólni znajomi" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "Nie znaleziono profilu." - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Nie znaleziono kontaktu." -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Brak uprawnień." + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona." + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "Nie wybrano odbiorcy." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Nie można sprawdzić twojej lokalizacji." + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "Nie udało się wysłać wiadomości." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Błąd zbierania komunikatów." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "Brak odbiorcy." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Proszę wpisać adres URL:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Wyślij prywatną wiadomość" + +#: 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 "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." + +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "Do:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Temat:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Twoja wiadomość:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Wstaw link" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "Nie znaleziono profilu." + +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony." -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Nieoczekiwana odpowiedź od strony zdalnej:" -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Potwierdzenie zostało pomyślnie zakończone." -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie." -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "Wprowadzenie nie powiodło się lub zostało odwołane." -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "Zgłoszona zdana strona:" -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "Nie znaleziono użytkownika dla '%s'" -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "Klucz kodujący jest najwyraźniej uszkodzony." -#: mod/dfrn_confirm.php:410 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Został podany pusty adres URL witryny lub nie można go odszyfrować." -#: mod/dfrn_confirm.php:426 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "Nie znaleziono kontaktu na naszej stronie" -#: mod/dfrn_confirm.php:440 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s" -#: mod/dfrn_confirm.php:456 +#: mod/dfrn_confirm.php:455 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie." -#: mod/dfrn_confirm.php:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "Nie można ustawić danych kontaktowych w naszym systemie." -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie" -#: mod/dfrn_confirm.php:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Nazwa zastrzeżona]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Publiczny dostęp zabroniony." + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "Nie zaznaczono filmów" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "Dostęp do tego obiektu jest ograniczony." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "Zobacz film" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "Zobacz album" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Ostatnio dodane filmy" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Wstaw nowe filmy" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu." + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "pierwszy" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "następny" + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "Brak wyników" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Dopasowanie profilu" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "Brakuje ważnych danych!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Zaktualizuj" + +#: mod/settings.php:200 +msgid "Failed to connect with email account using the settings provided." +msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." + +#: mod/settings.php:229 +msgid "Contact CSV file upload error" +msgstr "Kontakt z plikiem CSV błąd przekazywania plików" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "Importowanie kontaktów zakończone" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "Hasła nie pasują do siebie." + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Hasło zostało zmienione." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "Hasło niezmienione." + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "Użyj krótszej nazwy." + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "Nazwa jest za krótka. " + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "Nieprawidłowe hasło." + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "Niepoprawny e-mail." + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "Nie można zmienić tego e-maila." + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej." + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności." + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Dodaj aplikację" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Zapisz ustawienia" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Nazwa" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Klucz klienta" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Tajny klucz klienta" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Przekierowanie" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "Adres Url ikony" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "Nie możesz edytować tej aplikacji." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Edytuj" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Klucz klienta zaczyna się od" + +#: mod/settings.php:562 +msgid "No name" +msgstr "Bez nazwy" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "Brak skonfigurowanych ustawień dodatków" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "Ustawienia Dodatków" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Dodatkowe funkcje" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "włączone" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "wyłączone" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Wbudowane wsparcie dla połączenia z %s jest %s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "Dostęp do e-maila jest wyłączony na tej stronie." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "Brak" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Portale społecznościowe" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "Ogólne ustawienia mediów społecznościowych" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "Akceptuj tylko posty najwyższego poziomu według kontaktów, które obserwujesz" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "System dokonuje automatycznego uzupełniania wątków po otrzymaniu komentarza. Ma to taki efekt uboczny, że możesz otrzymywać posty, które zostały założone przez osoby niebędące obserwatorami, ale zostały skomentowane przez osobę, którą obserwujesz. To ustawienie wyłącza to zachowanie. Po aktywacji będziesz otrzymywać wyłącznie wpisy od osób, które naprawdę obserwujesz." + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "Wyłącz ostrzeżenie o treści" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś." + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Wyłącz inteligentne skracanie" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "Dołącz tytuł linku" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Domyślna grupa dla kontaktów OStatus" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Twoje starsze konto społecznościowe GNU" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu." + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "Napraw subskrypcje OStatus" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: mod/settings.php:692 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." + +#: mod/settings.php:693 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Ochrona:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "Nazwa logowania e-mail:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "E-mail hasło:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Adres zwrotny:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "Przenieś do folderu" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "Przenieś do folderu:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Rodzaje kont" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Podtypy osobistych stron" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Podtypy społeczności forum" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Strona osobista" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Konto dla profilu osobistego." + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Strona Organizacji" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "Strona Wiadomości" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Forum społecznościowe" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Konto do dyskusji w społeczności." + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Normalna strona konta" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Strona Soapbox" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Forum publiczne" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "Automatyczna strona znajomego" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Prywatne Forum [Eksperymentalne]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." + +#: mod/settings.php:814 +msgid "Publish your profile in your local site directory?" +msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Twój profil zostanie również opublikowany w globalnych katalogach Friendica (np. %s)." + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Twój adres tożsamości to '%s' lub '%s'." + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Ustawienia konta" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Ustawienia hasła" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "Nowe hasło:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:)." + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Potwierdź:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Aktualne hasło:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Hasło:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "Usuń adres URL OpenID" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Ustawienia podstawowe" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Imię i nazwisko:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "Adres email:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Twoja strefa czasowa:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Twój język:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Wybierz język, ktory bedzie używany do wyświetlania użytkownika friendica i wysłania Ci e-maili" + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Domyślna lokalizacja wiadomości:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Używaj lokalizacji przeglądarki:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Ustawienia bezpieczeństwa i prywatności" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "(aby zapobiec spamowaniu)" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "Czy Twój profil ma być dostępny do wyszukiwania na całym świecie?" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie." + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów." + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób." + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "Zamieszczaj posty publiczne niepubliczne" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych." + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "Udostępnij wszystkie opublikowane zdjęcia" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Ta opcja powoduje, że każde opublikowane zdjęcie jest dostępne poprzez bezpośredni link. Jest to obejście problemu polegającego na tym, że większość innych sieci nie może obsłużyć uprawnień do zdjęć. Jednak zdjęcia niepubliczne nadal nie będą widoczne publicznie w Twoich albumach." + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów." + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Domyślne prawa dostępu wiadomości" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "Ustawienia ważności" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Posty wygasną automatycznie po następującej liczbie dni:" + +#: mod/settings.php:901 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." + +#: mod/settings.php:902 +msgid "Expire posts" +msgstr "Ważność wiadomości" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "Po aktywacji posty i komentarze wygasną." + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "Ważność osobistych notatek" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Po aktywacji osobiste notatki na stronie profilu wygasną." + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "Wygasaj posty oznaczone gwiazdką" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Oznaczanie postów gwiazdką powoduje, że wygasają. To zachowanie jest zastępowane przez to ustawienie." + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "Wygasanie zdjęć" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "Po aktywacji zdjęcia wygasną." + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "Wygasają tylko posty innych osób" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Po aktywacji Twoje posty nigdy nie wygasają. Zatem powyższe ustawienia obowiązują tylko dla otrzymanych postów." + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Ustawienia powiadomień" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Wysyłaj powiadmonienia na email, kiedy:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "Otrzymałeś zaproszenie" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "Twoje zaproszenie jest potwierdzone" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "Ktoś pisze na twoim profilu" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "Ktoś pisze komentarz nawiązujący." + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "Otrzymałeś prywatną wiadomość" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "Otrzymałeś propozycję od znajomych" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "Jesteś oznaczony tagiem w poście" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Aktywuj powiadomienia na pulpicie" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Pokazuj wyskakujące okienko gdy otrzymasz powiadomienie" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "E-maile z powiadomieniami tekstowymi" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Pokazuj szczegółowe powiadomienia" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Zaawansowane ustawienia konta/rodzaju strony" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "Import kontaktów" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta." + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "Prześlij plik" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Przeniesienie" + +#: mod/settings.php:939 +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 "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." + +#: mod/settings.php:940 +msgid "Resend relocate message to contacts" +msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} chce być Twoim znajomym" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} wymagana rejestracja" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "Brak wspólnych kontaktów." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Wspólni znajomi" + +#: mod/network.php:304 +msgid "No items found" +msgstr "" + +#: mod/network.php:547 +msgid "No such group" +msgstr "Nie ma takiej grupy" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "Grupa jest pusta" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Grupa: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Nieprawidłowy kontakt." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "Ostatnia Aktywność" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "Sortuj według ostatniej aktywności" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "Najnowsze wiadomości" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "Sortowanie według daty otrzymania postu" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Osobiste" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Posty, które wspominają lub angażują Ciebie" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Ulubione" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "Ulubione posty" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Ponowne subskrybowanie kontaktów OStatus" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Błąd" +msgstr[1] "Błędów" +msgstr[2] "Błędy" +msgstr[3] "Błędów" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "Gotowe" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "Nie obserwujesz tego kontaktu." + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Rozłącz/Nie obserwuj" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "Twój adres tożsamości:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "Adres URL profilu" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Status wiadomości i postów" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "Nowa wiadomość" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "Nie można znaleźć informacji kontaktowych." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Odrzuć" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "Czy na pewno chcesz usunąć tę wiadomość?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Tak" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "Nie znaleziono rozmowy." + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:300 +msgid "No messages." +msgstr "Brak wiadomości." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Wiadomość nie jest dostępna." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Usuń wiadomość" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:m A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Usuń rozmowę" + +#: mod/message.php:426 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." + +#: mod/message.php:430 +msgid "Send Reply" +msgstr "Odpowiedz" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Nieznany nadawca - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Ty i %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s i ty" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d wiadomość" +msgstr[1] "%d wiadomości" +msgstr[2] "%d wiadomości" +msgstr[3] "%d wiadomości" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "Subskrybowanie kontaktów OStatus" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "Brak kontaktu." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "Nie można pobrać informacji o kontakcie." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "Nie można pobrać znajomych do kontaktu." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "powodzenie" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "nie powiodło się" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "ignorowany(-a)" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s witamy %2$s" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "To wprowadzenie zostało już zaakceptowane." +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "Użytkownik usunął swoje konto" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu." - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, 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 wymagany parametr nie został znaleziony w podanej lokacji" -msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" -msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" -msgstr[3] "%d wymagany parametr nie został znaleziony w podanej lokacji" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Wprowadzanie zakończone." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Nieodwracalny błąd protokołu." - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "Profil niedostępny." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Wprowadzono zabezpieczenia przed spamem." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Przyjaciele namawiają do spróbowania za 24h." - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "Nieprawidłowy lokalizator" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Już się tu przedstawiłeś." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Wygląda na to, że już jesteście znajomymi z %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Nieprawidłowy adres URL profilu." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "Nie dozwolony adres URL profilu." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "Zablokowana domena" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "Aktualizacja rekordu kontaktu nie powiodła się." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Twoje dane zostały wysłane." - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Zaloguj się, aby potwierdzić wprowadzenie." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "Identyfikatorem użytkownika jest %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Usuń moje konto" + +#: mod/removeme.php:100 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Potwierdź" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Ukryj kontakt" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Usuń pozycję Tag" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Witaj na stronie domowej %s." +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Wybierz tag do usunięcia: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Usuń" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "Publiczny dostęp zabroniony." - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "Przyjaciel/Prośba o połączenie" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system (na przykład nie działa z Diaspora), musisz subskrybować %s bezpośrednio w systemie" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny." -#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "" - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "Twój adres lub adres URL profilu Webfinger:" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na następujące pytania:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "%s zna cię" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "Żądany element nie istnieje lub został usunięty." -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Dostęp do tego profilu został ograniczony." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." msgstr "Kanał dla tego elementu jest niedostępny." -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Nie znaleziono elementu" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Nieprawidłowe żądanie." -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Edytuj post" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Obraz przekracza limit rozmiaru wynoszący %s" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "Zapisz" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Przetwarzanie obrazu nie powiodło się." -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "Wstaw link" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Tablica zdjęć" -#: mod/editpost.php:95 -msgid "web link" -msgstr "odnośnik sieciowy" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Wstaw link do filmu" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "link do filmu" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Wstaw link do audio" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "link do audio" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "CC: adresy e-mail" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Przykład: bob@example.com, mary@example.com" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" - -#: mod/events.php:523 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "Data rozpoczęcia i tytuł są wymagane." - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "Wymagany" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "Dopasuj dla strefy czasowej widza" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "Opis:" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "Lokalizacja:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "Tytuł:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Potwierdź" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "Podstawowy" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "Zaawansowany" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "Uprawnienia" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "Nie udało się usunąć wydarzenia" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "Wydarzenie zostało usunięte" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "Zdjęcia" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "Zdjęcia kontaktu" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "Załaduj" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "Pliki" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Nie można dodać kontaktu." - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "Już dodałeś ten kontakt." - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany." - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany." - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "Twój adres tożsamości:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "Adres URL profilu" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "Tagi:" - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "Status wiadomości i postów" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "Nie można zlokalizować oryginalnej wiadomości." - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "Pusty wpis został odrzucony." - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "Post zaktualizowany." - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "Element nie został zapisany. " - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "Nie można pobrać elementu." - -#: mod/item.php:831 -msgid "Post published." -msgstr "Post opublikowany." - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Nie są dostępne zdalne informacje o prywatności." - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "Widoczne dla:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "Zwolenników" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "Wzajemne" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Przesyłanie obrazu nie powiodło się." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1568,6 +2663,10 @@ msgid "" "successful login." msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1598,1404 +2697,229 @@ msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\ msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu." +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "To wprowadzenie zostało już zaakceptowane." -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "Połącz" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu." -#: mod/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "pierwszy" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "następny" +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Brak wyników" +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 +#, 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 wymagany parametr nie został znaleziony w podanej lokacji" +msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" +msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" +msgstr[3] "%d wymagany parametr nie został znaleziony w podanej lokacji" -#: mod/match.php:149 -msgid "Profile Match" -msgstr "Dopasowanie profilu" +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Wprowadzanie zakończone." -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "Nowa wiadomość" +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Nieodwracalny błąd protokołu." -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "Nie wybrano odbiorcy." +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Profil niedostępny." -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "Nie można znaleźć informacji kontaktowych." +#: mod/dfrn_request.php:264 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "Nie udało się wysłać wiadomości." +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Wprowadzono zabezpieczenia przed spamem." -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "Błąd zbierania komunikatów." +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Przyjaciele namawiają do spróbowania za 24h." -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "Wysłano." +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Nieprawidłowy lokalizator" -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "Odrzuć" +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "Już się tu przedstawiłeś." -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "Wiadomości" +#: mod/dfrn_request.php:329 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Wygląda na to, że już jesteście znajomymi z %s." -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "Czy na pewno chcesz usunąć tę wiadomość?" +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Nieprawidłowy adres URL profilu." -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "Nie znaleziono rozmowy." +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Nie dozwolony adres URL profilu." -#: mod/message.php:186 -msgid "Message deleted." -msgstr "Wiadomość usunięta." +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Zablokowana domena" -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "Rozmowa usunięta." +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Aktualizacja rekordu kontaktu nie powiodła się." -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "Proszę wpisać adres URL:" +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Twoje dane zostały wysłane." -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "Wyślij prywatną wiadomość" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "Do:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "Temat:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Twoja wiadomość:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "Brak wiadomości." - -#: mod/message.php:367 -msgid "Message not available." -msgstr "Wiadomość nie jest dostępna." - -#: mod/message.php:421 -msgid "Delete message" -msgstr "Usuń wiadomość" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:m A" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "Usuń rozmowę" - -#: mod/message.php:440 +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." -#: mod/message.php:444 -msgid "Send Reply" -msgstr "Odpowiedz" +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Zaloguj się, aby potwierdzić wprowadzenie." -#: mod/message.php:527 -#, php-format -msgid "Unknown sender - %s" -msgstr "Nieznany nadawca - %s" - -#: mod/message.php:529 -#, php-format -msgid "You and %s" -msgstr "Ty i %s" - -#: mod/message.php:531 -#, php-format -msgid "%s and You" -msgstr "%s i ty" - -#: mod/message.php:558 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d wiadomość" -msgstr[1] "%d wiadomości" -msgstr[2] "%d wiadomości" -msgstr[3] "%d wiadomości" - -#: mod/network.php:568 -msgid "No such group" -msgstr "Nie ma takiej grupy" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "Grupa jest pusta" - -#: mod/network.php:593 -#, php-format -msgid "Group: %s" -msgstr "Grupa: %s" - -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "Nieprawidłowy kontakt." - -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "Ostatnia Aktywność" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "Sortuj według ostatniej aktywności" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "Najnowsze wiadomości" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "Sortowanie według daty otrzymania postu" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "Osobiste" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "Posty, które wspominają lub angażują Ciebie" - -#: mod/network.php:930 -msgid "New" -msgstr "Nowy" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "Strumień aktywności - według daty" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "Udostępnione łącza" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "Interesujące linki" - -#: mod/network.php:951 -msgid "Starred" -msgstr "Ulubione" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "Ulubione posty" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Notatki" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "Pomyślnie opublikowano." - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "Subskrybowanie kontaktów OStatus" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Brak kontaktu." - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Nie można pobrać informacji o kontakcie." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Nie można pobrać znajomych do kontaktu." - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Gotowe" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "powodzenie" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "nie powiodło się" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "ignorowany(-a)" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Albumy zdjęć" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "Ostatnio dodane zdjęcia" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "Wyślij nowe zdjęcie" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "wszyscy" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Informacje o kontakcie są niedostępne" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "Nie znaleziono albumu." - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "Album został pomyślnie usunięty" - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "Album był pusty." - -#: mod/photos.php:591 -msgid "a photo" -msgstr "zdjęcie" - -#: mod/photos.php:591 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s" - -#: mod/photos.php:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Obraz przekracza limit rozmiaru wynoszący %s" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "Brak pliku obrazu" - -#: mod/photos.php:700 +#: mod/dfrn_request.php:504 msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Potwierdź" -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Przetwarzanie obrazu nie powiodło się." +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Ukryj kontakt" -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "Przesyłanie obrazu nie powiodło się." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "Nie zaznaczono zdjęć" - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "Prześlij zdjęcia" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "Nazwa nowego albumu: " - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "lub wybierz istniejący album:" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "Nie pokazuj statusu postów dla tego wysłania" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "Pokaż Grupy" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "Pokaż kontakty" - -#: mod/photos.php:1050 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" - -#: mod/photos.php:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "Usuń album" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "Edytuj album" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "Upuść Album" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "Pokaż najpierw najnowsze" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "Pokaż najpierw najstarsze" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "Zobacz zdjęcie" - -#: mod/photos.php:1145 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." - -#: mod/photos.php:1147 -msgid "Photo not available" -msgstr "Zdjęcie niedostępne" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "Usuń zdjęcie" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "Zobacz zdjęcie" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "Edytuj zdjęcie" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "Usuń zdjęcie" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "Ustaw jako zdjęcie profilowe" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "Prywatne zdjęcie" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "Zobacz w pełnym rozmiarze" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "Tagi: " - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "[Wybierz tagi do usunięcia]" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "Nazwa nowego albumu" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "Zawartość" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "Dodaj tag" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "Nie obracaj" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Obróć CW (w prawo)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Obróć CCW (w lewo)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "Lubię to (zmień)" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "Nie lubię tego (zmień)" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "To jesteś ty" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "Komentarz" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "Mapa" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "Zobacz album" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0} chce być Twoim znajomym" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} wymagana rejestracja" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "Zaczepić" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "szturchać, zaczepić lub robić inne rzeczy" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "Odbiorca" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wybierz, co chcesz zrobić" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "Ustaw ten post jako prywatny" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Użytkownik usunął swoje konto" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." - -#: mod/removeme.php:65 +#: mod/dfrn_request.php:531 #, php-format -msgid "The user id is %d" -msgstr "Identyfikatorem użytkownika jest %d" +msgid "Welcome home %s." +msgstr "Witaj na stronie domowej %s." -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Usuń moje konto" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Ponowne subskrybowanie kontaktów OStatus" - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Błąd" -msgstr[1] "Błędów" -msgstr[2] "Błędy" -msgstr[3] "Błędów" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "Brakuje ważnych danych!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "Zaktualizuj" - -#: mod/settings.php:201 -msgid "Failed to connect with email account using the settings provided." -msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." - -#: mod/settings.php:206 -msgid "Email settings updated." -msgstr "Zaktualizowano ustawienia email." - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "Funkcje zaktualizowane" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "Kontakt z plikiem CSV błąd przekazywania plików" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "Importowanie kontaktów zakończone" - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "Hasła nie pasują do siebie." - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "Hasło zostało zmienione." - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "Hasło niezmienione." - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "Użyj krótszej nazwy." - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "Nazwa jest za krótka. " - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "Nieprawidłowe hasło." - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "Niepoprawny e-mail." - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "Nie można zmienić tego e-maila." - -#: mod/settings.php:427 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej." - -#: mod/settings.php:430 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności." - -#: mod/settings.php:447 -msgid "Settings updated." -msgstr "Zaktualizowano ustawienia." - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "Dodaj aplikację" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "Zapisz ustawienia" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "Nazwa" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "Klucz klienta" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "Tajny klucz klienta" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "Przekierowanie" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "Adres Url ikony" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "Nie możesz edytować tej aplikacji." - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "Edytuj" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "Klucz klienta zaczyna się od" - -#: mod/settings.php:570 -msgid "No name" -msgstr "Bez nazwy" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "Brak skonfigurowanych ustawień dodatków" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "Ustawienia Dodatków" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "Dodatkowe funkcje" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "włączone" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "wyłączone" - -#: mod/settings.php:637 mod/settings.php:638 +#: mod/dfrn_request.php:532 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Wbudowane wsparcie dla połączenia z %s jest %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." -#: mod/settings.php:638 -msgid "OStatus (GNU Social)" +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Przyjaciel/Prośba o połączenie" + +#: mod/dfrn_request.php:643 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system (na przykład nie działa z Diaspora), musisz subskrybować %s bezpośrednio w systemie" + +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." msgstr "" -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "Dostęp do e-maila jest wyłączony na tej stronie." +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "Twój adres lub adres URL profilu Webfinger:" -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "Brak" +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na następujące pytania:" -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Portale społecznościowe" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "Ogólne ustawienia mediów społecznościowych" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "Akceptuj tylko posty najwyższego poziomu według kontaktów, które obserwujesz" - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "System dokonuje automatycznego uzupełniania wątków po otrzymaniu komentarza. Ma to taki efekt uboczny, że możesz otrzymywać posty, które zostały założone przez osoby niebędące obserwatorami, ale zostały skomentowane przez osobę, którą obserwujesz. To ustawienie wyłącza to zachowanie. Po aktywacji będziesz otrzymywać wyłącznie wpisy od osób, które naprawdę obserwujesz." - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "Wyłącz ostrzeżenie o treści" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś." - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "Wyłącz inteligentne skracanie" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby." - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "Dołącz tytuł linku" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt." - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "Domyślna grupa dla kontaktów OStatus" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "Twoje starsze konto społecznościowe GNU" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu." - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "Napraw subskrypcje OStatus" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: mod/settings.php:700 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." - -#: mod/settings.php:701 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "Ochrona:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "Nazwa logowania e-mail:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "E-mail hasło:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "Adres zwrotny:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "Przenieś do folderu" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "Przenieś do folderu:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "Rodzaje kont" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "Podtypy osobistych stron" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "Podtypy społeczności forum" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Strona osobista" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "Konto dla profilu osobistego." - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Strona Organizacji" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "Strona Wiadomości" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Forum społecznościowe" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "Konto do dyskusji w społeczności." - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Normalna strona konta" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Strona Soapbox" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Forum publiczne" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "Automatyczna strona znajomego" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "Prywatne Forum [Eksperymentalne]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." - -#: mod/settings.php:822 -msgid "Publish your profile in your local site directory?" -msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." +msgid "%s knows you" +msgstr "%s zna cię" -#: mod/settings.php:828 +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Autoryzacja połączenia aplikacji" + +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" + +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Zaloguj się aby kontynuować." + +#: mod/api.php:124 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?" + +#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "Nie" + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Lub - czy próbowałeś załadować pusty plik?" + +#: mod/wall_attach.php:116 #, php-format -msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "" - -#: mod/settings.php:834 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Twój adres tożsamości to '%s' lub '%s'." - -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "Ustawienia konta" - -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "Ustawienia hasła" - -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "Nowe hasło:" - -#: mod/settings.php:874 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:)." - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Potwierdź:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "Aktualne hasło:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "Hasło:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "Usuń adres URL OpenID" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "Ustawienia podstawowe" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "Imię i nazwisko:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "Adres email:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "Twoja strefa czasowa:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "Twój język:" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Wybierz język, ktory bedzie używany do wyświetlania użytkownika friendica i wysłania Ci e-maili" - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "Domyślna lokalizacja wiadomości:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "Używaj lokalizacji przeglądarki:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "Ustawienia bezpieczeństwa i prywatności" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "(aby zapobiec spamowaniu)" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" -msgstr "Czy Twój profil ma być dostępny do wyszukiwania na całym świecie?" - -#: mod/settings.php:894 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie." - -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?" - -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów." - -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?" - -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób." - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "Zamieszczaj posty publiczne niepubliczne" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych." - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "Udostępnij wszystkie opublikowane zdjęcia" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Ta opcja powoduje, że każde opublikowane zdjęcie jest dostępne poprzez bezpośredni link. Jest to obejście problemu polegającego na tym, że większość innych sieci nie może obsłużyć uprawnień do zdjęć. Jednak zdjęcia niepubliczne nadal nie będą widoczne publicznie w Twoich albumach." - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów." - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "Domyślne prawa dostępu wiadomości" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "Ustawienia ważności" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "Posty wygasną automatycznie po następującej liczbie dni:" - -#: mod/settings.php:909 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." - -#: mod/settings.php:910 -msgid "Expire posts" -msgstr "Ważność wiadomości" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "Po aktywacji posty i komentarze wygasną." - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "Ważność osobistych notatek" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Po aktywacji osobiste notatki na stronie profilu wygasną." - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "Wygasaj posty oznaczone gwiazdką" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Oznaczanie postów gwiazdką powoduje, że wygasają. To zachowanie jest zastępowane przez to ustawienie." - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "Wygasanie zdjęć" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "Po aktywacji zdjęcia wygasną." - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "Wygasają tylko posty innych osób" - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Po aktywacji Twoje posty nigdy nie wygasają. Zatem powyższe ustawienia obowiązują tylko dla otrzymanych postów." - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "Ustawienia powiadomień" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "Wysyłaj powiadmonienia na email, kiedy:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "Otrzymałeś zaproszenie" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "Twoje zaproszenie jest potwierdzone" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "Ktoś pisze na twoim profilu" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "Ktoś pisze komentarz nawiązujący." - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "Otrzymałeś prywatną wiadomość" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "Otrzymałeś propozycję od znajomych" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "Jesteś oznaczony tagiem w poście" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście" - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "Aktywuj powiadomienia na pulpicie" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "Pokazuj wyskakujące okienko gdy otrzymasz powiadomienie" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "E-maile z powiadomieniami tekstowymi" - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "Pokazuj szczegółowe powiadomienia" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "Zaawansowane ustawienia konta/rodzaju strony" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "Import kontaktów" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "Prześlij plik" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "Przeniesienie" - -#: mod/settings.php:947 -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 "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." - -#: mod/settings.php:948 -msgid "Resend relocate message to contacts" -msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "Sugestia kontaktu została zignorowana." - -#: mod/suggest.php:67 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny." - -#: mod/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "Czy na pewno chcesz usunąć te sugestie ?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "Ignoruj/Ukryj" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "Osoby, które możesz znać" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "Usunięty Tag(i) " - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "Usuń pozycję Tag" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "Wybierz tag do usunięcia: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "Usuń" +msgid "File exceeds size limit of %s" +msgstr "Plik przekracza limit rozmiaru wynoszący %s" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "Nie można zlokalizować oryginalnej wiadomości." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Pusty wpis został odrzucony." + +#: mod/item.php:710 +msgid "Post updated." +msgstr "Post zaktualizowany." + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "Element nie został zapisany. " + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "Nie można pobrać elementu." + +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Element nie znaleziony." + +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "Czy na pewno chcesz usunąć ten element?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." @@ -3042,96 +2966,471 @@ msgid "" "select \"Export account\"" msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." -msgstr "Nie obserwujesz tego kontaktu." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "Użytkownik nie znaleziony." -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "Widok" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "Skontaktuj się z obserwowanym" +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Poprzedni" -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "Rozłącz/Nie obserwuj" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Następny" -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Nie zaznaczono filmów" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "dzisiaj" -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "Zobacz film" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "miesiąc" -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Ostatnio dodane filmy" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "tydzień" -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Wstaw nowe filmy" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "dzień" -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "lista" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "Użytkownik nie znaleziony" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "Ten format kalendarza nie jest obsługiwany" + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "Nie znaleziono danych do eksportu" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "kalendarz" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Nie znaleziono elementu" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Edytuj post" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Zapisz" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "odnośnik sieciowy" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Wstaw link do filmu" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "link do filmu" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Wstaw link do audio" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "link do audio" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "CC: adresy e-mail" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Przykład: bob@example.com, mary@example.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Data rozpoczęcia i tytuł są wymagane." + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Rozpoczęcie wydarzenia:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Wymagany" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "Dopasuj dla strefy czasowej widza" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Opis:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Lokalizacja:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Tytuł:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Podstawowy" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Zaawansowany" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Uprawnienia" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Nie udało się usunąć wydarzenia" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "Nie można dodać kontaktu." + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "Już dodałeś ten kontakt." + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Tagi:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Zdjęcia kontaktu" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Załaduj" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Pliki" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Notatki" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Albumy zdjęć" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Ostatnio dodane zdjęcia" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Wyślij nowe zdjęcie" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "wszyscy" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Informacje o kontakcie są niedostępne" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Nie znaleziono albumu." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "Album został pomyślnie usunięty" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "Album był pusty." + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:583 +msgid "a photo" +msgstr "zdjęcie" + +#: mod/photos.php:583 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Nie można sprawdzić twojej lokalizacji." +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "Brak odbiorcy." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "Brak pliku obrazu" -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "Nieprawidłowe żądanie." +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "Nie zaznaczono zdjęć" -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Lub - czy próbowałeś załadować pusty plik?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Prześlij zdjęcia" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Plik przekracza limit rozmiaru wynoszący %s" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "Nazwa nowego albumu: " -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "lub wybierz istniejący album:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "Tablica zdjęć" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "Nie pokazuj statusu postów dla tego wysłania" + +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Pokaż Grupy" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Pokaż kontakty" + +#: mod/photos.php:1042 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" + +#: mod/photos.php:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Usuń album" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Edytuj album" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "Upuść Album" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Pokaż najpierw najnowsze" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Pokaż najpierw najstarsze" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "Zobacz zdjęcie" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "Zdjęcie niedostępne" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Usuń zdjęcie" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "Zobacz zdjęcie" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Edytuj zdjęcie" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "Usuń zdjęcie" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Ustaw jako zdjęcie profilowe" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "Prywatne zdjęcie" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "Zobacz w pełnym rozmiarze" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Tagi: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[Wybierz tagi do usunięcia]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "Nazwa nowego albumu" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Zawartość" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Dodaj tag" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "Nie obracaj" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Obróć CW (w prawo)" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Obróć CCW (w lewo)" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "Lubię to (zmień)" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "Nie lubię tego (zmień)" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "To jesteś ty" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Komentarz" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Mapa" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "Musisz być zalogowany(-a), aby korzystać z dodatków. " + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Usunąć ten element?" + +#: src/App/Page.php:298 +msgid "toggle mobile" +msgstr "przełącz na mobilny" #: src/App/Authentication.php:210 src/App/Authentication.php:262 msgid "Login failed." msgstr "Logowanie nieudane." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "The error message was:" msgstr "Komunikat o błędzie:" @@ -3148,858 +3447,114 @@ msgstr "Witaj %s" msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "Witaj ponownie %s" - -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "Musisz być zalogowany(-a), aby korzystać z dodatków. " - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Usunąć ten element?" - -#: src/App/Page.php:298 -msgid "toggle mobile" -msgstr "przełącz na mobilny" - -#: src/App/Router.php:209 +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" -msgstr "" +msgstr "Metoda niedozwolona dla tego modułu. Dozwolona metoda(y): %s" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Strona nie znaleziona." -#: src/App.php:326 -msgid "No system theme config value set." -msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego." +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "Brak tabel w MyISAM lub InnoDB z formatem pliku Antelope." -#: src/BaseModule.php:150 +#: src/Database/DBStructure.php:93 +#, php-format 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 "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem." +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n" -#: src/Console/ArchiveContact.php:105 -#, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Nie można znaleźć żadnego wpisu kontaktu zarchiwizowanego dla tego adresu URL (%s)" +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Błędy napotkane podczas dokonywania zmian w bazie danych: " -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "Wpisy kontaktów zostały zarchiwizowane" - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" - -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "Kontakt został zablokowany w węźle" - -#: src/Console/PostUpdate.php:87 -#, php-format -msgid "Post update version number has been set to %s." -msgstr "Numer wersji aktualizacji posta został ustawiony na %s." - -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Sprawdź oczekujące działania aktualizacji." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Gotowe." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Wykonaj oczekujące aktualizacje postów." - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Wszystkie oczekujące aktualizacje postów są gotowe." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Wprowadź nowe hasło: " - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Wpisz nazwę użytkownika:" - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." msgstr "" -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Wpisz adres e-mail użytkownika:" +#: src/Database/DBStructure.php:300 +#, php-format +msgid "%s: Database update" +msgstr "%s: Aktualizacja bazy danych" -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Wpisz język (opcjonalnie):" +#: src/Database/DBStructure.php:600 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: aktualizowanie %s tabeli." -#: src/Console/User.php:255 -msgid "User is not pending." +#: src/Database/Database.php:659 src/Database/Database.php:762 +#, php-format +msgid "Database error %d \"%s\" at \"%s\"" msgstr "" -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Wpisz „tak”, aby usunąć %s" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "nowsze" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "starsze" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "Często" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "Co godzinę" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "Dwa razy dziennie" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "Codziennie" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "Co tydzień" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "Miesięczne" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "E-mail" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "Diaspora" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." msgstr "" -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "Łącze Diaspora" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "Łącze GNU Social" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "Pub aktywności" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "orzech" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" -msgstr "%s (przez %s)" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "Funkcje ogólne" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Lokalizacja zdjęcia" - -#: src/Content/Feature.php:98 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą." - -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "Eksportowanie publicznego kalendarza" - -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "Umożliwia pobieranie kalendarza publicznego przez odwiedzających" - -#: src/Content/Feature.php:100 -msgid "Trending Tags" -msgstr "Popularne tagi" - -#: src/Content/Feature.php:100 -msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Pokaż widżet strony społeczności z listą najpopularniejszych tagów w ostatnich postach publicznych." - -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "Ustawienia funkcji postów" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "Automatyczne wymienianie forów" - -#: src/Content/Feature.php:106 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL." - -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." msgstr "" -#: src/Content/Feature.php:107 +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" + +#: src/Core/Update.php:215 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." + +#: src/Core/Update.php:280 +#, php-format msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Dodaj wyraźne wzmianki do pola komentarza, aby ręcznie kontrolować, kto zostanie wymieniony w odpowiedziach." - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "Sieć Pasek Boczny" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "Archiwum" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "Wybierz wpisy według zakresów dat" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" -msgstr "Filtr protokołu" - -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranych protokołów" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "Etykiety sieciowe" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "Etykieta Nowe Posty Sieciowe" - -#: src/Content/Feature.php:120 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Włącza etykietę wyświetlającą tylko nowe posty sieciowe (z ostatnich 12 godzin)" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "Etykieta Udostępnianie Łącz Sieciowych" - -#: src/Content/Feature.php:121 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Włącza etykietę wyświetlającą tylko posty sieciowe z łączami do nich" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "Narzędzia post/komentarz" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "Kategorie postów" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "Umożliwia dodawanie kategorii do twoich postów" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "Zaawansowane ustawienia profilu" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "Lista forów" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Wyświetla publiczne fora społeczności na stronie profilu zaawansowanego" - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "Chmura tagów" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Podaj osobistą chmurę tagów na stronie profilu" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "Wyświetl datę członkostwa" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "Wyświetla datę członkostwa w profilu" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "Fora" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "Zewnętrzny link do forum" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "pokaż więcej" - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "Brak nowych zdarzeń" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "Wróć" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "Wyczyść powiadomienia" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "@imię, !forum, #tagi, treść" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "Wyloguj" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "Zakończ sesję" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "Zaloguj się" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "Zaloguj się" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "Status" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "Twoje posty i rozmowy" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "Profil użytkownika" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "Twoja strona profilowa" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "Twoje zdjęcia" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "Filmy" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "Twoje filmy" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "Twoje wydarzenia" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "Notatki" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "Twoje prywatne notatki" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "Strona domowa" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "Strona startowa" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "Zarejestruj" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "Załóż konto" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "Pomoc" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "Pomoc i dokumentacja" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "Aplikacje" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "Wtyczki, aplikacje, narzędzia, gry" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "Szukaj" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "Przeszukaj zawartość strony" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "Pełny tekst" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "Tagi" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "Kontakty" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "Społeczność" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "Rozmowy na tym i innych serwerach" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "Katalog" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "Katalog osób" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "Informacje" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "Informacje o tej instancji friendica" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "Warunki usługi" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "Warunki świadczenia usług tej instancji Friendica" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "Sieć" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "Rozmowy Twoich przyjaciół" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "Zapoznanie" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "Prośba o przyjęcie do grona znajomych" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "Powiadomienia" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "Zobacz wszystkie powiadomienia" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "Prywatne maile" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "Odebrane" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "Wysłane" - -#: src/Content/Nav.php:274 -msgid "Accounts" -msgstr "Konto" - -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "Zarządzaj innymi stronami" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "Ustawienia" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "Ustawienia konta" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "Zarządzaj listą przyjaciół i kontaktami" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "Administator" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "Konfiguracja i ustawienia instancji" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "Nawigacja" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "Mapa strony" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "Osadzanie wyłączone" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "Osadzona zawartość" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "poprzedni" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "ostatni" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "Obrazek/zdjęcie" - -#: src/Content/Text/BBCode.php:1047 +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." + +#: src/Core/Update.php:286 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]" -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "Kliknij aby otworzyć/zamknąć" +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "[Powiadomienie Friendica] Aktualizacja bazy danych" -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1 napisał:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "Szyfrowana treść" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "Nieprawidłowy protokół źródłowy" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "Niepoprawny link protokołu" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "Ładuję więcej wpisów..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "Koniec" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "Śledź" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "Eksport" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "Wyeksportuj kalendarz jako ical" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "Eksportuj kalendarz jako csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "Brak kontaktów" - -#: src/Content/Widget/ContactBlock.php:104 +#: src/Core/Update.php:320 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktów" -msgstr[2] "%d kontakty" -msgstr[3] "%d Kontakty" - -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "Widok kontaktów" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "Usuń wpis" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "Zapisywanie wyszukiwania" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "Więcej popularnych tagów" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "Dodaj nowy kontakt" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "Wpisz adres lub lokalizację sieciową" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" - -#: src/Content/Widget.php:72 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d zaproszenie dostępne" -msgstr[1] "%d zaproszeń dostępnych" -msgstr[2] "%d zaproszenia dostępne" -msgstr[3] "%d zaproszenia dostępne" - -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "Znajdź ludzi" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "Wpisz nazwę lub zainteresowanie" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Przykład: Jan Kowalski, Wędkarstwo" - -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "Znajdź" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "Podobne zainteresowania" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "Domyślny profil" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "Zaproś znajomych" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "Katalog globalny" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "Katalog lokalny" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Grupy" - -#: src/Content/Widget.php:220 -msgid "Everyone" -msgstr "Wszyscy" - -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "Kolejny" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "Wspólni znajomi" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "Relacje" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "Wszystkie kontakty" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "Protokoły" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "Wszystkie protokoły" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "Zapisz w folderach" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "Wszystko" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "Kategorie" - -#: src/Content/Widget.php:449 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d wspólny kontakt" -msgstr[1] "%d wspólne kontakty" -msgstr[2] "%d wspólnych kontaktów" -msgstr[3] "%dwspólnych kontaktów" +msgid "" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\t\tBaza danych Friendica została pomyślnie zaktualizowana z %s do %s." #: src/Core/ACL.php:155 msgid "Yourself" msgstr "" +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "Zwolenników" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "Wzajemne" + #: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Prześlij e-mailem" @@ -4037,409 +3592,409 @@ msgstr "Z wyjątkiem:" msgid "Connectors" msgstr "Wtyczki" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Plik konfiguracyjny bazy danych \"config/local.config.php\" nie mógł zostać zapisany. Proszę użyć załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera." -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nie można znaleźć PHP dla wiersza poleceń w PATH serwera." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" -msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wierszem poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika'" +msgstr "" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "Ścieżka wykonywalna PHP" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację." -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "Linia komend PHP" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "Znaleziona wersja PHP: " -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "PHP cli binarny" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "Jest wymagane, aby dostarczanie wiadomości działało." -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "Generuj klucz kodowania" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Moduł Apache mod_rewrite" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany." -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany." -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "Moduł PDO lub MySQLi PHP" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany." -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "Moduł XML PHP" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "Moduł PHP libCurl" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "Moduł PHP-GD" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "Moduł PHP OpenSSL" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "Moduł PHP mb_string" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "Błąd: moduł PHP mb_string jest wymagany ,ale nie jest zainstalowany." -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "Moduł PHP iconv" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany." -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "Moduł POSIX PHP" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany." -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "Moduł PHP JSON" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "Błąd: wymagany jest moduł JSON PHP, ale nie jest zainstalowany." -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" msgstr "Informacje o pliku Moduł PHP" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "Błąd: wymagane informacje o pliku Moduł PHP, ale nie jest zainstalowany." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"local.config.php\" w folderze \"config\" serwera WWW i nie może tego zrobić." -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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 "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz." -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Pod koniec tej procedury otrzymasz tekst do zapisania w pliku o nazwie local.config.php w folderze \"config\" Friendica." -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami." -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" msgstr "config/local.config.php jest zapisywalny" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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 "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica." -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu." -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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 "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera." -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "view/smarty3 jest zapisywalny" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." msgstr "Adres URL zapisany w .htaccess nie działa. Upewnij się, że skopiowano .htaccess-dist do .htaccess." -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" msgstr "Komunikat o błędzie z Curl podczas pobierania" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "Działający adres URL" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane" -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick obsługuje GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "Baza danych jest już w użyciu." -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "Poniedziałek" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "Wtorek" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "Środa" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "Czwartek" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "Piątek" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "Sobota" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "Niedziela" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "Styczeń" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "Luty" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "Marzec" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "Kwiecień" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "Maj" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "Czerwiec" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "Lipiec" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "Sierpień" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "Wrzesień" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "Październik" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "Listopad" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "Grudzień" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "Pon" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "Wt" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "Śr" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "Czw" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "Pt" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "Sob" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "Niedz" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "Sty" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "Lut" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "Kwi" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "Cze" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "Lip" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "Sie" @@ -4447,15 +4002,15 @@ msgstr "Sie" msgid "Sep" msgstr "Wrz" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "Paź" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "Lis" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "Gru" @@ -4507,39 +4062,6 @@ msgstr "odrzuć" msgid "rebuffed" msgstr "odrzucony" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "[Powiadomienie Friendica] Aktualizacja bazy danych" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tBaza danych Friendica została pomyślnie zaktualizowana z %s do %s." - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Błąd podczas odczytu pliku konta" @@ -4574,41 +4096,409 @@ msgstr "Błąd tworzenia profilu użytkownika" msgid "Done. You can now login with your username and password" msgstr "Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "Brak tabel w MyISAM lub InnoDB z formatem pliku Antelope." +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Nie znaleziono pliku modułu: %s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(bez tematu)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Wiadomość została wysłana do ciebie od %s, członka sieci społecznościowej Friendica." -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "Błędy napotkane podczas dokonywania zmian w bazie danych: " - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" -msgstr "%s: Aktualizacja bazy danych" +msgid "You may visit them online at %s" +msgstr "Możesz odwiedzić ich online pod adresem %s" -#: src/Database/DBStructure.php:546 +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." + +#: src/Object/EMail/ItemCCEMail.php:46 #, php-format -msgid "%s: updating %s table." -msgstr "%s: aktualizowanie %s tabeli." +msgid "%s posted an update." +msgstr "%s zaktualizował wpis." -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "Ten wpis został zedytowany" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Wiadomość prywatna" + +#: src/Object/Post.php:213 +msgid "pinned item" +msgstr "" + +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "Usuń lokalnie" + +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "Usuń globalnie" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "Usuń lokalnie" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "zapisz w folderze" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "Będę uczestniczyć" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "Nie będę uczestniczyć" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "Mogę wziąć udział" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "zignoruj ​​wątek" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "odignoruj ​​wątek" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "przełącz status ignorowania" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "przypnij" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "odepnij" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "Przypięte" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "dodaj gwiazdkę" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "anuluj gwiazdkę" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "włącz status gwiazdy" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "gwiazdką" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "dodaj tag" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "lubię to" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "nie lubię tego" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Udostępnij to" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "udostępnij" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "do" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "przez" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "Odpowiedź %s" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "Więcej" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "Zadanie Notifier jest w toku" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "Trwa przesyłanie do serwerów zdalnych" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "Trwa dostawa do serwerów zdalnych" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "Trwa dostarczanie do zdalnych serwerów" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komentarz" +msgstr[1] "%d komentarze" +msgstr[2] "%d komentarzy" +msgstr[3] "%d komentarzy" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "Pokaż więcej" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "Pokaż mniej" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "komentarz" +msgstr[1] "komentarze" +msgstr[2] "komentarze" +msgstr[3] "komentarz" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Nie można znaleźć żadnego wpisu kontaktu zarchiwizowanego dla tego adresu URL (%s)" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "Wpisy kontaktów zostały zarchiwizowane" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "Kontakt został zablokowany w węźle" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "Wprowadź nowe hasło: " + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "Wpisz nazwę użytkownika:" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "Wpisz nazwę użytkownika:" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "Wpisz adres e-mail użytkownika:" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "Wpisz język (opcjonalnie):" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Wpisz „tak”, aby usunąć %s" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Numer wersji aktualizacji posta został ustawiony na %s." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Sprawdź oczekujące działania aktualizacji." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Gotowe." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Wykonaj oczekujące aktualizacje postów." + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Wszystkie oczekujące aktualizacje postów są gotowe." + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Miasto rodzinne:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "Stan cywilny:" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "Z:" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "Od:" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Preferencje seksualne:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Poglądy polityczne:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Poglądy religijne:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Lubię to:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Nie lubię tego:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Tytuł/Opis:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Podsumowanie" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Muzyka" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Literatura" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Telewizja" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Film/taniec/kultura/rozrywka" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Zainteresowania" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Miłość/romans" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Praca/zatrudnienie" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "Szkoła/edukacja" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Dane kontaktowe i Sieci społecznościowe" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego." + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "Propozycja znajomych" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "Prośba o dodanie do przyjaciół/powiązanych" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "Nowy obserwujący" @@ -4653,3284 +4543,260 @@ msgstr "" msgid "%s is now friends with %s" msgstr "%s jest teraz znajomym %s" -#: src/LegacyModule.php:49 -#, php-format -msgid "Legacy module file not found: %s" -msgstr "Nie znaleziono pliku modułu: %s" +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Powiadomienia sieciowe" -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "Powiadomienia systemowe" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Prywatne powiadomienia" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Powiadomienia domowe" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 +#, php-format +msgid "No more %s notifications." +msgstr "Brak kolejnych %s powiadomień." + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Pokaż nieprzeczytane" + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Pokaż wszystko" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." msgstr "" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "Zakończ znajomość" +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Powiadomienia" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Pokaż ignorowane żądania" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Ukryj zignorowane prośby" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "Typ powiadomienia:" + +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" +msgstr "Sugerowany przez:" + +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "Ukryj ten kontakt przed innymi" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 #: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 msgid "Approve" msgstr "Zatwierdź" -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "Organizacja" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Twierdzi, że go/ją znasz: " -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "Aktualności" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "Brak adresu URL połączenia." - -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." - -#: src/Model/Contact.php:2336 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "Autor lub nazwa nie zostało znalezione." - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" - -#: src/Model/Contact.php:2359 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." - -#: src/Model/Contact.php:2366 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." - -#: src/Model/Contact.php:2371 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "Nie można otrzymać informacji kontaktowych" - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "Rozpoczęcie:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "Zakończenie:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "cały dzień" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "Wrz" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "Brak wydarzeń do wyświetlenia" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "Edytuj wydarzenie" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "Zduplikowane zdarzenie" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "Usuń wydarzenie" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "link do źródła" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "Pokaż mapę" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "Ukryj mapę" - -#: src/Model/Event.php:1042 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "%s's birthday" -msgstr "%s urodzin" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "Urodziny %s" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "Element złożony" - -#: src/Model/Group.php:92 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 "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie." +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości." -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Wszyscy" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "edytuj" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "dodaj" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Edytuj grupy" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Kontakt nie jest w żadnej grupie" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Stwórz nową grupę" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "Nazwa grupy: " - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Edytuj grupy" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "aktywność" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "komentarz" -msgstr[1] "komentarze" -msgstr[2] "komentarze" -msgstr[3] "komentarz" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "post" - -#: src/Model/Item.php:3576 +#: src/Module/Notifications/Introductions.php:127 #, php-format -msgid "Content warning: %s" -msgstr "Ostrzeżenie o treści: %s" +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "bajty" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Znajomy" -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "Zobacz na oddzielnej stronie" +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Subskrybent" -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "zobacz na oddzielnej stronie" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[bez tematu]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "Edytuj profil" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "Zmień zdjęcie profilowe" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "Strona główna:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 msgid "About:" msgstr "O:" -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Kanał Atom" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 msgid "Network:" msgstr "Sieć:" -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "g A I F d" +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "Brak dostępu." -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[dziś]" - -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "Przypomnienia o urodzinach" - -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "Urodziny w tym tygodniu:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[Brak opisu]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "Przypominacze wydarzeń" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "Nadchodzące wydarzenia w ciągu następnych 7 dni:" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s wita %2$s" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Przechowywanie bazy danych nie powiodło się %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Magazyn bazy danych nie mógł wstawić danych" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Nie można utworzyć magazynu systemu plików \"%s\". Sprawdź, czy masz uprawnienia do zapisu." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Nie udało się zapisać danych w pamięci systemu plików \"%s\". Sprawdź swoje uprawnienia do zapisu" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Ścieżka bazy pamięci masowej" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Folder, w którym zapisywane są przesłane pliki. Dla maksymalnego bezpieczeństwa, powinna to być ścieżka poza drzewem folderów serwera WWW" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Wprowadź poprawny istniejący folder" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "Logowanie nieudane" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "Za mało informacji do uwierzytelnienia" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "Hasło nie może być puste" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "Puste hasła są niedozwolone." - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "Hasła nie pasują do siebie. Hasło niezmienione." - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "Wymagane zaproszenie." - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "Zaproszenie niezweryfikowane." - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "Nieprawidłowy adres url OpenID" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "Wprowadź wymagane informacje." - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości." - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." -msgstr[1] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." -msgstr[2] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." -msgstr[3] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "Nazwa użytkownika nie może mieć więcej niż %s znaków." -msgstr[1] "Nazwa użytkownika nie może mieć więcej niż %s znaków." -msgstr[2] "Nazwa użytkownika nie może mieć więcej niż %s znaków." -msgstr[3] "Nazwa użytkownika nie może mieć więcej niż %s znaków." - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." - -#: src/Model/User.php:701 -msgid "Your email domain is not among those allowed on this site." -msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "Niepoprawny adres e mail.." - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "Pseudonim został zablokowany przed rejestracją przez administratora węzłów." - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "Nie można użyć tego e-maila." - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "Ten login jest zajęty. Wybierz inny." - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." - -#: src/Model/User.php:806 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "Przyjaciele" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie." - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" msgstr "" -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "" +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Wylogowano." -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "Szczegóły rejestracji dla %s" +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Nieprawidłowy kod, spróbuj ponownie." -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tSzanowny Użytkowniku %1$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%4$s\n\t\t\tHasło:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "Rejestracja w %s" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tSzanowna/y %1$s,\n\t\t\t\tDziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone.\n\t\t\t" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil użytkownika\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\t\ti być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół.\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3$s/removeme\n\n\t\t\tDziękujemy i Zapraszamy do %2$s." - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "Nie znaleziono dodatku." - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "Dodatek %s wyłączony." - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "Dodatek %s włączony." - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "Wyłącz" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "Zezwól" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "Administracja" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Dodatki" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "Włącz" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "Autor: " - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "Opiekun: " - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "Instalacja dodatku %s nie powiodła się." - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Załaduj ponownie aktywne dodatki" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s kontakt odblokowany" -msgstr[1] "%s kontakty odblokowane" -msgstr[2] "%s kontaktów odblokowanych" -msgstr[3] "%s kontaktów odblokowanych" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Lista zablokowanych kontaktów zdalnych" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Zablokuj kontakt zdalny" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "zaznacz wszystko" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "wybierz brak" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "Odblokuj" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "Z tego węzła nie jest blokowany kontakt zdalny." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Zablokowane kontakty zdalne" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Zablokuj nowy kontakt zdalny" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Zdjęcie" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "łącznie %s zablokowany kontakt" -msgstr[1] "łącznie %s zablokowane kontakty" -msgstr[2] "łącznie %s zablokowanych kontaktów" -msgstr[3] "%s całkowicie zablokowane kontakty" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "Adres URL kontaktu zdalnego do zablokowania." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Wzorzec domeny serwera dodano do listy bloków." - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "Zaktualizowano listę bloków witryny." - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "Zablokowany wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "Powód blokowania" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "Usuń wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "Lista bloków wzorców domen serwerów" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "Ta strona może zostać użyta do zdefiniowania czarnej listy wzorców domen serwera z sieci stowarzyszonej, które nie mogą współdziałać z twoim węzłem. Dla każdego wzorca domeny należy również podać powód zablokowania go." - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "Dodaj nowy wpis do listy bloków" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "Wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "Wzorzec domeny nowego serwera do dodania do listy bloków. Nie dołączaj protokołu." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "Powód zablokowania" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "Powód zablokowania wzorca domeny serwera." - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "Dodaj wpis" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "Zapisz zmiany w liście zablokowanych" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "Aktualne wpisy na liście zablokowanych" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "Usuń wpis z listy zablokowanych" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "Usunąć wpis z listy zablokowanych?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Aktualizacja została oznaczona jako udana" - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Aktualizacja %s została pomyślnie zastosowana." - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana." - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "Brak błędów aktualizacji." - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "Sprawdź strukturę bazy danych" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "Błąd aktualizacji" - -#: src/Module/Admin/DBSync.php:116 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu." - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Funkcja blokady %s" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Zarządzanie dodatkowymi funkcjami" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "Inne" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "nieznany" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł." - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "Funkcja Katalog kontaktów automatycznie odkrytych nie jest włączona, poprawi ona wyświetlane tutaj dane." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Statystyki Organizacji" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Przedmiot oznaczony do usunięcia." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Usuń przedmiot" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Usuń ten przedmiot" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "Identyfikator elementu GUID, który chcesz usunąć." - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "Element Guid" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "Plik dziennika '%s' nie jest zapisywalny. Brak możliwości logowania" - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "Zaktualizowano ustawienia logów." - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "Dziennik PHP jest obecnie włączony." - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "Dziennik PHP jest obecnie wyłączony." - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "Logi" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "Wyczyść" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "Włącz debugowanie" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Plik logów" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica." - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "Poziom logów" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "Logowanie w PHP" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "Aby tymczasowo włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dołączyć do pliku index.php swojej instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć." - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Błąd podczas próby otwarcia %1$s pliku dziennika. \\r\\n
Sprawdź, czy plik %1$s istnieje i czy można go odczytać." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Nie można otworzyć %1$spliku dziennika. \\r\\n
Sprawdź, czy plik %1$s jest czytelny." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "Zobacz rejestry" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Sprawdź kolejkę odroczonych pracowników" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "Ta strona zawiera listę zadań opóźnionych pracowników. Są to zadania, które nie mogą być wykonywane po raz pierwszy." - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Sprawdź Kolejkę Pracowników" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "Ta strona zawiera listę aktualnie ustawionych zadań dla pracowników. Te zadania są obsługiwane przez cronjob pracownika, który skonfigurowałeś podczas instalacji." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Parametry zadania" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Utwórz" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Priorytet" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej : //" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "Nieprawidłowa wartość ustawienia magazynu pamięci." - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "Zaktualizowano ustawienia strony." - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "Brak specialnego motywu dla urządzeń mobilnych" - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s- (Eksperymentalne)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "Brak strony społeczności dla użytkowników lokalnych" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "Brak strony społeczności" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "Publikacje publiczne od użytkowników tej strony" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "Publikacje wpisy ze sfederowanej sieci" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej" - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "Wyłączony" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "Użytkownicy" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "Użytkownicy, kontakty globalne" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "Użytkownicy, kontakty globalne/awaryjne" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "Miesiąc" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "Trzy miesiące" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "Pół roku" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "Rok" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "Tryb wielu użytkowników" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "Zamknięte" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "Wymaga zatwierdzenia" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "Otwarta" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "Brak SSL, linki będą śledzić stan SSL" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "Wymuś używanie SSL na wszystkich odnośnikach" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Wewnętrzne Certyfikaty, użyj SSL tylko dla linków lokalnych . " - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "Nie sprawdzaj" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "sprawdź wersję stabilną" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "sprawdź wersję rozwojową" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "brak" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "Bezpośrednie kontakty" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "Baza danych (legacy)" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Strona" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "Ponownie opublikuj użytkowników w katalogu" - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "Rejestracja" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "Przesyłanie plików" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "Zasady" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "Katalog kontaktów automatycznie odkrytych" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "Ustawienia" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "Pracownik" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "Przekazywanie wiadomości" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "Zmień lokalizację" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "" - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "Nazwa strony" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "E-mail nadawcy" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami." - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "Logo" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "Ikona skrótu" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "Link do ikony, która będzie używana w przeglądarkach." - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "Dołącz ikonę" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych." - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "Dodatkowe informacje" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers." - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "Język systemu" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "Motyw systemowy" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "Motyw systemu mobilnego" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "Motyw na urządzenia mobilne" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "Polityka odnośników SSL" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Określa, czy generowane odnośniki będą obowiązkowo używały SSL" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "Wymuś SSL" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli." - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "Ukryj pomoc w menu nawigacyjnym" - -#: src/Module/Admin/Site.php:632 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "Tryb pojedynczego użytkownika" - -#: src/Module/Admin/Site.php:633 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika" - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "Backend przechowywania plików" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "" - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "Maksymalny rozmiar zdjęcia" - -#: src/Module/Admin/Site.php:637 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "Maksymalna długość obrazu" - -#: src/Module/Admin/Site.php:638 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń." - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "Jakość obrazu JPEG" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością." - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "Zasady rejestracji" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "Maksymalna dzienna rejestracja" - -#: src/Module/Admin/Site.php:642 -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 "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu." - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "Zarejestruj tekst" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj." - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "Zakazane pseudonimy" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Lista oddzielonych przecinkami pseudonimów, których nie wolno rejestrować. Preset to lista nazw ról zgodnie z RFC 2142." - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "Konta porzucone po x dni" - -#: src/Module/Admin/Site.php:645 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "Dozwolone domeny przyjaciół" - -#: src/Module/Admin/Site.php:646 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie." - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "Dozwolone domeny e-mailowe" - -#: src/Module/Admin/Site.php:647 -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 "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny" - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "Brak treści multimedialnych ze znaczkiem HTML" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej." - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "Dozwolone domeny OEmbed" - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Rozdzielana przecinkami lista domen, w których wyświetlana jest treść, może być wyświetlana. Symbole wieloznaczne są akceptowane." - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "Blokuj publicznie" - -#: src/Module/Admin/Site.php:650 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany." - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "Wymuś publikację" - -#: src/Module/Admin/Site.php:651 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny." - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR" - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "Globalny adres URL katalogu" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji." - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "Prywatne posty domyślnie dla nowych użytkowników" - -#: src/Module/Admin/Site.php:653 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną." - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" - -#: src/Module/Admin/Site.php:654 -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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." - -#: src/Module/Admin/Site.php:655 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków." - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "Nie umieszczaj prywatnych zdjęć w postach" - -#: src/Module/Admin/Site.php:656 -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 "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać." - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "Treści dla dorosłych" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Ustaw to, aby ogłosić, że Twój węzeł jest używany głównie do jawnej treści, która może nie być odpowiednia dla nieletnich. Informacje te zostaną opublikowane w informacjach o węźle i mogą zostać wykorzystane, np. w katalogu globalnym, aby filtrować węzeł z list węzłów do przyłączenia. Dodatkowo notatka o tym zostanie pokazana na stronie rejestracji użytkownika." - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "Zezwól użytkownikom na ustawienie remote_self" - -#: src/Module/Admin/Site.php:658 -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 "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników." - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "Zablokuj wielokrotną rejestrację" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. " - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "Wyłącz OpenID" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "Wyłącz obsługę OpenID dla rejestracji i logowania." - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "Bez sprawdzania pełnej nazwy" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Zezwól użytkownikom na rejestrację bez spacji między imieniem i nazwiskiem w ich pełnym imieniu." - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "Strony społecznościowe dla odwiedzających" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony." - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "Lista postów użytkownika na stronie społeczności" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy „Globalnej społeczności”)" - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "Wyłącz obsługę OStatus" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Wyłącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itd.). Wszystkie rozmowy w OStatus są publiczne, więc czasem będą pojawiać się ostrzeżenia o prywatności." - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Obsługa OStatus może być włączona tylko wtedy, gdy włączone jest wątkowanie." - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu." - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "Włączyć obsługę Diaspory" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Zapewnij wbudowaną kompatybilność z siecią Diaspora." - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "Dopuść tylko kontakty Friendrica" - -#: src/Module/Admin/Site.php:669 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Wszyscy znajomi muszą używać protokołów Friendica. Wszystkie inne wbudowane protokoły komunikacyjne są wyłączone." - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "Weryfikacja SSL" - -#: src/Module/Admin/Site.php:670 -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 "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL." - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "Użytkownik proxy" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "Network timeout" - -#: src/Module/Admin/Site.php:673 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)." - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "Maksymalne obciążenie średnie" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "Maksymalne obciążenie systemu przed dostarczeniem i procesami odpytywania jest odroczone - domyślnie %d." - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "Maksymalne obciążenie średnie (Frontend)" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50." - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "Minimalna pamięć" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)." - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "Maksymalny rozmiar stołu do optymalizacji" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Maksymalny rozmiar tablicy (w MB) do automatycznej optymalizacji. Wprowadź -1, aby go wyłączyć." - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "Minimalny poziom fragmentacji" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%." - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "Okresowa kontrola kontaktów globalnych" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Jeśli jest włączona, kontakty globalne są okresowo sprawdzane pod kątem brakujących lub nieaktualnych danych oraz żywotności kontaktów i serwerów." - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "Odkryj obserwujących/obserwujących z kontaktów globalnych" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "Jeśli ta opcja jest włączona, globalne kontakty są sprawdzane pod kątem nowych kontaktów wśród ich obserwujących i następujących kontaktów. Ta opcja stworzy ogromną liczbę zadań, więc powinna być aktywowana tylko na potężnych maszynach." - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "Dni między żądaniem" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów." - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "Odkryj kontakty z innych serwerów" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "Okresowo sprawdzaj kontakty z innymi serwerami. Możesz wybrać „Użytkownicy”: użytkownicy systemu zdalnego, „Kontakty globalne”: aktywne kontakty znane w systemie. Rozwiązanie awaryjne jest przeznaczone dla serwerów Redmatrix i starszych serwerów friendica, gdzie globalne kontakty nie były dostępne. Powrót awaryjny zwiększa obciążenie serwera, więc zalecane ustawienie to „Użytkownicy, kontakty globalne”." - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "Czas pobierania globalnych kontaktów" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Po aktywowaniu wykrywania ta wartość określa czas działania globalnych kontaktów pobieranych z innych serwerów." - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "Wyszukaj w lokalnym katalogu" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane." - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "Publikuj informacje o serwerze" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Jeśli ta opcja jest włączona, ogólne dane dotyczące serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów i aktywowane protokoły i złącza. Szczegółowe informacje można znaleźć na the-federation.info." - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "Sprawdź wersję powyżej" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym." - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "Ukryj tagi" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Pomiń wyświetlenie listy hashtagów na końcu postu." - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "Wyczyść bazę danych" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Usuń stare zdalne pozycje, osierocone rekordy bazy danych i starą zawartość z innych tabel pomocników." - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "Żywotność odległych przedmiotów" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "Po włączeniu czyszczenia bazy danych określa dni, po których zdalne elementy zostaną usunięte. Własne przedmioty oraz oznaczone lub wypełnione pozycje są zawsze przechowywane. 0 wyłącza to zachowanie." - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "Żywotność nieodebranych przedmiotów" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0." - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "Trwałość nieprzetworzonych danych konwersacji" - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni." - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "Ścieżka do pamięci podręcznej" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne." - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "Czas trwania w sekundach" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1." - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "Maksymalna liczba komentarzy na post" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100." - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "Ścieżka do Temp" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę." - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "Wyłącz obraz proxy" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "Serwer proxy zwiększa wydajność i prywatność. Nie powinno być używane w systemach o bardzo niskiej przepustowości." - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "Szukaj tylko w tagach" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system." - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "Nowy bazowy adres url" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Zmień bazowy adres URL dla tego serwera. Wysyła wiadomość o przeniesieniu do wszystkich kontaktów Friendica i Diaspora* wszystkich użytkowników." - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "Szyfrowanie RINO" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "Warstwa szyfrowania między węzłami." - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "Włącz" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "Maksymalna liczba równoległych pracowników" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "Na udostępnionych usługach hostingowych ustaw tę opcję %d. W większych systemach wartości %dsą świetne . Wartość domyślna to %d." - -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "Włącz to, jeśli twój system nie zezwala na użycie „proc_open”. Może się tak zdarzyć na współdzielonych hostach. Jeśli to jest włączone, powinieneś zwiększyć częstotliwość wywołań roboczych w crontabie." - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "Włącz Fastlane" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "Po włączeniu system Fastlane uruchamia dodatkowego pracownika, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie." - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "Włącz pracownika frontend" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "" - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "Subskrybuj przekaźnik" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Umożliwia odbieranie publicznych wiadomości z przekaźnika. Zostaną uwzględnione w tagach wyszukiwania, subskrybowanych i na stronie społeczności globalnej." - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "Serwer przekazujący" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Adres serwera przekazującego, do którego należy wysyłać publiczne posty. Na przykład https://relay.diasp.org" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "Bezpośredni transfer przekaźników" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących" - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "Zakres przekaźnika" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "Mogą to być „wszystkie” lub „tagi”. „wszystkie” oznacza, że ​​każdy publiczny post powinien zostać odebrany. „Tagi” oznaczają, że powinny być odbierane tylko posty z wybranymi tagami." - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "wszystko" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "tagi" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "Serwer tagów" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”." - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "Pozwól na tagi użytkowników" - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "Jeśli ta opcja jest włączona, tagi z zapisanych wyszukiwań będą używane jako subskrypcja „tagów” jako uzupełnienie do \"relay_server_tags\"." - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "Rozpocznij przenoszenie" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
" - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s" - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić." - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)." - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!" - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji." - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "System.basepath Friendiki został zaktualizowany z '%s' do '%s'. Usuń system.basepath z bazy danych, aby uniknąć różnic." - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "Obecny system.basepath Friendiki '%s' jest nieprawidłowy i plik konfiguracyjny '%s' nie jest używany." - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "Obecny system.basepath Friendiki '%s' nie jest równy plikowi konfiguracyjnemu '%s'. Napraw konfigurację." - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "Konto normalne" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "Automatyczne konto obserwatora" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "Publiczne konto na forum" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "Konto Bloga" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "Prywatne konto na forum" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "Wiadomości" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "Ustawienia serwera" - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Podsumowanie" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "Zarejestrowani użytkownicy" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "Oczekujące rejestracje" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "Wersja" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "Aktywne dodatki" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "Zaktualizowano ustawienia motywów." - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "Motyw %s wyłączony." - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Motyw %s został pomyślnie włączony." - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "Nie udało się zainstalować motywu %s." - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "Zrzut ekranu" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "Wygląd" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "Nieznany motyw." - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Przeładuj aktywne motywy" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Eksperymentalne]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Niewspieralne]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "Ustawienia Warunków korzystania z usługi zostały zaktualizowane." - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "Wyświetl Warunki korzystania z usługi" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi." - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "Wyświetl oświadczenie o prywatności" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "Podgląd oświadczenia o prywatności" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "Warunki świadczenia usług" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej." - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s użytkownik zablokowany" -msgstr[1] "%s użytkowników zablokowanych" -msgstr[2] "%s użytkowników zablokowanych" -msgstr[3] "%s użytkownicy zablokowani" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "Nie możesz usunąć siebie" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "usunięto %s użytkownika" -msgstr[1] "usunięto %s użytkowników" -msgstr[2] "usunięto %s użytkowników" -msgstr[3] "%s usuniętych użytkowników" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "Użytkownik \"%s\" usunięty" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Użytkownik \"%s\" zablokowany" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Użytkownik \"%s\" odblokowany" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "Rejestracja odwołana" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Prywatne forum" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Data rejestracji" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Ostatnie logowanie" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "Typu" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Dodaj użytkownika" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "Zarejestrowani użytkownicy czekający na potwierdzenie" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "Użytkownik czekający na trwałe usunięcie" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Data prośby" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "Brak rejestracji." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Uwaga od użytkownika" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Odmów" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "Użytkownik zablokowany" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Administracja stroną" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Konto wygasło" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "Nowy użytkownik" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "Trwałe usunięcie" - -#: src/Module/Admin/Users.php:267 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" - -#: src/Module/Admin/Users.php:268 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Nazwa nowego użytkownika." - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Pseudonim" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Pseudonim nowego użytkownika." - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "Adres email nowego użytkownika." - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "Brak znajomych do wyświetlenia." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Brak zainstalowanych aplikacji." - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Aplikacje" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Element nie znaleziony." - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "Konto podrzędne nie może uzyskać dostępu do stron administracyjnych. Zaloguj się ponownie jako konto główne." - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Przegląd" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Konfiguracja" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "Dodatkowe funkcje" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "Baza danych" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "Aktualizacje DB" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Sprawdź Odroczonych Pracowników" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Sprawdź kolejkę pracowników" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Narzędzia" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Lista zablokowanych kontaktów" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Lista zablokowanych serwerów" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Diagnostyka" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "Informacje o PHP" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "adres sondy" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "sprawdź webfinger" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "Źródło elementu" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "" - -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "Funkcje dodatkowe" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "Rejestracje użytkowników czekające na potwierdzenie" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "Szczegóły profilu" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Tylko ty możesz to zobaczyć" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Wskazówki dla nowych użytkowników" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "Szukaj osób - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "Przeszukiwanie forum - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Konto" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 #: src/Module/Settings/TwoFactor/Index.php:105 msgid "Two-factor authentication" msgstr "Uwierzytelnianie dwuskładnikowe" -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Wygląd" - -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" -msgstr "Zarządzanie kontami" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Powiązane aplikacje" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "Eksportuj dane osobiste" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Usuń konto" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "Na tej stronie brakuje parametru url." - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "Post został utworzony" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "Ustawienia kontaktu zaktualizowane." - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "Nie udało się zaktualizować kontaktu." - -#: src/Module/Contact/Advanced.php:113 +#: src/Module/Security/TwoFactor/Verify.php:81 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać." +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.

" -#: src/Module/Contact/Advanced.php:114 +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania " + +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Wprowadź kod z aplikacji uwierzytelniającej" + +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "Zweryfikuj kod i zakończ logowanie" + +#: src/Module/Security/TwoFactor/Recovery.php:60 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Pozostałe kody odzyskiwania: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Odzyskiwanie dwuczynnikowe" + +#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" +msgstr "

Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.

" -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "Bez dublowania" +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Wprowadź kod odzyskiwania" -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "Przesłany lustrzany post" +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Prześlij kod odzyskiwania i pełne logowanie" -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "Lustro mojego własnego komentarza" +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Załóż nowe konto" -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "Wróć do edytora kontaktów" +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Zarejestruj" -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "Odśwież dane kontaktowe" - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "Zdalny Self" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "Publikacje lustrzane od tego kontaktu" - -#: src/Module/Contact/Advanced.php:148 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu." - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "Nazwa konta" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - zastępuje Imię/Pseudonim" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "Adres URL konta" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " msgstr "" -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "Adres URL żądający znajomości" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "URL potwierdzający znajomość" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "Zgłoszenie Punktu Końcowego URL" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "Adres Ankiety/RSS" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "Nowe zdjęcie z tego adresu URL" - -#: src/Module/Contact.php:88 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "Zedytowano %d kontakt." -msgstr[1] "Zedytowano %d kontakty." -msgstr[2] "Zedytowano %d kontaktów." -msgstr[3] "%dedytuj kontakty." - -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "Nie można uzyskać dostępu do rejestru kontaktów." - -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "Zaktualizowano kontakt." - -#: src/Module/Contact.php:385 -msgid "Contact not found" -msgstr "Nie znaleziono kontaktu" - -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "Kontakt został zablokowany" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "Kontakt został odblokowany" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "Kontakt jest ignorowany" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "Kontakt nie jest ignorowany" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "Kontakt został zarchiwizowany" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "Kontakt został przywrócony" - -#: src/Module/Contact.php:448 -msgid "Drop contact" -msgstr "Usuń kontakt" - -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "Czy na pewno chcesz usunąć ten kontakt?" - -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "Kontakt został usunięty." - -#: src/Module/Contact.php:495 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jesteś już znajomym z %s" - -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "Współdzielisz z %s" - -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s współdzieli z tobą" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "Nie można nawiązać prywatnej rozmowy z tym kontaktem." - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "Nigdy" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(Aktualizacja przebiegła pomyślnie)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(Aktualizacja nie powiodła się)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "Osoby, które możesz znać" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Typ sieci: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "Utracono komunikację z tym kontaktem!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "Pobierz dalsze informacje dla kanałów" - -#: src/Module/Contact.php:553 +#: src/Module/Security/Login.php:129 msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania." +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta." -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "Pobierz informacje" +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "Lub zaloguj się za pośrednictwem OpenID: " -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "Pobierz słowa kluczowe" +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Wyloguj" -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "Pobierz informacje i słowa kluczowe" +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Zaloguj się" -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "Informacje kontaktowe/Notatki" +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Hasło: " -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "Ustawienia kontaktów" +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Zapamiętaj mnie" -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "Kontakt" +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "Zapomniałeś swojego hasła?" -#: src/Module/Contact.php:585 -msgid "Their personal note" -msgstr "Ich osobista uwaga" +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Warunki korzystania z witryny" -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "Edytuj notatki kontaktu" +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "warunki użytkowania" -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Obejrzyj %s's profil [%s]" +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Polityka Prywatności Witryny" -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "Zablokuj/odblokuj kontakt" +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "polityka prywatności" -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "Ignoruj kontakt" - -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "Wyświetl rozmowy" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "Ostatnia aktualizacja:" - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "Zaktualizuj publiczne posty" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "Aktualizuj teraz" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "Odblokuj" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "Obecnie zablokowany" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "Obecnie zignorowany" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "Obecnie zarchiwizowany" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "Oczekiwanie na potwierdzenie połączenia" - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 -msgid "Hide this contact from others" -msgstr "Ukryj ten kontakt przed innymi" - -#: src/Module/Contact.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" - -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "Powiadomienie o nowych postach" - -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu" - -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "Słowa kluczowe na czarnej liście" - -#: src/Module/Contact.php:616 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'" - -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "Akcja" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "Pokaż wszystkie kontakty" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "Oczekujące" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "Pokaż tylko oczekujące kontakty" - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "Zablokowane" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "Pokaż tylko zablokowane kontakty" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "Ignorowane" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "Pokaż tylko ignorowane kontakty" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "Zarchiwizowane" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "Pokaż tylko zarchiwizowane kontakty" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "Ukryte" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "Pokaż tylko ukryte kontakty" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "Uporządkuj swoje grupy kontaktów" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "Wyszukaj w kontaktach" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 -#, php-format -msgid "Results for: %s" -msgstr "Wyniki dla: %s" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "Archiwum" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "Przywróć z archiwum" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "Akcje wsadowe" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "Rozmowy rozpoczęły się od tego kontaktu" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "Posty i komentarze" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "Zobacz wszystkie kontakty" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "Zobacz wszystkich popularnych znajomych" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "Zaawansowane ustawienia kontaktów" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "Wzajemna przyjaźń" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "jest twoim fanem" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "jesteś fanem" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "Oczekujące żądanie kontaktu wychodzącego" - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "Oczekujące żądanie kontaktu przychodzącego" - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "Edytuj kontakt" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "Przełącz status na Zablokowany" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "Przełącz status na Ignorowany" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "Przełącz status na Archiwalny" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "Usuń kontakt" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Lokalna społeczność" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Wpisy od lokalnych użytkowników na tym serwerze" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Globalna społeczność" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "Brak wyników." - -#: src/Module/Conversation/Community.php:125 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła." - -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "Opcja wspólnotowa jest niedostępna." - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Niedostępne." - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Zaufany" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!" - -#: src/Module/Debug/Babel.php:49 -msgid "Source input" -msgstr "Źródło wejściowe" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" -msgstr "BBCode::na prosty tekst" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode:: konwersjia (raw HTML)" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" -msgstr "BBCode::przekształć" - -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::przekształć => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::przekształć" +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID." -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" +#: src/Module/Security/OpenID.php:94 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID." -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "Element Body" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "Element Tagów" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "Źródło wejściowe (format Diaspora)" - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "Surowe wejście HTML" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "Wejście HTML" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "Tekst źródłowy" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "Musisz być zalogowany, aby korzystać z tego modułu" - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "Źródłowy adres URL" +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7961,94 +4827,559 @@ msgstr "Zmień strefę czasową: %s" msgid "Please select your timezone:" msgstr "Wybierz swoją strefę czasową:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "Źródło wejściowe" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "BBCode::na prosty tekst" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode:: konwersjia (raw HTML)" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "BBCode::przekształć" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::przekształć => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::przekształć" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "Element Body" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "Element Tagów" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "Źródło wejściowe (format Diaspora)" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "Markdown::convert" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "Surowe wejście HTML" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "Wejście HTML" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "HTML::toBBCode => BBCode::convert" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "HTML::toMarkdown" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "Tekst źródłowy" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "BBCode" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie." +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "Musisz być zalogowany, aby korzystać z tego modułu" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "Źródłowy adres URL" + #: src/Module/Debug/Probe.php:54 msgid "Lookup address" msgstr "Wyszukaj adres" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Zarządzaj tożsamościami i/lub stronami" - -#: src/Module/Delegation.php:148 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Wybierz tożsamość do zarządzania: " - -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." - -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "Znajdź na tej stronie" - -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "Wyniki dla:" - -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "Katalog Witryny" - -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" +msgid "%s's timeline" +msgstr "oś czasu %s" + +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 +#, php-format +msgid "%s's posts" +msgstr "wpisy %s" + +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "komentarze %s" + +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "Brak kontaktów." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "Wszystkie kontakty" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "Kolejny" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "Wspólni znajomi" + +#: src/Module/Profile/Profile.php:135 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "- wybierz -" +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Członek od:" -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "Zainstalowane dodatki/aplikacje:" +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "d M, R" -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "Brak zainstalowanych dodatków/aplikacji" +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "d M" -#: src/Module/Friendica.php:68 +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Urodziny:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Wiek: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 #, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła." +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "Na tym serwerze następujące serwery zdalne są blokowane." +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Strona główna:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Fora:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "Wyświetl profil jako:" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Edytuj profil" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta." + +#: src/Module/Register.php:101 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając \"Register\"." + +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." + +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Twój OpenID (opcjonalnie): " + +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Czy dołączyć twój profil do katalogu członków?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Uwaga dla administratora" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "Twój kod zaproszenia: " + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Rejestracja" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Twoje imię i nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe): " + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)." + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "Powtórz swój adres e-mail:" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." + +#: src/Module/Register.php:151 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s." +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to \"nickname@%s\"." -#: src/Module/Friendica.php:98 +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Wybierz pseudonim: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Zaimportuj swój profil do tej instancji friendica" + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Warunki usługi" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Hasło nadrzędne:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica." +"Please enter the password of the parent account to legitimize your request." +msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Raporty o błędach i problemy: odwiedź stronę" +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "Hasło nie jest zgodne." -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "śledzenie błędów na github" +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "Wprowadź hasło." -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”" +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "Podałeś za dużo informacji." + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "Wpisz identyczny adres e-mail w drugim polu." + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "Dodatkowe konto zostało utworzone." + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
login: %s
hasło: %s

Możesz zmienić swoje hasło po zalogowaniu." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Rejestracja udana." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Nie można przetworzyć Twojej rejestracji." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "Musisz zostawić notatkę z prośbą do administratora." + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Nieprawidłowe żądanie" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Nieautoryzowane" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Zabronione" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Nie znaleziono" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "Wewnętrzny błąd serwera" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "Usługa Niedostępna " + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "Serwer nie może lub nie będzie przetwarzać żądania z powodu widocznego błędu klienta." + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "Uwierzytelnienie jest wymagane i nie powiodło się lub nie zostało jeszcze dostarczone." + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "Żądanie było ważne, ale serwer odmawia działania. Użytkownik może nie mieć wymaganych uprawnień do zasobu lub może potrzebować konta." + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "Żądany zasób nie został znaleziony, ale może być dostępny w przyszłości." + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "Napotkano nieoczekiwany warunek i nie jest odpowiedni żaden bardziej szczegółowy komunikat." + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "Serwer jest obecnie niedostępny (ponieważ jest przeciążony lub wyłączony z powodu konserwacji). Spróbuj ponownie później." + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "Wróć" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Witamy w %s" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "Brak znajomych do wyświetlenia." #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." @@ -8067,114 +5398,16 @@ msgstr "Zaproponuj znajomych" msgid "Suggest a friend for %s" msgstr "Zaproponuj znajomych dla %s" -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "Grupa utworzona." +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Zaufany" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "Nie można utworzyć grupy." - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "Nie znaleziono grupy." - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "Zmieniono nazwę grupy." - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "Nieznana grupa." - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Kontakt został usunięty." - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Nie można dodać kontaktu do grupy." - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Kontakt został pomyślnie dodany do grupy." - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Nie można usunąć kontaktu z grupy." - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Kontakt został pomyślnie usunięty z grupy." - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "Nieznane polecenie grupy." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Błędne żądanie." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Zapisz grupę" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filtr" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Stwórz grupę znajomych." - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "Grupa usunięta." - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "Nie można usunąć grupy." - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "Usuń grupę" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "Edytuj nazwę grupy" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "Członkowie" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "Usuń kontakt z grupy" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "Kliknij na kontakt w celu dodania lub usunięcia." - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "Dodaj kontakt do grupy" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Pomoc:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Witamy w %s" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Brak profilu" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "" +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8188,10 +5421,30 @@ msgstr "Sprawdzanie systemu" msgid "Check again" msgstr "Sprawdź ponownie" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "Brak SSL, linki będą śledzić stan SSL" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "Wymuś używanie SSL na wszystkich odnośnikach" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Wewnętrzne Certyfikaty, użyj SSL tylko dla linków lokalnych . " + #: src/Module/Install.php:208 msgid "Base settings" msgstr "Ustawienia bazy" +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "Polityka odnośników SSL" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Określa, czy generowane odnośniki będą obowiązkowo używały SSL" + #: src/Module/Install.php:215 msgid "Host name" msgstr "Nazwa hosta" @@ -8320,6 +5573,813 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny." +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- wybierz -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Nie są dostępne zdalne informacje o prywatności." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Widoczne dla:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Zarządzaj tożsamościami i/lub stronami" + +#: src/Module/Delegation.php:148 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Wybierz tożsamość do zarządzania: " + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "Lokalna społeczność" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "Wpisy od lokalnych użytkowników na tym serwerze" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "Globalna społeczność" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "Brak wyników." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła." + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "Opcja wspólnotowa jest niedostępna." + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "Niedostępne." + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Witamy na Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Lista nowych członków" + +#: src/Module/Welcome.php:46 +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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Pierwsze kroki" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica Przejdź-Przez" + +#: src/Module/Welcome.php:50 +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 stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Idź do swoich ustawień" + +#: src/Module/Welcome.php:54 +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 stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej." + +#: src/Module/Welcome.php:55 +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 "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Wyślij zdjęcie profilowe" + +#: src/Module/Welcome.php:59 +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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Edytuj własny profil" + +#: src/Module/Welcome.php:61 +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 "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Słowa kluczowe profilu" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "Ustaw kilka publicznych słów kluczowych dla swojego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zasugerować przyjaźnie." + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Łączenie" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Importowanie e-maili" + +#: src/Module/Welcome.php:68 +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 "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Idź do strony z Twoimi kontaktami" + +#: src/Module/Welcome.php:70 +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 "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Idż do twojej strony" + +#: src/Module/Welcome.php:72 +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 "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Znajdowanie nowych osób" + +#: src/Module/Welcome.php:74 +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 bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Grupy" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Grupy kontaktów" + +#: src/Module/Welcome.php:78 +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 "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Dlaczego moje posty nie są publiczne?" + +#: src/Module/Welcome.php:81 +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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Otrzymaj pomoc" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Przejdź do sekcji pomocy" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "Na tej stronie brakuje parametru url." + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "Post został utworzony" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Informacje" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Przegląd" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Statystyki Organizacji" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Konfiguracja" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Strona" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Użytkownicy" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Dodatki" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Wygląd" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Dodatkowe funkcje" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "Baza danych" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "Aktualizacje DB" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "Sprawdź Odroczonych Pracowników" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "Sprawdź kolejkę pracowników" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Narzędzia" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Lista zablokowanych kontaktów" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Lista zablokowanych serwerów" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Usuń przedmiot" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Logi" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "Zobacz rejestry" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Diagnostyka" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "Informacje o PHP" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "adres sondy" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "sprawdź webfinger" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "Źródło elementu" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Administator" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "Funkcje dodatkowe" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "Rejestracje użytkowników czekające na potwierdzenie" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "Zedytowano %d kontakt." +msgstr[1] "Zedytowano %d kontakty." +msgstr[2] "Zedytowano %d kontaktów." +msgstr[3] "%dedytuj kontakty." + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "Nie można uzyskać dostępu do rejestru kontaktów." + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "Śledź" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "Nie znaleziono kontaktu" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "Kontakt został zablokowany" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "Kontakt został odblokowany" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "Kontakt jest ignorowany" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "Kontakt nie jest ignorowany" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "Kontakt został zarchiwizowany" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "Kontakt został przywrócony" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Usuń kontakt" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "Czy na pewno chcesz usunąć ten kontakt?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "Kontakt został usunięty." + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jesteś już znajomym z %s" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "Współdzielisz z %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s współdzieli z tobą" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Nie można nawiązać prywatnej rozmowy z tym kontaktem." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Nigdy" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(Aktualizacja przebiegła pomyślnie)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(Aktualizacja nie powiodła się)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Osoby, które możesz znać" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Typ sieci: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "Utracono komunikację z tym kontaktem!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Pobierz dalsze informacje dla kanałów" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania." + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Wyłączony" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Pobierz informacje" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "Pobierz słowa kluczowe" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Pobierz informacje i słowa kluczowe" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Informacje kontaktowe/Notatki" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Ustawienia kontaktów" + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Kontakt" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Ich osobista uwaga" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Edytuj notatki kontaktu" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Obejrzyj %s's profil [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Zablokuj/odblokuj kontakt" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Ignoruj kontakt" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "Wyświetl rozmowy" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Ostatnia aktualizacja:" + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Zaktualizuj publiczne posty" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Aktualizuj teraz" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Odblokuj" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Odblokuj" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "Obecnie zablokowany" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "Obecnie zignorowany" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "Obecnie zarchiwizowany" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "Oczekiwanie na potwierdzenie połączenia" + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Powiadomienie o nowych postach" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu" + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Akcja" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "Wszystkie kontakty" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Pokaż wszystkie kontakty" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "Oczekujące" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "Pokaż tylko oczekujące kontakty" + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Zablokowane" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Pokaż tylko zablokowane kontakty" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Ignorowane" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Pokaż tylko ignorowane kontakty" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Zarchiwizowane" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Pokaż tylko zarchiwizowane kontakty" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Ukryte" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Pokaż tylko ukryte kontakty" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "Uporządkuj swoje grupy kontaktów" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Wyszukaj w kontaktach" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Wyniki dla: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Archiwum" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Przywróć z archiwum" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Akcje wsadowe" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "Rozmowy rozpoczęły się od tego kontaktu" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "Posty i komentarze" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Szczegóły profilu" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "Zobacz wszystkie kontakty" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "Zobacz wszystkich popularnych znajomych" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Zaawansowane ustawienia kontaktów" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Wzajemna przyjaźń" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "jest twoim fanem" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "jesteś fanem" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "Oczekujące żądanie kontaktu wychodzącego" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "Oczekujące żądanie kontaktu przychodzącego" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Odśwież dane kontaktowe" + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Przełącz status na Zablokowany" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Przełącz status na Ignorowany" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Przełącz status na Archiwalny" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Usuń kontakt" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "" + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "Oświadczenie o prywatności" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Pomoc:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "Przekroczono limit zaproszeń ogółem." @@ -8426,6 +6486,1858 @@ msgid "" "important, please visit http://friendi.ca" msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca" +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "Szukaj osób - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Przeszukiwanie forum - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Wyłącz" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Zezwól" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Motyw %s wyłączony." + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Motyw %s został pomyślnie włączony." + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "Nie udało się zainstalować motywu %s." + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Zrzut ekranu" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Administracja" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Włącz" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Autor: " + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Opiekun: " + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "Nieznany motyw." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Przeładuj aktywne motywy" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Eksperymentalne]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Niewspieralne]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Funkcja blokady %s" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Zarządzanie dodatkowymi funkcjami" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s użytkownik zablokowany" +msgstr[1] "%s użytkowników zablokowanych" +msgstr[2] "%s użytkowników zablokowanych" +msgstr[3] "%s użytkownicy zablokowani" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "Nie możesz usunąć siebie" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "usunięto %s użytkownika" +msgstr[1] "usunięto %s użytkowników" +msgstr[2] "usunięto %s użytkowników" +msgstr[3] "%s usuniętych użytkowników" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "Użytkownik \"%s\" usunięty" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "Użytkownik \"%s\" zablokowany" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Użytkownik \"%s\" odblokowany" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "Rejestracja odwołana" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "Prywatne forum" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "Przekaźnik" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "E-mail" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Data rejestracji" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Ostatnie logowanie" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "Typu" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Dodaj użytkownika" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "zaznacz wszystko" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "Zarejestrowani użytkownicy czekający na potwierdzenie" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "Użytkownik czekający na trwałe usunięcie" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Data prośby" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "Brak rejestracji." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Uwaga od użytkownika" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Odmów" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "Użytkownik zablokowany" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Administracja stroną" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Konto wygasło" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "Nowy użytkownik" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "Trwałe usunięcie" + +#: src/Module/Admin/Users.php:267 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" + +#: src/Module/Admin/Users.php:268 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Nazwa nowego użytkownika." + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Pseudonim" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Pseudonim nowego użytkownika." + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "Adres email nowego użytkownika." + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "Sprawdź kolejkę odroczonych pracowników" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "Ta strona zawiera listę zadań opóźnionych pracowników. Są to zadania, które nie mogą być wykonywane po raz pierwszy." + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "Sprawdź Kolejkę Pracowników" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "Ta strona zawiera listę aktualnie ustawionych zadań dla pracowników. Te zadania są obsługiwane przez cronjob pracownika, który skonfigurowałeś podczas instalacji." + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "Parametry zadania" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Utwórz" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "Priorytet" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "Aktualizacja została oznaczona jako udana" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Aktualizacja %s została pomyślnie zastosowana." + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "Brak błędów aktualizacji." + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Sprawdź strukturę bazy danych" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Błąd aktualizacji" + +#: src/Module/Admin/DBSync.php:117 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Inne" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "nieznany" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł." + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Błąd podczas próby otwarcia %1$s pliku dziennika. \\r\\n
Sprawdź, czy plik %1$s istnieje i czy można go odczytać." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Nie można otworzyć %1$spliku dziennika. \\r\\n
Sprawdź, czy plik %1$s jest czytelny." + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "Plik dziennika '%s' nie jest zapisywalny. Brak możliwości logowania" + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "Dziennik PHP jest obecnie włączony." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "Dziennik PHP jest obecnie wyłączony." + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "Wyczyść" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Włącz debugowanie" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Plik logów" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Poziom logów" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "Logowanie w PHP" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "Aby tymczasowo włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dołączyć do pliku index.php swojej instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć." + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej : //" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "Nieprawidłowa wartość ustawienia magazynu pamięci." + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "Brak specialnego motywu dla urządzeń mobilnych" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s- (Eksperymentalne)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "Brak strony społeczności dla użytkowników lokalnych" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "Brak strony społeczności" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Publikacje publiczne od użytkowników tej strony" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "Publikacje wpisy ze sfederowanej sieci" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Tryb wielu użytkowników" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Zamknięte" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Wymaga zatwierdzenia" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Otwarta" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "Nie sprawdzaj" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "sprawdź wersję stabilną" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "sprawdź wersję rozwojową" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "brak" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "Baza danych (legacy)" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Ponownie opublikuj użytkowników w katalogu" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "Przesyłanie plików" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Zasady" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Katalog kontaktów automatycznie odkrytych" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Ustawienia" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Pracownik" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "Przekazywanie wiadomości" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "Zmień lokalizację" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "" + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Nazwa strony" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "E-mail nadawcy" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Logo" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Ikona skrótu" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Link do ikony, która będzie używana w przeglądarkach." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Dołącz ikonę" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Dodatkowe informacje" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers." + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "Język systemu" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "Motyw systemowy" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Motyw systemu mobilnego" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Motyw na urządzenia mobilne" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "Wymuś SSL" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Ukryj pomoc w menu nawigacyjnym" + +#: src/Module/Admin/Site.php:613 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Tryb pojedynczego użytkownika" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika" + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "Backend przechowywania plików" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "" + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Maksymalny rozmiar zdjęcia" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Maksymalna długość obrazu" + +#: src/Module/Admin/Site.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "Jakość obrazu JPEG" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Zasady rejestracji" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maksymalna dzienna rejestracja" + +#: src/Module/Admin/Site.php:623 +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 "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Zarejestruj tekst" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj." + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "Zakazane pseudonimy" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Lista oddzielonych przecinkami pseudonimów, których nie wolno rejestrować. Preset to lista nazw ról zgodnie z RFC 2142." + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Konta porzucone po x dni" + +#: src/Module/Admin/Site.php:626 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Dozwolone domeny przyjaciół" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie." + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Dozwolone domeny e-mailowe" + +#: src/Module/Admin/Site.php:628 +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 "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny" + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "Brak treści multimedialnych ze znaczkiem HTML" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej." + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "Dozwolone domeny OEmbed" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "Rozdzielana przecinkami lista domen, w których wyświetlana jest treść, może być wyświetlana. Symbole wieloznaczne są akceptowane." + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Blokuj publicznie" + +#: src/Module/Admin/Site.php:631 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Wymuś publikację" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR" + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "Globalny adres URL katalogu" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Prywatne posty domyślnie dla nowych użytkowników" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" + +#: src/Module/Admin/Site.php:635 +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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "Nie umieszczaj prywatnych zdjęć w postach" + +#: src/Module/Admin/Site.php:637 +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 "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "Treści dla dorosłych" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Ustaw to, aby ogłosić, że Twój węzeł jest używany głównie do jawnej treści, która może nie być odpowiednia dla nieletnich. Informacje te zostaną opublikowane w informacjach o węźle i mogą zostać wykorzystane, np. w katalogu globalnym, aby filtrować węzeł z list węzłów do przyłączenia. Dodatkowo notatka o tym zostanie pokazana na stronie rejestracji użytkownika." + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Zezwól użytkownikom na ustawienie remote_self" + +#: src/Module/Admin/Site.php:639 +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 "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników." + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Zablokuj wielokrotną rejestrację" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. " + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "Wyłącz OpenID" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "Wyłącz obsługę OpenID dla rejestracji i logowania." + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "Bez sprawdzania pełnej nazwy" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "Zezwól użytkownikom na rejestrację bez spacji między imieniem i nazwiskiem w ich pełnym imieniu." + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "Strony społecznościowe dla odwiedzających" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony." + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Lista postów użytkownika na stronie społeczności" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy „Globalnej społeczności”)" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "Wyłącz obsługę OStatus" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Wyłącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itd.). Wszystkie rozmowy w OStatus są publiczne, więc czasem będą pojawiać się ostrzeżenia o prywatności." + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Obsługa OStatus może być włączona tylko wtedy, gdy włączone jest wątkowanie." + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Włączyć obsługę Diaspory" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Zapewnij wbudowaną kompatybilność z siecią Diaspora." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Dopuść tylko kontakty Friendrica" + +#: src/Module/Admin/Site.php:650 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Wszyscy znajomi muszą używać protokołów Friendica. Wszystkie inne wbudowane protokoły komunikacyjne są wyłączone." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "Weryfikacja SSL" + +#: src/Module/Admin/Site.php:651 +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 "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Użytkownik proxy" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Network timeout" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Maksymalne obciążenie średnie" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "Maksymalne obciążenie systemu przed dostarczeniem i procesami odpytywania jest odroczone - domyślnie %d." + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Maksymalne obciążenie średnie (Frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Minimalna pamięć" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)." + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Dni między żądaniem" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Odkryj kontakty z innych serwerów" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Wyszukaj w lokalnym katalogu" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Publikuj informacje o serwerze" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Jeśli ta opcja jest włączona, ogólne dane dotyczące serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów i aktywowane protokoły i złącza. Szczegółowe informacje można znaleźć na the-federation.info." + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Sprawdź wersję powyżej" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Ukryj tagi" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Pomiń wyświetlenie listy hashtagów na końcu postu." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "Wyczyść bazę danych" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Usuń stare zdalne pozycje, osierocone rekordy bazy danych i starą zawartość z innych tabel pomocników." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "Żywotność odległych przedmiotów" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "Po włączeniu czyszczenia bazy danych określa dni, po których zdalne elementy zostaną usunięte. Własne przedmioty oraz oznaczone lub wypełnione pozycje są zawsze przechowywane. 0 wyłącza to zachowanie." + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "Żywotność nieodebranych przedmiotów" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0." + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "Trwałość nieprzetworzonych danych konwersacji" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni." + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Ścieżka do pamięci podręcznej" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne." + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Czas trwania w sekundach" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1." + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Maksymalna liczba komentarzy na post" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100." + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Ścieżka do Temp" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę." + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Wyłącz obraz proxy" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "Serwer proxy zwiększa wydajność i prywatność. Nie powinno być używane w systemach o bardzo niskiej przepustowości." + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Szukaj tylko w tagach" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "Nowy bazowy adres url" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Zmień bazowy adres URL dla tego serwera. Wysyła wiadomość o przeniesieniu do wszystkich kontaktów Friendica i Diaspora* wszystkich użytkowników." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "Szyfrowanie RINO" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Warstwa szyfrowania między węzłami." + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "Włącz" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Maksymalna liczba równoległych pracowników" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "Na udostępnionych usługach hostingowych ustaw tę opcję %d. W większych systemach wartości %dsą świetne . Wartość domyślna to %d." + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "Włącz to, jeśli twój system nie zezwala na użycie „proc_open”. Może się tak zdarzyć na współdzielonych hostach. Jeśli to jest włączone, powinieneś zwiększyć częstotliwość wywołań roboczych w crontabie." + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Włącz Fastlane" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Po włączeniu system Fastlane uruchamia dodatkowego pracownika, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie." + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Włącz pracownika frontend" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "Subskrybuj przekaźnik" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "Umożliwia odbieranie publicznych wiadomości z przekaźnika. Zostaną uwzględnione w tagach wyszukiwania, subskrybowanych i na stronie społeczności globalnej." + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "Serwer przekazujący" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "Adres serwera przekazującego, do którego należy wysyłać publiczne posty. Na przykład https://relay.diasp.org" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "Bezpośredni transfer przekaźników" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących" + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "Zakres przekaźnika" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "Mogą to być „wszystkie” lub „tagi”. „wszystkie” oznacza, że ​​każdy publiczny post powinien zostać odebrany. „Tagi” oznaczają, że powinny być odbierane tylko posty z wybranymi tagami." + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "wszystko" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "tagi" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "Serwer tagów" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”." + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "Pozwól na tagi użytkowników" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "Jeśli ta opcja jest włączona, tagi z zapisanych wyszukiwań będą używane jako subskrypcja „tagów” jako uzupełnienie do \"relay_server_tags\"." + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "Rozpocznij przenoszenie" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić." + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)." + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji." + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "System.basepath Friendiki został zaktualizowany z '%s' do '%s'. Usuń system.basepath z bazy danych, aby uniknąć różnic." + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "Obecny system.basepath Friendiki '%s' jest nieprawidłowy i plik konfiguracyjny '%s' nie jest używany." + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "Obecny system.basepath Friendiki '%s' nie jest równy plikowi konfiguracyjnemu '%s'. Napraw konfigurację." + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Konto normalne" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "Automatyczne konto obserwatora" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Publiczne konto na forum" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Konto Bloga" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Prywatne konto na forum" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Wiadomości" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "Ustawienia serwera" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Zarejestrowani użytkownicy" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Oczekujące rejestracje" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Wersja" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "Aktywne dodatki" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Wyświetl Warunki korzystania z usługi" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Wyświetl oświadczenie o prywatności" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Podgląd oświadczenia o prywatności" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "Warunki świadczenia usług" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "Wzorzec domeny serwera dodano do listy bloków." + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "Zablokowany wzorzec domeny serwera" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Powód blokowania" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "Usuń wzorzec domeny serwera" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "Lista bloków wzorców domen serwerów" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Dodaj nowy wpis do listy bloków" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "Wzorzec domeny serwera" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "Wzorzec domeny nowego serwera do dodania do listy bloków. Nie dołączaj protokołu." + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Powód zablokowania" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "Powód zablokowania wzorca domeny serwera." + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Dodaj wpis" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Zapisz zmiany w liście zablokowanych" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Aktualne wpisy na liście zablokowanych" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Usuń wpis z listy zablokowanych" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Usunąć wpis z listy zablokowanych?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s kontakt odblokowany" +msgstr[1] "%s kontakty odblokowane" +msgstr[2] "%s kontaktów odblokowanych" +msgstr[3] "%s kontaktów odblokowanych" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Lista zablokowanych kontaktów zdalnych" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Zablokuj kontakt zdalny" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "wybierz brak" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "Z tego węzła nie jest blokowany kontakt zdalny." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Zablokowane kontakty zdalne" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Zablokuj nowy kontakt zdalny" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Zdjęcie" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "łącznie %s zablokowany kontakt" +msgstr[1] "łącznie %s zablokowane kontakty" +msgstr[2] "łącznie %s zablokowanych kontaktów" +msgstr[3] "%s całkowicie zablokowane kontakty" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "Adres URL kontaktu zdalnego do zablokowania." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "Element Guid" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Przedmiot oznaczony do usunięcia." + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Usuń ten przedmiot" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "Identyfikator elementu GUID, który chcesz usunąć." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "Nie znaleziono dodatku." + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Dodatek %s wyłączony." + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Dodatek %s włączony." + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Instalacja dodatku %s nie powiodła się." + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Załaduj ponownie aktywne dodatki" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Znajdź na tej stronie" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Wyniki dla:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Katalog Witryny" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Element nie znaleziony." + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "Wpisz treść postu." @@ -8460,98 +8372,55 @@ msgid "" "your device" msgstr "Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "System wyłączony w celu konserwacji" +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "Zainstalowane dodatki/aplikacje:" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "" +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "Brak zainstalowanych dodatków/aplikacji" -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Pokaż ignorowane żądania" +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła." -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Ukryj zignorowane prośby" +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "Na tym serwerze następujące serwery zdalne są blokowane." -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Typ powiadomienia:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "Sugerowany przez:" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Twierdzi, że go/ją znasz: " - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" - -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości." +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s." -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica." -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Znajomy" +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Raporty o błędach i problemy: odwiedź stronę" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Subskrybent" +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "śledzenie błędów na github" -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "Brak dostępu." +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”" -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "Brak kolejnych %s powiadomień." +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Tylko ty możesz to zobaczyć" -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "" - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Powiadomienia sieciowe" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Powiadomienia systemowe" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Prywatne powiadomienia" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Powiadomienia domowe" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Pokaż nieprzeczytane" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Pokaż wszystko" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Wskazówki dla nowych użytkowników" #: src/Module/Photo.php:87 #, php-format @@ -8563,252 +8432,11 @@ msgstr "" msgid "Invalid photo with id %s." msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s." -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "Użytkownik nie znaleziony." - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "Brak kontaktów." - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "Wszystkie kontakty" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "Członek od:" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "d M, R" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "d M" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "Urodziny:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "Wiek: " - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "Fora:" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "Wyświetl profil jako:" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "oś czasu %s" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "wpisy %s" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "komentarze %s" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta." - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając \"Register\"." - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Twój OpenID (opcjonalnie): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Czy dołączyć twój profil do katalogu członków?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Uwaga dla administratora" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Twój kod zaproszenia: " - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Twoje imię i nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe): " - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)." - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Powtórz swój adres e-mail:" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to \"nickname@%s\"." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Wybierz pseudonim: " - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Zaimportuj swój profil do tej instancji friendica" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "Hasło nadrzędne:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "Hasło nie jest zgodne." - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "Wprowadź hasło." - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "Podałeś za dużo informacji." - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "Wpisz identyczny adres e-mail w drugim polu." - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "Dodatkowe konto zostało utworzone." - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
login: %s
hasło: %s

Możesz zmienić swoje hasło po zalogowaniu." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Rejestracja udana." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Nie można przetworzyć Twojej rejestracji." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "Musisz zostawić notatkę z prośbą do administratora." - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" msgstr "Podany link profilu wydaje się być nieprawidłowy" -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8816,465 +8444,387 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." -msgstr "Musisz być zalogowany, aby korzystać z tego modułu." +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Konto" -#: src/Module/Search/Index.php:52 +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Wygląd" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "Zarządzanie kontami" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Powiązane aplikacje" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Eksportuj dane osobiste" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Usuń konto" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Nie można utworzyć grupy." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Nie znaleziono grupy." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "" + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Nieznana grupa." + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "Kontakt został usunięty." + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Nie można dodać kontaktu do grupy." + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "Kontakt został pomyślnie dodany do grupy." + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Nie można usunąć kontaktu z grupy." + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "Kontakt został pomyślnie usunięty z grupy." + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Nieznane polecenie grupy." + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Błędne żądanie." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Zapisz grupę" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "Filtr" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Stwórz grupę znajomych." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Nazwa grupy: " + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Kontakt nie jest w żadnej grupie" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Nie można usunąć grupy." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Usuń grupę" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Edytuj nazwę grupy" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Członkowie" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Usuń kontakt z grupy" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Kliknij na kontakt w celu dodania lub usunięcia." + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "Dodaj kontakt do grupy" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę." -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Szukaj" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "Przedmioty oznaczone tagiem: %s" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." -msgstr "Wyszukiwane hasło zostało zapisane." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "Musisz być zalogowany, aby korzystać z tego modułu." -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." msgstr "Wyszukiwane hasło jest już zapisane." -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." -msgstr "Wyszukiwane hasło zostało pomyślnie usunięte." - -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Załóż nowe konto" - -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:129 -msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta." +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "Brak profilu" -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Lub zaloguj się za pośrednictwem OpenID: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Hasło: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Zapamiętaj mnie" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Zapomniałeś swojego hasła?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Warunki korzystania z witryny" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "warunki użytkowania" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Polityka Prywatności Witryny" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "polityka prywatności" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Wylogowano." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Zaczepić" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "szturchać, zaczepić lub robić inne rzeczy" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Wybierz, co chcesz zrobić" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Ustaw ten post jako prywatny" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Nie udało się zaktualizować kontaktu." + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "Pozostałe kody odzyskiwania: %d" +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "Bez dublowania" -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "Nieprawidłowy kod, spróbuj ponownie." +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Przesłany lustrzany post" -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Odzyskiwanie dwuczynnikowe" +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Lustro mojego własnego komentarza" -#: src/Module/Security/TwoFactor/Recovery.php:84 +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Wróć do edytora kontaktów" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Zdalny Self" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Publikacje lustrzane od tego kontaktu" + +#: src/Module/Contact/Advanced.php:146 msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "

Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.

" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu." -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania " +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Nazwa konta" -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Wprowadź kod odzyskiwania" +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - zastępuje Imię/Pseudonim" -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Prześlij kod odzyskiwania i pełne logowanie" +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "Adres URL konta" -#: src/Module/Security/TwoFactor/Verify.php:81 -msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "

Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.

" - -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Wprowadź kod z aplikacji uwierzytelniającej" - -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "Zweryfikuj kod i zakończ logowanie" - -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Delegacja została pomyślnie przyznana." - -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "Delegacja została pomyślnie odwołana." - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Nie znaleziono delegowanego użytkownika." - -#: src/Module/Settings/Delegation.php:142 -msgid "No parent user" -msgstr "Brak nadrzędnego użytkownika" - -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 -msgid "Parent User" -msgstr "Użytkownik nadrzędny" - -#: src/Module/Settings/Delegation.php:161 -msgid "Additional Accounts" -msgstr "Dodatkowe konta" - -#: src/Module/Settings/Delegation.php:162 -msgid "" -"Register additional accounts that are automatically connected to your " -"existing account so you can manage them from this account." -msgstr "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta." - -#: src/Module/Settings/Delegation.php:163 -msgid "Register an additional account" -msgstr "Zarejestruj dodatkowe konto" - -#: src/Module/Settings/Delegation.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." - -#: src/Module/Settings/Delegation.php:171 -msgid "Delegates" -msgstr "Oddeleguj" - -#: src/Module/Settings/Delegation.php:173 -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 "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." - -#: src/Module/Settings/Delegation.php:174 -msgid "Existing Page Delegates" -msgstr "Obecni delegaci stron" - -#: src/Module/Settings/Delegation.php:176 -msgid "Potential Delegates" -msgstr "Potencjalni delegaci" - -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "Dodaj" - -#: src/Module/Settings/Delegation.php:180 -msgid "No entries." -msgstr "Brak wpisów." - -#: src/Module/Settings/Display.php:101 -msgid "The theme you chose isn't available." -msgstr "Wybrany motyw jest niedostępny." - -#: src/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Nieobsługiwane)" - -#: src/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "Ustawienia wyglądu" - -#: src/Module/Settings/Display.php:183 -msgid "General Theme Settings" -msgstr "Ogólne ustawienia motywu" - -#: src/Module/Settings/Display.php:184 -msgid "Custom Theme Settings" -msgstr "Niestandardowe ustawienia motywów" - -#: src/Module/Settings/Display.php:185 -msgid "Content Settings" -msgstr "Ustawienia zawartości" - -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Ustawienia motywu" - -#: src/Module/Settings/Display.php:187 -msgid "Calendar" -msgstr "Kalendarz" - -#: src/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "Wyświetl motyw:" - -#: src/Module/Settings/Display.php:194 -msgid "Mobile Theme:" -msgstr "Motyw dla urządzeń mobilnych:" - -#: src/Module/Settings/Display.php:197 -msgid "Number of items to display per page:" -msgstr "Liczba elementów do wyświetlenia na stronie:" - -#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 -msgid "Maximum of 100 items" -msgstr "Maksymalnie 100 elementów" - -#: src/Module/Settings/Display.php:198 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" - -#: src/Module/Settings/Display.php:199 -msgid "Update browser every xx seconds" -msgstr "Odświeżaj stronę co xx sekund" - -#: src/Module/Settings/Display.php:199 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." - -#: src/Module/Settings/Display.php:200 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatyczne aktualizacje tylko w górnej części stron strumienia postu" - -#: src/Module/Settings/Display.php:200 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" msgstr "" -#: src/Module/Settings/Display.php:201 -msgid "Don't show emoticons" -msgstr "Nie pokazuj emotikonek" +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "Adres URL żądający znajomości" -#: src/Module/Settings/Display.php:201 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "Zazwyczaj emotikony są zastępowane pasującymi symbolami. To ustawienie wyłącza to zachowanie." +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "URL potwierdzający znajomość" -#: src/Module/Settings/Display.php:202 -msgid "Infinite scroll" -msgstr "Nieskończone przewijanie" +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "Zgłoszenie Punktu Końcowego URL" -#: src/Module/Settings/Display.php:202 -msgid "Automatic fetch new items when reaching the page end." -msgstr "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony." +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "Adres Ankiety/RSS" -#: src/Module/Settings/Display.php:203 -msgid "Disable Smart Threading" -msgstr "Wyłącz inteligentne wątki" +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "Nowe zdjęcie z tego adresu URL" -#: src/Module/Settings/Display.php:203 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "" +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "Brak zainstalowanych aplikacji." -#: src/Module/Settings/Display.php:204 -msgid "Hide the Dislike feature" -msgstr "Ukryj funkcję Nie lubię" +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Aplikacje" -#: src/Module/Settings/Display.php:204 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "" - -#: src/Module/Settings/Display.php:206 -msgid "Beginning of week:" -msgstr "Początek tygodnia:" - -#: src/Module/Settings/Profile/Index.php:86 +#: src/Module/Settings/Profile/Index.php:85 msgid "Profile Name is required." msgstr "Nazwa profilu jest wymagana." -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "Profil zaktualizowany." - -#: src/Module/Settings/Profile/Index.php:140 +#: src/Module/Settings/Profile/Index.php:137 msgid "Profile couldn't be updated." msgstr "Profil nie mógł zostać zaktualizowany." -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "Label:" msgstr "Etykieta:" -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 msgid "Value:" msgstr "Wartość:" -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 msgid "(click to open/close)" msgstr "(kliknij by otworzyć/zamknąć)" -#: src/Module/Settings/Profile/Index.php:211 +#: src/Module/Settings/Profile/Index.php:205 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:235 msgid "Profile Actions" msgstr "Akcje profilowe" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:236 msgid "Edit Profile Details" msgstr "Edytuj informacje o profilu" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:238 msgid "Change Profile Photo" msgstr "Zmień zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:243 msgid "Profile picture" msgstr "Zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:244 msgid "Location" msgstr "Lokalizacja" -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 #: src/Util/Temporal.php:95 msgid "Miscellaneous" msgstr "Różny" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:246 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Wyślij zdjęcie profilowe" - -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:252 msgid "Display name:" msgstr "Nazwa wyświetlana:" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:255 msgid "Street Address:" msgstr "Ulica:" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:256 msgid "Locality/City:" msgstr "Miasto:" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:257 msgid "Region/State:" msgstr "Województwo/Stan:" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:258 msgid "Postal/Zip Code:" msgstr "Kod Pocztowy:" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:259 msgid "Country:" msgstr "Kraj:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "XMPP (Jabber) address:" msgstr "Adres XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić." -#: src/Module/Settings/Profile/Index.php:268 +#: src/Module/Settings/Profile/Index.php:262 msgid "Homepage URL:" msgstr "Adres URL strony domowej:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "Public Keywords:" msgstr "Publiczne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "Private Keywords:" msgstr "Prywatne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "(Used for searching profiles, never shown to others)" msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:265 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9287,7 +8837,7 @@ msgstr "" #: src/Module/Settings/Profile/Photo/Crop.php:102 #: src/Module/Settings/Profile/Photo/Crop.php:118 #: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." @@ -9327,115 +8877,111 @@ msgstr "Użyj obrazu takim, jaki jest" msgid "Missing uploaded image." msgstr " Brak przesłanego obrazu." -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "Pomyślnie wysłano zdjęcie." - -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Profile Picture Settings" msgstr "Ustawienia zdjęcia profilowego" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Current Profile Picture" msgstr "Bieżące zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:130 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Profile Picture" msgstr "Prześlij zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:129 msgid "Upload Picture:" msgstr "Załaduj zdjęcie:" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "or" msgstr "lub" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "skip this step" msgstr "pomiń ten krok" -#: src/Module/Settings/Profile/Photo/Index.php:140 +#: src/Module/Settings/Profile/Photo/Index.php:138 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "Wprowadź hasło, aby uzyskać dostęp do tej strony." +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "Delegacja została pomyślnie przyznana." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty." +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "Delegacja została pomyślnie odwołana." + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 msgid "" -"App-specific password generation failed: This description already exists." -msgstr "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje." +"Delegated administrators can view but not change delegation permissions." +msgstr "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "Nowe hasło specyficzne dla aplikacji." +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "Nie znaleziono delegowanego użytkownika." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte." +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "Brak nadrzędnego użytkownika" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane." +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "Użytkownik nadrzędny" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Dwuskładnikowe hasła aplikacji" +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "Dodatkowe konta" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/Delegation.php:163 msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta." -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "Zarejestruj dodatkowe konto" + +#: src/Module/Settings/Delegation.php:168 msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Opis" +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "Oddeleguj" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Ostatnio używane" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Unieważnij" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Unieważnij wszyskie" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/Delegation.php:174 msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "" +"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 "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "Wygeneruj nowe hasło specyficzne dla aplikacji" +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "Obecni delegaci stron" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "Friendiqa na moim Fairphone 2..." +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Potencjalni delegaci" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "" +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "Dodaj" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "Brak wpisów." #: src/Module/Settings/TwoFactor/Index.php:67 msgid "Two-factor authentication successfully disabled." @@ -9529,36 +9075,11 @@ msgstr "Zarządzaj hasłami specyficznymi dla aplikacji" msgid "Finish app configuration" msgstr "Zakończ konfigurację aplikacji" -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "Wygenerowano nowe kody odzyskiwania." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Dwuskładnikowe kody odzyskiwania" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Wygeneruj nowe kody odzyskiwania" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Następny: Weryfikacja" +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "Wprowadź hasło, aby uzyskać dostęp do tej strony." #: src/Module/Settings/TwoFactor/Verify.php:78 msgid "Two-factor authentication successfully activated." @@ -9605,6 +9126,215 @@ msgstr "

Możesz też otworzyć następujący adres URL w urządzeniu mobilnym msgid "Verify code and enable two-factor authentication" msgstr "Sprawdź kod i włącz uwierzytelnianie dwuskładnikowe" +#: src/Module/Settings/TwoFactor/Recovery.php:66 +msgid "New recovery codes successfully generated." +msgstr "Wygenerowano nowe kody odzyskiwania." + +#: src/Module/Settings/TwoFactor/Recovery.php:92 +msgid "Two-factor recovery codes" +msgstr "Dwuskładnikowe kody odzyskiwania" + +#: src/Module/Settings/TwoFactor/Recovery.php:94 +msgid "" +"

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Wygeneruj nowe kody odzyskiwania" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Następny: Weryfikacja" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "Nowe hasło specyficzne dla aplikacji." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "Dwuskładnikowe hasła aplikacji" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "Opis" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "Ostatnio używane" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "Unieważnij" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "Unieważnij wszyskie" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "Wygeneruj nowe hasło specyficzne dla aplikacji" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa na moim Fairphone 2..." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "Wybrany motyw jest niedostępny." + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Nieobsługiwane)" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Ustawienia wyglądu" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "Ogólne ustawienia motywu" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "Niestandardowe ustawienia motywów" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "Ustawienia zawartości" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "Kalendarz" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "Wyświetl motyw:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "Motyw dla urządzeń mobilnych:" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "Liczba elementów do wyświetlenia na stronie:" + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "Maksymalnie 100 elementów" + +#: src/Module/Settings/Display.php:198 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "Odświeżaj stronę co xx sekund" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "Automatyczne aktualizacje tylko w górnej części stron strumienia postu" + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "" + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "Nie pokazuj emotikonek" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "Zazwyczaj emotikony są zastępowane pasującymi symbolami. To ustawienie wyłącza to zachowanie." + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "Nieskończone przewijanie" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony." + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "Wyłącz inteligentne wątki" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "Ukryj funkcję Nie lubię" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "Początek tygodnia:" + #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "Eksportuj konto" @@ -9636,576 +9366,31 @@ msgid "" " e.g. Mastodon." msgstr "Wyeksportuj listę kont, które obserwujesz, jako plik CSV. Kompatybilny np. Mastodont." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Nieprawidłowe żądanie" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "System wyłączony w celu konserwacji" -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Nieautoryzowane" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Zabronione" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "Wewnętrzny błąd serwera" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Usługa Niedostępna " - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "Serwer nie może lub nie będzie przetwarzać żądania z powodu widocznego błędu klienta." - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Uwierzytelnienie jest wymagane i nie powiodło się lub nie zostało jeszcze dostarczone." - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "Żądanie było ważne, ale serwer odmawia działania. Użytkownik może nie mieć wymaganych uprawnień do zasobu lub może potrzebować konta." - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "Żądany zasób nie został znaleziony, ale może być dostępny w przyszłości." - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "Napotkano nieoczekiwany warunek i nie jest odpowiedni żaden bardziej szczegółowy komunikat." - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "Serwer jest obecnie niedostępny (ponieważ jest przeciążony lub wyłączony z powodu konserwacji). Spróbuj ponownie później." - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "" - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "Oświadczenie o prywatności" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Witamy na Friendica" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "Lista nowych członków" - -#: src/Module/Welcome.php:46 -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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Pierwsze kroki" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica Przejdź-Przez" - -#: src/Module/Welcome.php:50 -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 stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się." - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Idź do swoich ustawień" - -#: src/Module/Welcome.php:54 -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 stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej." - -#: src/Module/Welcome.php:55 -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 "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć." - -#: src/Module/Welcome.php:59 -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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "Edytuj własny profil" - -#: src/Module/Welcome.php:61 -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 "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Słowa kluczowe profilu" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "Ustaw kilka publicznych słów kluczowych dla swojego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zasugerować przyjaźnie." - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Łączenie" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "Importowanie e-maili" - -#: src/Module/Welcome.php:68 -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 "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX" - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Idź do strony z Twoimi kontaktami" - -#: src/Module/Welcome.php:70 -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 "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Idż do twojej strony" - -#: src/Module/Welcome.php:72 -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 "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Znajdowanie nowych osób" - -#: src/Module/Welcome.php:74 -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 bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Grupy kontaktów" - -#: src/Module/Welcome.php:78 -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 "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć." - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Dlaczego moje posty nie są publiczne?" - -#: src/Module/Welcome.php:81 -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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Otrzymaj pomoc" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Przejdź do sekcji pomocy" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Wiadomość została wysłana do ciebie od %s, członka sieci społecznościowej Friendica." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "Możesz odwiedzić ich online pod adresem %s" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s zaktualizował wpis." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Ten wpis został zedytowany" - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "Wiadomość prywatna" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "Usuń lokalnie" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "Usuń globalnie" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "Usuń lokalnie" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "zapisz w folderze" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "Będę uczestniczyć" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "Nie będę uczestniczyć" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "Mogę wziąć udział" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "zignoruj ​​wątek" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "odignoruj ​​wątek" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "przełącz status ignorowania" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "przypnij" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "odepnij" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "Przypięte" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "dodaj gwiazdkę" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "anuluj gwiazdkę" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "włącz status gwiazdy" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "gwiazdką" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "dodaj tag" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "lubię to" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "nie lubię tego" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "Udostępnij to" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "udostępnij" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "do" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "przez" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "Odpowiedź %s" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "Więcej" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "Zadanie Notifier jest w toku" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "Trwa przesyłanie do serwerów zdalnych" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "Trwa dostawa do serwerów zdalnych" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "Trwa dostarczanie do zdalnych serwerów" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d komentarz" -msgstr[1] "%d komentarze" -msgstr[2] "%d komentarzy" -msgstr[3] "%d komentarzy" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "Pokaż więcej" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "Pokaż mniej" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "Załączniki:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s zaczął(-ęła) obserwować %s." -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "następujący" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s przestał(a) obserwować %s." -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "przestał śledzić" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Miasto rodzinne:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "Stan cywilny:" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "Z:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Od:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Preferencje seksualne:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Poglądy polityczne:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Poglądy religijne:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Lubię to:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Nie lubię tego:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Tytuł/Opis:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Muzyka" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Literatura" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Telewizja" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Film/taniec/kultura/rozrywka" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Zainteresowania" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Miłość/romans" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Praca/zatrudnienie" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "Szkoła/edukacja" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Dane kontaktowe i Sieci społecznościowe" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Powiadomienia Friendica" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Załączniki:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10226,6 +9411,10 @@ msgstr "%s Administrator" msgid "thanks" msgstr "dziękuję" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Powiadomienia Friendica" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "RRRR-MM-DD lub MM-DD" @@ -10292,230 +9481,1016 @@ msgstr "w %1$d %2$s" msgid "%1$d %2$s ago" msgstr "%1$d %2$s temu" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(bez tematu)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku. " +msgid "Database storage failed to update %s" +msgstr "Przechowywanie bazy danych nie powiodło się %s" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Magazyn bazy danych nie mógł wstawić danych" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." -msgstr "%s: Aktualizowanie typu postu." +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "Nie można utworzyć magazynu systemu plików \"%s\". Sprawdź, czy masz uprawnienia do zapisu." -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "standardowe" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "zielone zero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "fioletowe zero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "zajączek wielkanocny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "ciemne zero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "luźny" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Zmiana" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "Niestandardowe" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "Uwaga" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Sprawdź uprawnienia do zdjęć, jeśli wszyscy użytkownicy mogą zobaczyć obraz" - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "Wybierz schemat kolorów" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "Skopiuj lub wklej schemat" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat" +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "Nie udało się zapisać danych w pamięci systemu plików \"%s\". Sprawdź swoje uprawnienia do zapisu" -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "Kolor tła paska nawigacyjnego" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Ścieżka bazy pamięci masowej" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "Kolor ikon na pasku nawigacyjnym " - -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "Kolor łączy" - -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "Ustaw kolor tła" - -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "Nieprzezroczystość tła treści" - -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "Ustaw obraz tła" - -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "Styl tła" - -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "Obraz tła strony logowania" - -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "Kolor tła strony logowania" - -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji" - -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "Przejdź do głównej zawartości" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Górny Baner" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Zmień rozmiar obrazu na szerokość ekranu i pokaż kolor tła poniżej na długich stronach." +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Folder, w którym zapisywane są przesłane pliki. Dla maksymalnego bezpieczeństwa, powinna to być ścieżka poza drzewem folderów serwera WWW" -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Pełny ekran" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Wprowadź poprawny istniejący folder" -#: view/theme/frio/php/Image.php:41 +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "aktywność" + +#: src/Model/Item.php:3339 +msgid "post" +msgstr "post" + +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "Ostrzeżenie o treści: %s" + +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "bajty" + +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "Zobacz na oddzielnej stronie" + +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "zobacz na oddzielnej stronie" + +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "link do źródła" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[bez tematu]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Zakończ znajomość" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Organizacja" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "Aktualności" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Forum" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Brak adresu URL połączenia." + +#: src/Model/Contact.php:2307 msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Zmień rozmiar obrazu, aby wypełnić cały ekran, przycinając prawy lub dolny." +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Mozaika jednorzędowa" - -#: view/theme/frio/php/Image.php:42 +#: src/Model/Contact.php:2348 msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Zmień rozmiar obrazu, aby powtórzyć go w jednym wierszu, w pionie lub w poziomie." +"This site is not configured to allow communications with other networks." +msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mozaika" +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Powtórz obraz, aby wypełnić ekran." +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "Gość" +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "Autor lub nazwa nie zostało znalezione." -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "Odwiedzający" +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Wyrównanie" +#: src/Model/Contact.php:2371 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Lewo" +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Środek" +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Zestaw kolorów" +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Rozmiar czcionki postów" +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "Nie można otrzymać informacji kontaktowych" -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Rozmiar czcionki Textareas" +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Rozpoczęcie:" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Lista pomocników oddzielona przecinkami" +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Zakończenie:" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "nie pokazuj" +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "cały dzień" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "pokaż" +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Wrz" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Ustaw styl" +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "Brak wydarzeń do wyświetlenia" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Strony społeczności" +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, F j" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "Profile społeczności" +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Edytuj wydarzenie" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Pomóż lub @NowyTutaj?" +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Zduplikowane zdarzenie" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "Połączone serwisy" +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Usuń wydarzenie" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Znajdź znajomych" +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D g:i A" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "Ostatni użytkownicy" +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "g:i A" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "Szybki start" +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Pokaż mapę" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Ukryj mapę" + +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "%s urodzin" + +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "Urodziny %s" + +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "Logowanie nieudane" + +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "Za mało informacji do uwierzytelnienia" + +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "Hasło nie może być puste" + +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "Puste hasła są niedozwolone." + +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "Hasła nie pasują do siebie. Hasło niezmienione." + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "Wymagane zaproszenie." + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "Zaproszenie niezweryfikowane." + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "Nieprawidłowy adres url OpenID" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "Wprowadź wymagane informacje." + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości." + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." +msgstr[1] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." +msgstr[2] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." +msgstr[3] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Nazwa użytkownika nie może mieć więcej niż %s znaków." +msgstr[1] "Nazwa użytkownika nie może mieć więcej niż %s znaków." +msgstr[2] "Nazwa użytkownika nie może mieć więcej niż %s znaków." +msgstr[3] "Nazwa użytkownika nie może mieć więcej niż %s znaków." + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." + +#: src/Model/User.php:703 +msgid "Your email domain is not among those allowed on this site." +msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "Niepoprawny adres e mail.." + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "Pseudonim został zablokowany przed rejestracją przez administratora węzłów." + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "Nie można użyć tego e-maila." + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "Ten login jest zajęty. Wybierz inny." + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." + +#: src/Model/User.php:808 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Przyjaciele" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie." + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\tSzanowna/y %1$s,\n\t\t\tadministrator of %2$s założył dla Ciebie konto." + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Szczegóły rejestracji dla %s" + +#: src/Model/User.php:1068 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tSzanowny Użytkowniku %1$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%4$s\n\t\t\tHasło:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "Rejestracja w %s" + +#: src/Model/User.php:1111 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tSzanowna/y %1$s,\n\t\t\t\tDziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone.\n\t\t\t" + +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil użytkownika\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\t\ti być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół.\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3$s/removeme\n\n\t\t\tDziękujemy i Zapraszamy do %2$s." + +#: src/Model/Group.php:92 +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 "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie." + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Wszyscy" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "edytuj" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "dodaj" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Edytuj grupy" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Stwórz nową grupę" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Edytuj grupy" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Zmień zdjęcie profilowe" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Kanał Atom" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "g A I F d" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[dziś]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Przypomnienia o urodzinach" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Urodziny w tym tygodniu:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[Brak opisu]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Przypominacze wydarzeń" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "Nadchodzące wydarzenia w ciągu następnych 7 dni:" + +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s wita %2$s" + +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Dodaj nowy kontakt" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Wpisz adres lub lokalizację sieciową" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Połącz" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d zaproszenie dostępne" +msgstr[1] "%d zaproszeń dostępnych" +msgstr[2] "%d zaproszenia dostępne" +msgstr[3] "%d zaproszenia dostępne" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "Wszyscy" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "Relacje" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "Protokoły" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "Wszystkie protokoły" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Zapisz w folderach" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Wszystko" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Kategorie" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d wspólny kontakt" +msgstr[1] "%d wspólne kontakty" +msgstr[2] "%d wspólnych kontaktów" +msgstr[3] "%dwspólnych kontaktów" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Archiwum" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "Często" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "Co godzinę" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "Dwa razy dziennie" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "Codziennie" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "Co tydzień" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "Miesięczne" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "Rozmowa" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "Łącze Diaspora" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "Łącze GNU Social" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "Pub aktywności" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "orzech" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "%s (przez %s)" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Funkcje ogólne" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Lokalizacja zdjęcia" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Popularne tagi" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Pokaż widżet strony społeczności z listą najpopularniejszych tagów w ostatnich postach publicznych." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Ustawienia funkcji postów" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Automatyczne wymienianie forów" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Dodaj wyraźne wzmianki do pola komentarza, aby ręcznie kontrolować, kto zostanie wymieniony w odpowiedziach." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Narzędzia post/komentarz" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Kategorie postów" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Umożliwia dodawanie kategorii do twoich postów" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Zaawansowane ustawienia profilu" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "Lista forów" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Wyświetla publiczne fora społeczności na stronie profilu zaawansowanego" + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Chmura tagów" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Podaj osobistą chmurę tagów na stronie profilu" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Wyświetl datę członkostwa" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Wyświetla datę członkostwa w profilu" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Brak nowych zdarzeń" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Wyczyść powiadomienia" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@imię, !forum, #tagi, treść" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "Zakończ sesję" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Zaloguj się" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Notatki" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "Twoje prywatne notatki" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Strona domowa" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Strona startowa" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Załóż konto" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Pomoc i dokumentacja" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Aplikacje" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Wtyczki, aplikacje, narzędzia, gry" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "Przeszukaj zawartość strony" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Pełny tekst" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Tagi" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Społeczność" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "Rozmowy na tym i innych serwerach" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Katalog" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "Katalog osób" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "Informacje o tej instancji friendica" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "Warunki świadczenia usług tej instancji Friendica" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Zapoznanie" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Prośba o przyjęcie do grona znajomych" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "Zobacz wszystkie powiadomienia" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Odebrane" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Wysłane" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "Konto" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Zarządzaj innymi stronami" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Konfiguracja i ustawienia instancji" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Nawigacja" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Mapa strony" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Usuń wpis" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Zapisywanie wyszukiwania" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Eksport" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Wyeksportuj kalendarz jako ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Eksportuj kalendarz jako csv" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "Więcej popularnych tagów" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "Brak kontaktów" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktów" +msgstr[2] "%d kontakty" +msgstr[3] "%d Kontakty" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "Widok kontaktów" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "nowsze" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "starsze" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Osadzanie wyłączone" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Osadzona zawartość" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "poprzedni" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "ostatni" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "Ładuję więcej wpisów..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "Koniec" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "Kliknij aby otworzyć/zamknąć" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Obrazek/zdjęcie" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 napisał:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Szyfrowana treść" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Nieprawidłowy protokół źródłowy" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Niepoprawny link protokołu" + +#: src/BaseModule.php:150 +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 "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem." diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index fbead77cef..84aa91b492 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -6,20 +6,97 @@ function string_plural_select_pl($n){ return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "Dzienny limit opublikowanych %d posta. Post został odrzucony.", - 1 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.", - 2 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.", - 3 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "Tygodniowy limit wysyłania %d posta. Post został odrzucony.", - 1 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.", - 2 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.", - 3 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Miesięczny limit %d wysyłania postów. Post został odrzucony."; -$a->strings["Profile Photos"] = "Zdjęcie profilowe"; +$a->strings["default"] = "standardowe"; +$a->strings["greenzero"] = "zielone zero"; +$a->strings["purplezero"] = "fioletowe zero"; +$a->strings["easterbunny"] = "zajączek wielkanocny"; +$a->strings["darkzero"] = "ciemne zero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "luźny"; +$a->strings["Submit"] = "Potwierdź"; +$a->strings["Theme settings"] = "Ustawienia motywu"; +$a->strings["Variations"] = "Zmiana"; +$a->strings["Alignment"] = "Wyrównanie"; +$a->strings["Left"] = "Lewo"; +$a->strings["Center"] = "Środek"; +$a->strings["Color scheme"] = "Zestaw kolorów"; +$a->strings["Posts font size"] = "Rozmiar czcionki postów"; +$a->strings["Textareas font size"] = "Rozmiar czcionki Textareas"; +$a->strings["Comma separated list of helper forums"] = "Lista pomocników oddzielona przecinkami"; +$a->strings["don't show"] = "nie pokazuj"; +$a->strings["show"] = "pokaż"; +$a->strings["Set style"] = "Ustaw styl"; +$a->strings["Community Pages"] = "Strony społeczności"; +$a->strings["Community Profiles"] = "Profile społeczności"; +$a->strings["Help or @NewHere ?"] = "Pomóż lub @NowyTutaj?"; +$a->strings["Connect Services"] = "Połączone serwisy"; +$a->strings["Find Friends"] = "Znajdź znajomych"; +$a->strings["Last users"] = "Ostatni użytkownicy"; +$a->strings["Find People"] = "Znajdź ludzi"; +$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; +$a->strings["Connect/Follow"] = "Połącz/Obserwuj"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykład: Jan Kowalski, Wędkarstwo"; +$a->strings["Find"] = "Znajdź"; +$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; +$a->strings["Similar Interests"] = "Podobne zainteresowania"; +$a->strings["Random Profile"] = "Domyślny profil"; +$a->strings["Invite Friends"] = "Zaproś znajomych"; +$a->strings["Global Directory"] = "Katalog globalny"; +$a->strings["Local Directory"] = "Katalog lokalny"; +$a->strings["Forums"] = "Fora"; +$a->strings["External link to forum"] = "Zewnętrzny link do forum"; +$a->strings["show more"] = "pokaż więcej"; +$a->strings["Quick Start"] = "Szybki start"; +$a->strings["Help"] = "Pomoc"; +$a->strings["Custom"] = "Niestandardowe"; +$a->strings["Note"] = "Uwaga"; +$a->strings["Check image permissions if all users are allowed to see the image"] = "Sprawdź uprawnienia do zdjęć, jeśli wszyscy użytkownicy mogą zobaczyć obraz"; +$a->strings["Select color scheme"] = "Wybierz schemat kolorów"; +$a->strings["Copy or paste schemestring"] = "Skopiuj lub wklej schemat"; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat"; +$a->strings["Navigation bar background color"] = "Kolor tła paska nawigacyjnego"; +$a->strings["Navigation bar icon color "] = "Kolor ikon na pasku nawigacyjnym "; +$a->strings["Link color"] = "Kolor łączy"; +$a->strings["Set the background color"] = "Ustaw kolor tła"; +$a->strings["Content background opacity"] = "Nieprzezroczystość tła treści"; +$a->strings["Set the background image"] = "Ustaw obraz tła"; +$a->strings["Background image style"] = "Styl tła"; +$a->strings["Login page background image"] = "Obraz tła strony logowania"; +$a->strings["Login page background color"] = "Kolor tła strony logowania"; +$a->strings["Leave background image and color empty for theme defaults"] = "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji"; +$a->strings["Guest"] = "Gość"; +$a->strings["Visitor"] = "Odwiedzający"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; +$a->strings["Profile"] = "Profil użytkownika"; +$a->strings["Your profile page"] = "Twoja strona profilowa"; +$a->strings["Photos"] = "Zdjęcia"; +$a->strings["Your photos"] = "Twoje zdjęcia"; +$a->strings["Videos"] = "Filmy"; +$a->strings["Your videos"] = "Twoje filmy"; +$a->strings["Events"] = "Wydarzenia"; +$a->strings["Your events"] = "Twoje wydarzenia"; +$a->strings["Network"] = "Sieć"; +$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; +$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; +$a->strings["Messages"] = "Wiadomości"; +$a->strings["Private mail"] = "Prywatne maile"; +$a->strings["Settings"] = "Ustawienia"; +$a->strings["Account settings"] = "Ustawienia konta"; +$a->strings["Contacts"] = "Kontakty"; +$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; +$a->strings["Follow Thread"] = "Śledź wątek"; +$a->strings["Skip to main content"] = "Przejdź do głównej zawartości"; +$a->strings["Top Banner"] = "Górny Baner"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Zmień rozmiar obrazu na szerokość ekranu i pokaż kolor tła poniżej na długich stronach."; +$a->strings["Full screen"] = "Pełny ekran"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Zmień rozmiar obrazu, aby wypełnić cały ekran, przycinając prawy lub dolny."; +$a->strings["Single row mosaic"] = "Mozaika jednorzędowa"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Zmień rozmiar obrazu, aby powtórzyć go w jednym wierszu, w pionie lub w poziomie."; +$a->strings["Mosaic"] = "Mozaika"; +$a->strings["Repeat image to fill the screen."] = "Powtórz obraz, aby wypełnić ekran."; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku. "; +$a->strings["%s: Updating post-type."] = "%s: Aktualizowanie typu postu."; $a->strings["%1\$s poked %2\$s"] = "%1\$s zaczepił Cię %2\$s"; $a->strings["event"] = "wydarzenie"; $a->strings["status"] = "status"; @@ -35,7 +112,6 @@ $a->strings["View in context"] = "Zobacz w kontekście"; $a->strings["Please wait"] = "Proszę czekać"; $a->strings["remove"] = "usuń"; $a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy"; -$a->strings["Follow Thread"] = "Śledź wątek"; $a->strings["View Status"] = "Zobacz status"; $a->strings["View Profile"] = "Zobacz profil"; $a->strings["View Photos"] = "Zobacz zdjęcia"; @@ -45,7 +121,6 @@ $a->strings["Send PM"] = "Wyślij prywatną wiadomość"; $a->strings["Block"] = "Zablokuj"; $a->strings["Ignore"] = "Ignoruj"; $a->strings["Poke"] = "Zaczepka"; -$a->strings["Connect/Follow"] = "Połącz/Obserwuj"; $a->strings["%s likes this."] = "%s lubi to."; $a->strings["%s doesn't like this."] = "%s nie lubi tego."; $a->strings["%s attends."] = "%s uczestniczy."; @@ -111,9 +186,9 @@ $a->strings["%1\$s sent you %2\$s."] = "%1\$s wysłał(-a) ci %2\$s."; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości."; $a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = "%1\$s odpowiedział ci na %2\$s's %3\$s %4\$s"; $a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = "%1\$s oznaczył cię na %2\$s's %3\$s %4\$s"; -$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = ""; +$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = "%1\$s skomentował %2\$s's %3\$s %4\$s"; $a->strings["%1\$s replied to you on your %2\$s %3\$s"] = "%1\$s odpowiedział ci na twój %2\$s %3\$s"; -$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = ""; +$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = "%1\$s oznaczył cię tagiem na twoim %2\$s %3\$s"; $a->strings["%1\$s commented on your %2\$s %3\$s"] = ""; $a->strings["%1\$s replied to you on their %2\$s %3\$s"] = ""; $a->strings["%1\$s tagged you on their %2\$s %3\$s"] = ""; @@ -164,34 +239,38 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "O $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] żądanie rejestracji [/url] od %2\$s."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Imię i nazwisko:\t%s\nLokalizacja witryny:\t%s\nNazwa użytkownika:\t%s(%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek."; -$a->strings["Item not found."] = "Element nie znaleziony."; -$a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?"; -$a->strings["Yes"] = "Tak"; -$a->strings["Permission denied."] = "Brak uprawnień."; -$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; -$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; -$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"; -$a->strings["No"] = "Nie"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "Dzienny limit opublikowanych %d posta. Post został odrzucony.", + 1 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.", + 2 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.", + 3 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "Tygodniowy limit wysyłania %d posta. Post został odrzucony.", + 1 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.", + 2 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.", + 3 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Miesięczny limit %d wysyłania postów. Post został odrzucony."; +$a->strings["Profile Photos"] = "Zdjęcie profilowe"; $a->strings["Access denied."] = "Brak dostępu."; -$a->strings["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony."; -$a->strings["Events"] = "Wydarzenia"; -$a->strings["View"] = "Widok"; -$a->strings["Previous"] = "Poprzedni"; -$a->strings["Next"] = "Następny"; -$a->strings["today"] = "dzisiaj"; -$a->strings["month"] = "miesiąc"; -$a->strings["week"] = "tydzień"; -$a->strings["day"] = "dzień"; -$a->strings["list"] = "lista"; -$a->strings["User not found"] = "Użytkownik nie znaleziony"; -$a->strings["This calendar format is not supported"] = "Ten format kalendarza nie jest obsługiwany"; -$a->strings["No exportable data found"] = "Nie znaleziono danych do eksportu"; -$a->strings["calendar"] = "kalendarz"; -$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; -$a->strings["Common Friends"] = "Wspólni znajomi"; -$a->strings["Profile not found."] = "Nie znaleziono profilu."; +$a->strings["Bad Request."] = ""; $a->strings["Contact not found."] = "Nie znaleziono kontaktu."; +$a->strings["Permission denied."] = "Brak uprawnień."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."; +$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; +$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; +$a->strings["Message could not be sent."] = "Nie udało się wysłać wiadomości."; +$a->strings["Message collection failure."] = "Błąd zbierania komunikatów."; +$a->strings["No recipient."] = "Brak odbiorcy."; +$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:"; +$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."; +$a->strings["To:"] = "Do:"; +$a->strings["Subject:"] = "Temat:"; +$a->strings["Your message:"] = "Twoja wiadomość:"; +$a->strings["Insert web link"] = "Wstaw link"; +$a->strings["Profile not found."] = "Nie znaleziono profilu."; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony."; $a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana"; $a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej:"; @@ -208,271 +287,21 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Nie można ustawić danych kontaktowych w naszym systemie."; $a->strings["Unable to update your contact profile details on our system"] = "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie"; $a->strings["[Name Withheld]"] = "[Nazwa zastrzeżona]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; -$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; -$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", - 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", - 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", - 3 => "%d wymagany parametr nie został znaleziony w podanej lokacji", -]; -$a->strings["Introduction complete."] = "Wprowadzanie zakończone."; -$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; -$a->strings["Profile unavailable."] = "Profil niedostępny."; -$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; -$a->strings["Spam protection measures have been invoked."] = "Wprowadzono zabezpieczenia przed spamem."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; -$a->strings["Invalid locator"] = "Nieprawidłowy lokalizator"; -$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; -$a->strings["Apparently you are already friends with %s."] = "Wygląda na to, że już jesteście znajomymi z %s."; -$a->strings["Invalid profile URL."] = "Nieprawidłowy adres URL profilu."; -$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; -$a->strings["Blocked domain"] = "Zablokowana domena"; -$a->strings["Failed to update contact record."] = "Aktualizacja rekordu kontaktu nie powiodła się."; -$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."; -$a->strings["Please login to confirm introduction."] = "Zaloguj się, aby potwierdzić wprowadzenie."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; -$a->strings["Confirm"] = "Potwierdź"; -$a->strings["Hide this contact"] = "Ukryj kontakt"; -$a->strings["Welcome home %s."] = "Witaj na stronie domowej %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; $a->strings["Public access denied."] = "Publiczny dostęp zabroniony."; -$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system (na przykład nie działa z Diaspora), musisz subskrybować %s bezpośrednio w systemie"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = ""; -$a->strings["Your Webfinger address or profile URL:"] = "Twój adres lub adres URL profilu Webfinger:"; -$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na następujące pytania:"; -$a->strings["Submit Request"] = "Wyślij zgłoszenie"; -$a->strings["%s knows you"] = "%s zna cię"; -$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "Żądany element nie istnieje lub został usunięty."; -$a->strings["The feed for this item is unavailable."] = "Kanał dla tego elementu jest niedostępny."; -$a->strings["Item not found"] = "Nie znaleziono elementu"; -$a->strings["Edit post"] = "Edytuj post"; -$a->strings["Save"] = "Zapisz"; -$a->strings["Insert web link"] = "Wstaw link"; -$a->strings["web link"] = "odnośnik sieciowy"; -$a->strings["Insert video link"] = "Wstaw link do filmu"; -$a->strings["video link"] = "link do filmu"; -$a->strings["Insert audio link"] = "Wstaw link do audio"; -$a->strings["audio link"] = "link do audio"; -$a->strings["CC: email addresses"] = "CC: adresy e-mail"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; -$a->strings["Event can not end before it has started."] = "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."; -$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; -$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; -$a->strings["Event details"] = "Szczegóły wydarzenia"; -$a->strings["Starting date and Title are required."] = "Data rozpoczęcia i tytuł są wymagane."; -$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; -$a->strings["Required"] = "Wymagany"; -$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; -$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; -$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; -$a->strings["Description:"] = "Opis:"; -$a->strings["Location:"] = "Lokalizacja:"; -$a->strings["Title:"] = "Tytuł:"; -$a->strings["Share this event"] = "Udostępnij te wydarzenie"; -$a->strings["Submit"] = "Potwierdź"; -$a->strings["Basic"] = "Podstawowy"; -$a->strings["Advanced"] = "Zaawansowany"; -$a->strings["Permissions"] = "Uprawnienia"; -$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia"; -$a->strings["Event removed"] = "Wydarzenie zostało usunięte"; -$a->strings["Photos"] = "Zdjęcia"; -$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; -$a->strings["Upload"] = "Załaduj"; -$a->strings["Files"] = "Pliki"; -$a->strings["The contact could not be added."] = "Nie można dodać kontaktu."; -$a->strings["You already added this contact."] = "Już dodałeś ten kontakt."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Nie można wykryć typu sieci. Kontakt nie może zostać dodany."; -$a->strings["Your Identity Address:"] = "Twój adres tożsamości:"; -$a->strings["Profile URL"] = "Adres URL profilu"; -$a->strings["Tags:"] = "Tagi:"; -$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; -$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; -$a->strings["Empty post discarded."] = "Pusty wpis został odrzucony."; -$a->strings["Post updated."] = "Post zaktualizowany."; -$a->strings["Item wasn't stored."] = "Element nie został zapisany. "; -$a->strings["Item couldn't be fetched."] = "Nie można pobrać elementu."; -$a->strings["Post published."] = "Post opublikowany."; -$a->strings["Remote privacy information not available."] = "Nie są dostępne zdalne informacje o prywatności."; -$a->strings["Visible to:"] = "Widoczne dla:"; -$a->strings["Followers"] = "Zwolenników"; -$a->strings["Mutuals"] = "Wzajemne"; -$a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; -$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tSzanowny Użytkowniku %1\$s, \n\t\t\tOtrzymano prośbę o ''%2\$s\" zresetowanie hasła do konta. \n\t\tAby potwierdzić tę prośbę, kliknij link weryfikacyjny \n\t\tponiżej lub wklej go w pasek adresu przeglądarki internetowej. \n \n\t\tJeśli nie prosisz o tę zmianę, nie klikaj w link.\n\t\tJeśli zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli potwierdzić \n\t\tTwoje żądanie."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nPostępuj zgodnie z poniższym linkiem, aby zweryfikować swoją tożsamość: \n\n\t\t%1\$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2\$s\nNazwa użytkownika:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."; -$a->strings["Request has expired, please make a new one."] = "Żądanie wygasło. Zrób nowe."; -$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; -$a->strings["Nickname or Email: "] = "Pseudonim lub e-mail: "; -$a->strings["Reset"] = "Zresetuj"; -$a->strings["Password Reset"] = "Zresetuj hasło"; -$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; -$a->strings["Your new password is"] = "Twoje nowe hasło to"; -$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; -$a->strings["click here to login"] = "naciśnij tutaj, aby zalogować się"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tSzanowny Użytkowniku %1\$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:\t%2\$s\n\t\t\tHasło:\t%3\$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s"; +$a->strings["No videos selected"] = "Nie zaznaczono filmów"; +$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; +$a->strings["View Video"] = "Zobacz film"; +$a->strings["View Album"] = "Zobacz album"; +$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; +$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; $a->strings["No keywords to match. Please add keywords to your profile."] = "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu."; -$a->strings["Connect"] = "Połącz"; $a->strings["first"] = "pierwszy"; $a->strings["next"] = "następny"; $a->strings["No matches"] = "Brak wyników"; $a->strings["Profile Match"] = "Dopasowanie profilu"; -$a->strings["New Message"] = "Nowa wiadomość"; -$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; -$a->strings["Unable to locate contact information."] = "Nie można znaleźć informacji kontaktowych."; -$a->strings["Message could not be sent."] = "Nie udało się wysłać wiadomości."; -$a->strings["Message collection failure."] = "Błąd zbierania komunikatów."; -$a->strings["Message sent."] = "Wysłano."; -$a->strings["Discard"] = "Odrzuć"; -$a->strings["Messages"] = "Wiadomości"; -$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?"; -$a->strings["Conversation not found."] = "Nie znaleziono rozmowy."; -$a->strings["Message deleted."] = "Wiadomość usunięta."; -$a->strings["Conversation removed."] = "Rozmowa usunięta."; -$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:"; -$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; -$a->strings["To:"] = "Do:"; -$a->strings["Subject:"] = "Temat:"; -$a->strings["Your message:"] = "Twoja wiadomość:"; -$a->strings["No messages."] = "Brak wiadomości."; -$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; -$a->strings["Delete message"] = "Usuń wiadomość"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:m A"; -$a->strings["Delete conversation"] = "Usuń rozmowę"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy."; -$a->strings["Send Reply"] = "Odpowiedz"; -$a->strings["Unknown sender - %s"] = "Nieznany nadawca - %s"; -$a->strings["You and %s"] = "Ty i %s"; -$a->strings["%s and You"] = "%s i ty"; -$a->strings["%d message"] = [ - 0 => "%d wiadomość", - 1 => "%d wiadomości", - 2 => "%d wiadomości", - 3 => "%d wiadomości", -]; -$a->strings["No such group"] = "Nie ma takiej grupy"; -$a->strings["Group is empty"] = "Grupa jest pusta"; -$a->strings["Group: %s"] = "Grupa: %s"; -$a->strings["Invalid contact."] = "Nieprawidłowy kontakt."; -$a->strings["Latest Activity"] = "Ostatnia Aktywność"; -$a->strings["Sort by latest activity"] = "Sortuj według ostatniej aktywności"; -$a->strings["Latest Posts"] = "Najnowsze wiadomości"; -$a->strings["Sort by post received date"] = "Sortowanie według daty otrzymania postu"; -$a->strings["Personal"] = "Osobiste"; -$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie"; -$a->strings["New"] = "Nowy"; -$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty"; -$a->strings["Shared Links"] = "Udostępnione łącza"; -$a->strings["Interesting Links"] = "Interesujące linki"; -$a->strings["Starred"] = "Ulubione"; -$a->strings["Favourite Posts"] = "Ulubione posty"; -$a->strings["Personal Notes"] = "Notatki"; -$a->strings["Post successful."] = "Pomyślnie opublikowano."; -$a->strings["Subscribing to OStatus contacts"] = "Subskrybowanie kontaktów OStatus"; -$a->strings["No contact provided."] = "Brak kontaktu."; -$a->strings["Couldn't fetch information for contact."] = "Nie można pobrać informacji o kontakcie."; -$a->strings["Couldn't fetch friends for contact."] = "Nie można pobrać znajomych do kontaktu."; -$a->strings["Done"] = "Gotowe"; -$a->strings["success"] = "powodzenie"; -$a->strings["failed"] = "nie powiodło się"; -$a->strings["ignored"] = "ignorowany(-a)"; -$a->strings["Keep this window open until done."] = "Pozostaw to okno otwarte, dopóki nie będzie gotowe."; -$a->strings["Photo Albums"] = "Albumy zdjęć"; -$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; -$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; -$a->strings["everybody"] = "wszyscy"; -$a->strings["Contact information unavailable"] = "Informacje o kontakcie są niedostępne"; -$a->strings["Album not found."] = "Nie znaleziono albumu."; -$a->strings["Album successfully deleted"] = "Album został pomyślnie usunięty"; -$a->strings["Album was empty."] = "Album był pusty."; -$a->strings["a photo"] = "zdjęcie"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$szostał oznaczony tagiem %2\$s przez %3\$s"; -$a->strings["Image exceeds size limit of %s"] = "Obraz przekracza limit rozmiaru wynoszący %s"; -$a->strings["Image upload didn't complete, please try again"] = "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"; -$a->strings["Image file is missing"] = "Brak pliku obrazu"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"; -$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; -$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; -$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się."; -$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; -$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; -$a->strings["Upload Photos"] = "Prześlij zdjęcia"; -$a->strings["New album name: "] = "Nazwa nowego albumu: "; -$a->strings["or select existing album:"] = "lub wybierz istniejący album:"; -$a->strings["Do not show a status post for this upload"] = "Nie pokazuj statusu postów dla tego wysłania"; -$a->strings["Show to Groups"] = "Pokaż Grupy"; -$a->strings["Show to Contacts"] = "Pokaż kontakty"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; -$a->strings["Delete Album"] = "Usuń album"; -$a->strings["Edit Album"] = "Edytuj album"; -$a->strings["Drop Album"] = "Upuść Album"; -$a->strings["Show Newest First"] = "Pokaż najpierw najnowsze"; -$a->strings["Show Oldest First"] = "Pokaż najpierw najstarsze"; -$a->strings["View Photo"] = "Zobacz zdjęcie"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; -$a->strings["Photo not available"] = "Zdjęcie niedostępne"; -$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; -$a->strings["Delete Photo"] = "Usuń zdjęcie"; -$a->strings["View photo"] = "Zobacz zdjęcie"; -$a->strings["Edit photo"] = "Edytuj zdjęcie"; -$a->strings["Delete photo"] = "Usuń zdjęcie"; -$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; -$a->strings["Private Photo"] = "Prywatne zdjęcie"; -$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; -$a->strings["Tags: "] = "Tagi: "; -$a->strings["[Select tags to remove]"] = "[Wybierz tagi do usunięcia]"; -$a->strings["New album name"] = "Nazwa nowego albumu"; -$a->strings["Caption"] = "Zawartość"; -$a->strings["Add a Tag"] = "Dodaj tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nie obracaj"; -$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; -$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; -$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; -$a->strings["I don't like this (toggle)"] = "Nie lubię tego (zmień)"; -$a->strings["This is you"] = "To jesteś ty"; -$a->strings["Comment"] = "Komentarz"; -$a->strings["Map"] = "Mapa"; -$a->strings["View Album"] = "Zobacz album"; -$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; -$a->strings["{0} requested registration"] = "{0} wymagana rejestracja"; -$a->strings["Poke/Prod"] = "Zaczepić"; -$a->strings["poke, prod or do other things to somebody"] = "szturchać, zaczepić lub robić inne rzeczy"; -$a->strings["Recipient"] = "Odbiorca"; -$a->strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić"; -$a->strings["Make this post private"] = "Ustaw ten post jako prywatny"; -$a->strings["User deleted their account"] = "Użytkownik usunął swoje konto"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych."; -$a->strings["The user id is %d"] = "Identyfikatorem użytkownika jest %d"; -$a->strings["Remove My Account"] = "Usuń moje konto"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."; -$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji:"; -$a->strings["Resubscribing to OStatus contacts"] = "Ponowne subskrybowanie kontaktów OStatus"; -$a->strings["Error"] = [ - 0 => "Błąd", - 1 => "Błędów", - 2 => "Błędy", - 3 => "Błędów", -]; $a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; $a->strings["Update"] = "Zaktualizuj"; $a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; -$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; -$a->strings["Features updated"] = "Funkcje zaktualizowane"; $a->strings["Contact CSV file upload error"] = "Kontakt z plikiem CSV błąd przekazywania plików"; $a->strings["Importing Contacts done"] = "Importowanie kontaktów zakończone"; $a->strings["Relocate message has been send to your contacts"] = "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów"; @@ -487,7 +316,7 @@ $a->strings["Invalid email."] = "Niepoprawny e-mail."; $a->strings["Cannot change to that email."] = "Nie można zmienić tego e-maila."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności."; -$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; +$a->strings["Settings were not updated."] = ""; $a->strings["Add application"] = "Dodaj aplikację"; $a->strings["Save Settings"] = "Zapisz ustawienia"; $a->strings["Name"] = "Nazwa"; @@ -567,7 +396,7 @@ $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID."; $a->strings["Publish your profile in your local site directory?"] = "Czy opublikować twój profil w katalogu lokalnej witryny?"; $a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."; -$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = ""; +$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = "Twój profil zostanie również opublikowany w globalnych katalogach Friendica (np. %s)."; $a->strings["Your Identity Address is '%s' or '%s'."] = "Twój adres tożsamości to '%s' lub '%s'."; $a->strings["Account Settings"] = "Ustawienia konta"; $a->strings["Password Settings"] = "Ustawienia hasła"; @@ -640,20 +469,169 @@ $a->strings["Per default, notifications are condensed to a single notification p $a->strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/rodzaju strony"; $a->strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w sytuacjach specjalnych"; $a->strings["Import Contacts"] = "Import kontaktów"; -$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = ""; +$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta."; $a->strings["Upload File"] = "Prześlij plik"; $a->strings["Relocate"] = "Przeniesienie"; $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."] = "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk."; $a->strings["Resend relocate message to contacts"] = "Wyślij ponownie przenieść wiadomości do kontaktów"; -$a->strings["Contact suggestion successfully ignored."] = "Sugestia kontaktu została zignorowana."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny."; -$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?"; -$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj"; -$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; -$a->strings["Tag(s) removed"] = "Usunięty Tag(i) "; +$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; +$a->strings["{0} requested registration"] = "{0} wymagana rejestracja"; +$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; +$a->strings["Common Friends"] = "Wspólni znajomi"; +$a->strings["No items found"] = ""; +$a->strings["No such group"] = "Nie ma takiej grupy"; +$a->strings["Group is empty"] = "Grupa jest pusta"; +$a->strings["Group: %s"] = "Grupa: %s"; +$a->strings["Invalid contact."] = "Nieprawidłowy kontakt."; +$a->strings["Latest Activity"] = "Ostatnia Aktywność"; +$a->strings["Sort by latest activity"] = "Sortuj według ostatniej aktywności"; +$a->strings["Latest Posts"] = "Najnowsze wiadomości"; +$a->strings["Sort by post received date"] = "Sortowanie według daty otrzymania postu"; +$a->strings["Personal"] = "Osobiste"; +$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie"; +$a->strings["Starred"] = "Ulubione"; +$a->strings["Favourite Posts"] = "Ulubione posty"; +$a->strings["Resubscribing to OStatus contacts"] = "Ponowne subskrybowanie kontaktów OStatus"; +$a->strings["Error"] = [ + 0 => "Błąd", + 1 => "Błędów", + 2 => "Błędy", + 3 => "Błędów", +]; +$a->strings["Done"] = "Gotowe"; +$a->strings["Keep this window open until done."] = "Pozostaw to okno otwarte, dopóki nie będzie gotowe."; +$a->strings["You aren't following this contact."] = "Nie obserwujesz tego kontaktu."; +$a->strings["Unfollowing is currently not supported by your network."] = "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."; +$a->strings["Disconnect/Unfollow"] = "Rozłącz/Nie obserwuj"; +$a->strings["Your Identity Address:"] = "Twój adres tożsamości:"; +$a->strings["Submit Request"] = "Wyślij zgłoszenie"; +$a->strings["Profile URL"] = "Adres URL profilu"; +$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; +$a->strings["New Message"] = "Nowa wiadomość"; +$a->strings["Unable to locate contact information."] = "Nie można znaleźć informacji kontaktowych."; +$a->strings["Discard"] = "Odrzuć"; +$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?"; +$a->strings["Yes"] = "Tak"; +$a->strings["Conversation not found."] = "Nie znaleziono rozmowy."; +$a->strings["Message was not deleted."] = ""; +$a->strings["Conversation was not removed."] = ""; +$a->strings["No messages."] = "Brak wiadomości."; +$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; +$a->strings["Delete message"] = "Usuń wiadomość"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:m A"; +$a->strings["Delete conversation"] = "Usuń rozmowę"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy."; +$a->strings["Send Reply"] = "Odpowiedz"; +$a->strings["Unknown sender - %s"] = "Nieznany nadawca - %s"; +$a->strings["You and %s"] = "Ty i %s"; +$a->strings["%s and You"] = "%s i ty"; +$a->strings["%d message"] = [ + 0 => "%d wiadomość", + 1 => "%d wiadomości", + 2 => "%d wiadomości", + 3 => "%d wiadomości", +]; +$a->strings["Subscribing to OStatus contacts"] = "Subskrybowanie kontaktów OStatus"; +$a->strings["No contact provided."] = "Brak kontaktu."; +$a->strings["Couldn't fetch information for contact."] = "Nie można pobrać informacji o kontakcie."; +$a->strings["Couldn't fetch friends for contact."] = "Nie można pobrać znajomych do kontaktu."; +$a->strings["success"] = "powodzenie"; +$a->strings["failed"] = "nie powiodło się"; +$a->strings["ignored"] = "ignorowany(-a)"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; +$a->strings["User deleted their account"] = "Użytkownik usunął swoje konto"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych."; +$a->strings["The user id is %d"] = "Identyfikatorem użytkownika jest %d"; +$a->strings["Remove My Account"] = "Usuń moje konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."; +$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji:"; $a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; $a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia: "; $a->strings["Remove"] = "Usuń"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny."; +$a->strings["The requested item doesn't exist or has been deleted."] = "Żądany element nie istnieje lub został usunięty."; +$a->strings["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony."; +$a->strings["The feed for this item is unavailable."] = "Kanał dla tego elementu jest niedostępny."; +$a->strings["Invalid request."] = "Nieprawidłowe żądanie."; +$a->strings["Image exceeds size limit of %s"] = "Obraz przekracza limit rozmiaru wynoszący %s"; +$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; +$a->strings["Wall Photos"] = "Tablica zdjęć"; +$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się."; +$a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; +$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tSzanowny Użytkowniku %1\$s, \n\t\t\tOtrzymano prośbę o ''%2\$s\" zresetowanie hasła do konta. \n\t\tAby potwierdzić tę prośbę, kliknij link weryfikacyjny \n\t\tponiżej lub wklej go w pasek adresu przeglądarki internetowej. \n \n\t\tJeśli nie prosisz o tę zmianę, nie klikaj w link.\n\t\tJeśli zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli potwierdzić \n\t\tTwoje żądanie."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nPostępuj zgodnie z poniższym linkiem, aby zweryfikować swoją tożsamość: \n\n\t\t%1\$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2\$s\nNazwa użytkownika:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."; +$a->strings["Request has expired, please make a new one."] = "Żądanie wygasło. Zrób nowe."; +$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; +$a->strings["Nickname or Email: "] = "Pseudonim lub e-mail: "; +$a->strings["Reset"] = "Zresetuj"; +$a->strings["Password Reset"] = "Zresetuj hasło"; +$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; +$a->strings["Your new password is"] = "Twoje nowe hasło to"; +$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; +$a->strings["click here to login"] = "naciśnij tutaj, aby zalogować się"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu."; +$a->strings["Your password has been reset."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tSzanowny Użytkowniku %1\$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:\t%2\$s\n\t\t\tHasło:\t%3\$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s"; +$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; +$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", + 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", + 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", + 3 => "%d wymagany parametr nie został znaleziony w podanej lokacji", +]; +$a->strings["Introduction complete."] = "Wprowadzanie zakończone."; +$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; +$a->strings["Profile unavailable."] = "Profil niedostępny."; +$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; +$a->strings["Spam protection measures have been invoked."] = "Wprowadzono zabezpieczenia przed spamem."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; +$a->strings["Invalid locator"] = "Nieprawidłowy lokalizator"; +$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; +$a->strings["Apparently you are already friends with %s."] = "Wygląda na to, że już jesteście znajomymi z %s."; +$a->strings["Invalid profile URL."] = "Nieprawidłowy adres URL profilu."; +$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; +$a->strings["Blocked domain"] = "Zablokowana domena"; +$a->strings["Failed to update contact record."] = "Aktualizacja rekordu kontaktu nie powiodła się."; +$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."; +$a->strings["Please login to confirm introduction."] = "Zaloguj się, aby potwierdzić wprowadzenie."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; +$a->strings["Confirm"] = "Potwierdź"; +$a->strings["Hide this contact"] = "Ukryj kontakt"; +$a->strings["Welcome home %s."] = "Witaj na stronie domowej %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; +$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system (na przykład nie działa z Diaspora), musisz subskrybować %s bezpośrednio w systemie"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = ""; +$a->strings["Your Webfinger address or profile URL:"] = "Twój adres lub adres URL profilu Webfinger:"; +$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na następujące pytania:"; +$a->strings["%s knows you"] = "%s zna cię"; +$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; +$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; +$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; +$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"; +$a->strings["No"] = "Nie"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Lub - czy próbowałeś załadować pusty plik?"; +$a->strings["File exceeds size limit of %s"] = "Plik przekracza limit rozmiaru wynoszący %s"; +$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; +$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; +$a->strings["Empty post discarded."] = "Pusty wpis został odrzucony."; +$a->strings["Post updated."] = "Post zaktualizowany."; +$a->strings["Item wasn't stored."] = "Element nie został zapisany. "; +$a->strings["Item couldn't be fetched."] = "Nie można pobrać elementu."; +$a->strings["Item not found."] = "Element nie znaleziony."; +$a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?"; $a->strings["User imports on closed servers can only be done by an administrator."] = "Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."; $a->strings["Import"] = "Import"; @@ -663,244 +641,139 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory"; $a->strings["Account file"] = "Pliki konta"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""; -$a->strings["You aren't following this contact."] = "Nie obserwujesz tego kontaktu."; -$a->strings["Unfollowing is currently not supported by your network."] = "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."; -$a->strings["Contact unfollowed"] = "Skontaktuj się z obserwowanym"; -$a->strings["Disconnect/Unfollow"] = "Rozłącz/Nie obserwuj"; -$a->strings["No videos selected"] = "Nie zaznaczono filmów"; -$a->strings["View Video"] = "Zobacz film"; -$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; -$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."; -$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; -$a->strings["No recipient."] = "Brak odbiorcy."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."; -$a->strings["Invalid request."] = "Nieprawidłowe żądanie."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Lub - czy próbowałeś załadować pusty plik?"; -$a->strings["File exceeds size limit of %s"] = "Plik przekracza limit rozmiaru wynoszący %s"; -$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; -$a->strings["Wall Photos"] = "Tablica zdjęć"; +$a->strings["User not found."] = "Użytkownik nie znaleziony."; +$a->strings["View"] = "Widok"; +$a->strings["Previous"] = "Poprzedni"; +$a->strings["Next"] = "Następny"; +$a->strings["today"] = "dzisiaj"; +$a->strings["month"] = "miesiąc"; +$a->strings["week"] = "tydzień"; +$a->strings["day"] = "dzień"; +$a->strings["list"] = "lista"; +$a->strings["User not found"] = "Użytkownik nie znaleziony"; +$a->strings["This calendar format is not supported"] = "Ten format kalendarza nie jest obsługiwany"; +$a->strings["No exportable data found"] = "Nie znaleziono danych do eksportu"; +$a->strings["calendar"] = "kalendarz"; +$a->strings["Item not found"] = "Nie znaleziono elementu"; +$a->strings["Edit post"] = "Edytuj post"; +$a->strings["Save"] = "Zapisz"; +$a->strings["web link"] = "odnośnik sieciowy"; +$a->strings["Insert video link"] = "Wstaw link do filmu"; +$a->strings["video link"] = "link do filmu"; +$a->strings["Insert audio link"] = "Wstaw link do audio"; +$a->strings["audio link"] = "link do audio"; +$a->strings["CC: email addresses"] = "CC: adresy e-mail"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."; +$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; +$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; +$a->strings["Event details"] = "Szczegóły wydarzenia"; +$a->strings["Starting date and Title are required."] = "Data rozpoczęcia i tytuł są wymagane."; +$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; +$a->strings["Required"] = "Wymagany"; +$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; +$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; +$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; +$a->strings["Description:"] = "Opis:"; +$a->strings["Location:"] = "Lokalizacja:"; +$a->strings["Title:"] = "Tytuł:"; +$a->strings["Share this event"] = "Udostępnij te wydarzenie"; +$a->strings["Basic"] = "Podstawowy"; +$a->strings["Advanced"] = "Zaawansowany"; +$a->strings["Permissions"] = "Uprawnienia"; +$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia"; +$a->strings["The contact could not be added."] = "Nie można dodać kontaktu."; +$a->strings["You already added this contact."] = "Już dodałeś ten kontakt."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Nie można wykryć typu sieci. Kontakt nie może zostać dodany."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."; +$a->strings["Tags:"] = "Tagi:"; +$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; +$a->strings["Upload"] = "Załaduj"; +$a->strings["Files"] = "Pliki"; +$a->strings["Personal Notes"] = "Notatki"; +$a->strings["Photo Albums"] = "Albumy zdjęć"; +$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; +$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; +$a->strings["everybody"] = "wszyscy"; +$a->strings["Contact information unavailable"] = "Informacje o kontakcie są niedostępne"; +$a->strings["Album not found."] = "Nie znaleziono albumu."; +$a->strings["Album successfully deleted"] = "Album został pomyślnie usunięty"; +$a->strings["Album was empty."] = "Album był pusty."; +$a->strings["Failed to delete the photo."] = ""; +$a->strings["a photo"] = "zdjęcie"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$szostał oznaczony tagiem %2\$s przez %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"; +$a->strings["Image file is missing"] = "Brak pliku obrazu"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"; +$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; +$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; +$a->strings["Upload Photos"] = "Prześlij zdjęcia"; +$a->strings["New album name: "] = "Nazwa nowego albumu: "; +$a->strings["or select existing album:"] = "lub wybierz istniejący album:"; +$a->strings["Do not show a status post for this upload"] = "Nie pokazuj statusu postów dla tego wysłania"; +$a->strings["Show to Groups"] = "Pokaż Grupy"; +$a->strings["Show to Contacts"] = "Pokaż kontakty"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; +$a->strings["Delete Album"] = "Usuń album"; +$a->strings["Edit Album"] = "Edytuj album"; +$a->strings["Drop Album"] = "Upuść Album"; +$a->strings["Show Newest First"] = "Pokaż najpierw najnowsze"; +$a->strings["Show Oldest First"] = "Pokaż najpierw najstarsze"; +$a->strings["View Photo"] = "Zobacz zdjęcie"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; +$a->strings["Photo not available"] = "Zdjęcie niedostępne"; +$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; +$a->strings["Delete Photo"] = "Usuń zdjęcie"; +$a->strings["View photo"] = "Zobacz zdjęcie"; +$a->strings["Edit photo"] = "Edytuj zdjęcie"; +$a->strings["Delete photo"] = "Usuń zdjęcie"; +$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; +$a->strings["Private Photo"] = "Prywatne zdjęcie"; +$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; +$a->strings["Tags: "] = "Tagi: "; +$a->strings["[Select tags to remove]"] = "[Wybierz tagi do usunięcia]"; +$a->strings["New album name"] = "Nazwa nowego albumu"; +$a->strings["Caption"] = "Zawartość"; +$a->strings["Add a Tag"] = "Dodaj tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nie obracaj"; +$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; +$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; +$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; +$a->strings["I don't like this (toggle)"] = "Nie lubię tego (zmień)"; +$a->strings["This is you"] = "To jesteś ty"; +$a->strings["Comment"] = "Komentarz"; +$a->strings["Map"] = "Mapa"; +$a->strings["You must be logged in to use addons. "] = "Musisz być zalogowany(-a), aby korzystać z dodatków. "; +$a->strings["Delete this item?"] = "Usunąć ten element?"; +$a->strings["toggle mobile"] = "przełącz na mobilny"; $a->strings["Login failed."] = "Logowanie nieudane."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora."; $a->strings["The error message was:"] = "Komunikat o błędzie:"; $a->strings["Login failed. Please check your credentials."] = "Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające."; $a->strings["Welcome %s"] = "Witaj %s"; $a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe."; -$a->strings["Welcome back %s"] = "Witaj ponownie %s"; -$a->strings["You must be logged in to use addons. "] = "Musisz być zalogowany(-a), aby korzystać z dodatków. "; -$a->strings["Delete this item?"] = "Usunąć ten element?"; -$a->strings["toggle mobile"] = "przełącz na mobilny"; -$a->strings["Method not allowed for this module. Allowed method(s): %s"] = ""; +$a->strings["Method not allowed for this module. Allowed method(s): %s"] = "Metoda niedozwolona dla tego modułu. Dozwolona metoda(y): %s"; $a->strings["Page not found."] = "Strona nie znaleziona."; -$a->strings["No system theme config value set."] = "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego."; -$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."] = "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem."; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Nie można znaleźć żadnego wpisu kontaktu zarchiwizowanego dla tego adresu URL (%s)"; -$a->strings["The contact entries have been archived"] = "Wpisy kontaktów zostały zarchiwizowane"; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"; -$a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle"; -$a->strings["Post update version number has been set to %s."] = "Numer wersji aktualizacji posta został ustawiony na %s."; -$a->strings["Check for pending update actions."] = "Sprawdź oczekujące działania aktualizacji."; -$a->strings["Done."] = "Gotowe."; -$a->strings["Execute pending post updates."] = "Wykonaj oczekujące aktualizacje postów."; -$a->strings["All pending post updates are done."] = "Wszystkie oczekujące aktualizacje postów są gotowe."; -$a->strings["Enter new password: "] = "Wprowadź nowe hasło: "; -$a->strings["Enter user name: "] = "Wpisz nazwę użytkownika:"; -$a->strings["Enter user nickname: "] = ""; -$a->strings["Enter user email address: "] = "Wpisz adres e-mail użytkownika:"; -$a->strings["Enter a language (optional): "] = "Wpisz język (opcjonalnie):"; -$a->strings["User is not pending."] = ""; -$a->strings["Type \"yes\" to delete %s"] = "Wpisz „tak”, aby usunąć %s"; -$a->strings["newer"] = "nowsze"; -$a->strings["older"] = "starsze"; -$a->strings["Frequently"] = "Często"; -$a->strings["Hourly"] = "Co godzinę"; -$a->strings["Twice daily"] = "Dwa razy dziennie"; -$a->strings["Daily"] = "Codziennie"; -$a->strings["Weekly"] = "Co tydzień"; -$a->strings["Monthly"] = "Miesięczne"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$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["Discourse"] = ""; -$a->strings["Diaspora Connector"] = "Łącze Diaspora"; -$a->strings["GNU Social Connector"] = "Łącze GNU Social"; -$a->strings["ActivityPub"] = "Pub aktywności"; -$a->strings["pnut"] = "orzech"; -$a->strings["%s (via %s)"] = "%s (przez %s)"; -$a->strings["General Features"] = "Funkcje ogólne"; -$a->strings["Photo Location"] = "Lokalizacja zdjęcia"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą."; -$a->strings["Export Public Calendar"] = "Eksportowanie publicznego kalendarza"; -$a->strings["Ability for visitors to download the public calendar"] = "Umożliwia pobieranie kalendarza publicznego przez odwiedzających"; -$a->strings["Trending Tags"] = "Popularne tagi"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Pokaż widżet strony społeczności z listą najpopularniejszych tagów w ostatnich postach publicznych."; -$a->strings["Post Composition Features"] = "Ustawienia funkcji postów"; -$a->strings["Auto-mention Forums"] = "Automatyczne wymienianie forów"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL."; -$a->strings["Explicit Mentions"] = ""; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Dodaj wyraźne wzmianki do pola komentarza, aby ręcznie kontrolować, kto zostanie wymieniony w odpowiedziach."; -$a->strings["Network Sidebar"] = "Sieć Pasek Boczny"; -$a->strings["Archives"] = "Archiwum"; -$a->strings["Ability to select posts by date ranges"] = "Wybierz wpisy według zakresów dat"; -$a->strings["Protocol Filter"] = "Filtr protokołu"; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranych protokołów"; -$a->strings["Network Tabs"] = "Etykiety sieciowe"; -$a->strings["Network New Tab"] = "Etykieta Nowe Posty Sieciowe"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Włącza etykietę wyświetlającą tylko nowe posty sieciowe (z ostatnich 12 godzin)"; -$a->strings["Network Shared Links Tab"] = "Etykieta Udostępnianie Łącz Sieciowych"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Włącza etykietę wyświetlającą tylko posty sieciowe z łączami do nich"; -$a->strings["Post/Comment Tools"] = "Narzędzia post/komentarz"; -$a->strings["Post Categories"] = "Kategorie postów"; -$a->strings["Add categories to your posts"] = "Umożliwia dodawanie kategorii do twoich postów"; -$a->strings["Advanced Profile Settings"] = "Zaawansowane ustawienia profilu"; -$a->strings["List Forums"] = "Lista forów"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Wyświetla publiczne fora społeczności na stronie profilu zaawansowanego"; -$a->strings["Tag Cloud"] = "Chmura tagów"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Podaj osobistą chmurę tagów na stronie profilu"; -$a->strings["Display Membership Date"] = "Wyświetl datę członkostwa"; -$a->strings["Display membership date in profile"] = "Wyświetla datę członkostwa w profilu"; -$a->strings["Forums"] = "Fora"; -$a->strings["External link to forum"] = "Zewnętrzny link do forum"; -$a->strings["show more"] = "pokaż więcej"; -$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; -$a->strings["Go back"] = "Wróć"; -$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; -$a->strings["@name, !forum, #tags, content"] = "@imię, !forum, #tagi, treść"; -$a->strings["Logout"] = "Wyloguj"; -$a->strings["End this session"] = "Zakończ sesję"; -$a->strings["Login"] = "Zaloguj się"; -$a->strings["Sign in"] = "Zaloguj się"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; -$a->strings["Profile"] = "Profil użytkownika"; -$a->strings["Your profile page"] = "Twoja strona profilowa"; -$a->strings["Your photos"] = "Twoje zdjęcia"; -$a->strings["Videos"] = "Filmy"; -$a->strings["Your videos"] = "Twoje filmy"; -$a->strings["Your events"] = "Twoje wydarzenia"; -$a->strings["Personal notes"] = "Notatki"; -$a->strings["Your personal notes"] = "Twoje prywatne notatki"; -$a->strings["Home"] = "Strona domowa"; -$a->strings["Home Page"] = "Strona startowa"; -$a->strings["Register"] = "Zarejestruj"; -$a->strings["Create an account"] = "Załóż konto"; -$a->strings["Help"] = "Pomoc"; -$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; -$a->strings["Apps"] = "Aplikacje"; -$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; -$a->strings["Search"] = "Szukaj"; -$a->strings["Search site content"] = "Przeszukaj zawartość strony"; -$a->strings["Full Text"] = "Pełny tekst"; -$a->strings["Tags"] = "Tagi"; -$a->strings["Contacts"] = "Kontakty"; -$a->strings["Community"] = "Społeczność"; -$a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innych serwerach"; -$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; -$a->strings["Directory"] = "Katalog"; -$a->strings["People directory"] = "Katalog osób"; -$a->strings["Information"] = "Informacje"; -$a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica"; -$a->strings["Terms of Service"] = "Warunki usługi"; -$a->strings["Terms of Service of this Friendica instance"] = "Warunki świadczenia usług tej instancji Friendica"; -$a->strings["Network"] = "Sieć"; -$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; -$a->strings["Introductions"] = "Zapoznanie"; -$a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych"; -$a->strings["Notifications"] = "Powiadomienia"; -$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; -$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; -$a->strings["Private mail"] = "Prywatne maile"; -$a->strings["Inbox"] = "Odebrane"; -$a->strings["Outbox"] = "Wysłane"; -$a->strings["Accounts"] = "Konto"; -$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; -$a->strings["Settings"] = "Ustawienia"; -$a->strings["Account settings"] = "Ustawienia konta"; -$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; -$a->strings["Admin"] = "Administator"; -$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; -$a->strings["Navigation"] = "Nawigacja"; -$a->strings["Site map"] = "Mapa strony"; -$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; -$a->strings["Embedded content"] = "Osadzona zawartość"; -$a->strings["prev"] = "poprzedni"; -$a->strings["last"] = "ostatni"; -$a->strings["Image/photo"] = "Obrazek/zdjęcie"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; -$a->strings["$1 wrote:"] = "$1 napisał:"; -$a->strings["Encrypted content"] = "Szyfrowana treść"; -$a->strings["Invalid source protocol"] = "Nieprawidłowy protokół źródłowy"; -$a->strings["Invalid link protocol"] = "Niepoprawny link protokołu"; -$a->strings["Loading more entries..."] = "Ładuję więcej wpisów..."; -$a->strings["The end"] = "Koniec"; -$a->strings["Follow"] = "Śledź"; -$a->strings["Export"] = "Eksport"; -$a->strings["Export calendar as ical"] = "Wyeksportuj kalendarz jako ical"; -$a->strings["Export calendar as csv"] = "Eksportuj kalendarz jako csv"; -$a->strings["No contacts"] = "Brak kontaktów"; -$a->strings["%d Contact"] = [ - 0 => "%d kontakt", - 1 => "%d kontaktów", - 2 => "%d kontakty", - 3 => "%d Kontakty", -]; -$a->strings["View Contacts"] = "Widok kontaktów"; -$a->strings["Remove term"] = "Usuń wpis"; -$a->strings["Saved Searches"] = "Zapisywanie wyszukiwania"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["More Trending Tags"] = "Więcej popularnych tagów"; -$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; -$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; -$a->strings["%d invitation available"] = [ - 0 => "%d zaproszenie dostępne", - 1 => "%d zaproszeń dostępnych", - 2 => "%d zaproszenia dostępne", - 3 => "%d zaproszenia dostępne", -]; -$a->strings["Find People"] = "Znajdź ludzi"; -$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykład: Jan Kowalski, Wędkarstwo"; -$a->strings["Find"] = "Znajdź"; -$a->strings["Similar Interests"] = "Podobne zainteresowania"; -$a->strings["Random Profile"] = "Domyślny profil"; -$a->strings["Invite Friends"] = "Zaproś znajomych"; -$a->strings["Global Directory"] = "Katalog globalny"; -$a->strings["Local Directory"] = "Katalog lokalny"; -$a->strings["Groups"] = "Grupy"; -$a->strings["Everyone"] = "Wszyscy"; -$a->strings["Following"] = "Kolejny"; -$a->strings["Mutual friends"] = "Wspólni znajomi"; -$a->strings["Relationships"] = "Relacje"; -$a->strings["All Contacts"] = "Wszystkie kontakty"; -$a->strings["Protocols"] = "Protokoły"; -$a->strings["All Protocols"] = "Wszystkie protokoły"; -$a->strings["Saved Folders"] = "Zapisz w folderach"; -$a->strings["Everything"] = "Wszystko"; -$a->strings["Categories"] = "Kategorie"; -$a->strings["%d contact in common"] = [ - 0 => "%d wspólny kontakt", - 1 => "%d wspólne kontakty", - 2 => "%d wspólnych kontaktów", - 3 => "%dwspólnych kontaktów", -]; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "Brak tabel w MyISAM lub InnoDB z formatem pliku Antelope."; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Błędy napotkane podczas dokonywania zmian w bazie danych: "; +$a->strings["Another database update is currently running."] = ""; +$a->strings["%s: Database update"] = "%s: Aktualizacja bazy danych"; +$a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli."; +$a->strings["Database error %d \"%s\" at \"%s\""] = ""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Komunikat o błędzie jest \n[pre]%s[/ pre]"; +$a->strings["[Friendica Notify] Database update"] = "[Powiadomienie Friendica] Aktualizacja bazy danych"; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tBaza danych Friendica została pomyślnie zaktualizowana z %s do %s."; $a->strings["Yourself"] = ""; +$a->strings["Followers"] = "Zwolenników"; +$a->strings["Mutuals"] = "Wzajemne"; $a->strings["Post to Email"] = "Prześlij e-mailem"; $a->strings["Public"] = "Publiczny"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "Ta treść zostanie wyświetlona wszystkim Twoim obserwatorom i będzie widoczna na stronach społeczności oraz przez każdego z jej linkiem."; @@ -913,7 +786,7 @@ $a->strings["The database configuration file \"config/local.config.php\" could n $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\"."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć PHP dla wiersza poleceń w PATH serwera."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wierszem poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika'"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; $a->strings["PHP executable path"] = "Ścieżka wykonywalna PHP"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."; $a->strings["Command line PHP"] = "Linia komend PHP"; @@ -1016,11 +889,6 @@ $a->strings["finger"] = "wskaż"; $a->strings["fingered"] = "dotknięty"; $a->strings["rebuff"] = "odrzuć"; $a->strings["rebuffed"] = "odrzucony"; -$a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Komunikat o błędzie jest \n[pre]%s[/ pre]"; -$a->strings["[Friendica Notify] Database update"] = "[Powiadomienie Friendica] Aktualizacja bazy danych"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tBaza danych Friendica została pomyślnie zaktualizowana z %s do %s."; $a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?"; $a->strings["User '%s' already exists on this server!"] = "Użytkownik '%s' już istnieje na tym serwerze!"; @@ -1033,11 +901,108 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "Błąd tworzenia profilu użytkownika"; $a->strings["Done. You can now login with your username and password"] = "Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "Brak tabel w MyISAM lub InnoDB z formatem pliku Antelope."; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Błędy napotkane podczas dokonywania zmian w bazie danych: "; -$a->strings["%s: Database update"] = "%s: Aktualizacja bazy danych"; -$a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli."; +$a->strings["Legacy module file not found: %s"] = "Nie znaleziono pliku modułu: %s"; +$a->strings["(no subject)"] = "(bez tematu)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s, członka sieci społecznościowej Friendica."; +$a->strings["You may visit them online at %s"] = "Możesz odwiedzić ich online pod adresem %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; +$a->strings["%s posted an update."] = "%s zaktualizował wpis."; +$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; +$a->strings["Private Message"] = "Wiadomość prywatna"; +$a->strings["pinned item"] = ""; +$a->strings["Delete locally"] = "Usuń lokalnie"; +$a->strings["Delete globally"] = "Usuń globalnie"; +$a->strings["Remove locally"] = "Usuń lokalnie"; +$a->strings["save to folder"] = "zapisz w folderze"; +$a->strings["I will attend"] = "Będę uczestniczyć"; +$a->strings["I will not attend"] = "Nie będę uczestniczyć"; +$a->strings["I might attend"] = "Mogę wziąć udział"; +$a->strings["ignore thread"] = "zignoruj ​​wątek"; +$a->strings["unignore thread"] = "odignoruj ​​wątek"; +$a->strings["toggle ignore status"] = "przełącz status ignorowania"; +$a->strings["pin"] = "przypnij"; +$a->strings["unpin"] = "odepnij"; +$a->strings["toggle pin status"] = ""; +$a->strings["pinned"] = "Przypięte"; +$a->strings["add star"] = "dodaj gwiazdkę"; +$a->strings["remove star"] = "anuluj gwiazdkę"; +$a->strings["toggle star status"] = "włącz status gwiazdy"; +$a->strings["starred"] = "gwiazdką"; +$a->strings["add tag"] = "dodaj tag"; +$a->strings["like"] = "lubię to"; +$a->strings["dislike"] = "nie lubię tego"; +$a->strings["Share this"] = "Udostępnij to"; +$a->strings["share"] = "udostępnij"; +$a->strings["%s (Received %s)"] = ""; +$a->strings["Comment this item on your system"] = ""; +$a->strings["remote comment"] = ""; +$a->strings["Pushed"] = ""; +$a->strings["Pulled"] = ""; +$a->strings["to"] = "do"; +$a->strings["via"] = "przez"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Reply to %s"] = "Odpowiedź %s"; +$a->strings["More"] = "Więcej"; +$a->strings["Notifier task is pending"] = "Zadanie Notifier jest w toku"; +$a->strings["Delivery to remote servers is pending"] = "Trwa przesyłanie do serwerów zdalnych"; +$a->strings["Delivery to remote servers is underway"] = "Trwa dostawa do serwerów zdalnych"; +$a->strings["Delivery to remote servers is mostly done"] = "Dostawa do zdalnych serwerów jest w większości wykonywana"; +$a->strings["Delivery to remote servers is done"] = "Trwa dostarczanie do zdalnych serwerów"; +$a->strings["%d comment"] = [ + 0 => "%d komentarz", + 1 => "%d komentarze", + 2 => "%d komentarzy", + 3 => "%d komentarzy", +]; +$a->strings["Show more"] = "Pokaż więcej"; +$a->strings["Show fewer"] = "Pokaż mniej"; +$a->strings["comment"] = [ + 0 => "komentarz", + 1 => "komentarze", + 2 => "komentarze", + 3 => "komentarz", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Nie można znaleźć żadnego wpisu kontaktu zarchiwizowanego dla tego adresu URL (%s)"; +$a->strings["The contact entries have been archived"] = "Wpisy kontaktów zostały zarchiwizowane"; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"; +$a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle"; +$a->strings["Enter new password: "] = "Wprowadź nowe hasło: "; +$a->strings["Enter user name: "] = "Wpisz nazwę użytkownika:"; +$a->strings["Enter user nickname: "] = "Wpisz nazwę użytkownika:"; +$a->strings["Enter user email address: "] = "Wpisz adres e-mail użytkownika:"; +$a->strings["Enter a language (optional): "] = "Wpisz język (opcjonalnie):"; +$a->strings["User is not pending."] = ""; +$a->strings["User has already been marked for deletion."] = ""; +$a->strings["Type \"yes\" to delete %s"] = "Wpisz „tak”, aby usunąć %s"; +$a->strings["Deletion aborted."] = ""; +$a->strings["Post update version number has been set to %s."] = "Numer wersji aktualizacji posta został ustawiony na %s."; +$a->strings["Check for pending update actions."] = "Sprawdź oczekujące działania aktualizacji."; +$a->strings["Done."] = "Gotowe."; +$a->strings["Execute pending post updates."] = "Wykonaj oczekujące aktualizacje postów."; +$a->strings["All pending post updates are done."] = "Wszystkie oczekujące aktualizacje postów są gotowe."; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "Miasto rodzinne:"; +$a->strings["Marital Status:"] = "Stan cywilny:"; +$a->strings["With:"] = "Z:"; +$a->strings["Since:"] = "Od:"; +$a->strings["Sexual Preference:"] = "Preferencje seksualne:"; +$a->strings["Political Views:"] = "Poglądy polityczne:"; +$a->strings["Religious Views:"] = "Poglądy religijne:"; +$a->strings["Likes:"] = "Lubię to:"; +$a->strings["Dislikes:"] = "Nie lubię tego:"; +$a->strings["Title/Description:"] = "Tytuł/Opis:"; +$a->strings["Summary"] = "Podsumowanie"; +$a->strings["Musical interests"] = "Muzyka"; +$a->strings["Books, literature"] = "Literatura"; +$a->strings["Television"] = "Telewizja"; +$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Hobbies/Interests"] = "Zainteresowania"; +$a->strings["Love/romance"] = "Miłość/romans"; +$a->strings["Work/employment"] = "Praca/zatrudnienie"; +$a->strings["School/education"] = "Szkoła/edukacja"; +$a->strings["Contact information and Social Networks"] = "Dane kontaktowe i Sieci społecznościowe"; +$a->strings["No system theme config value set."] = "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego."; $a->strings["Friend Suggestion"] = "Propozycja znajomych"; $a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; $a->strings["New Follower"] = "Nowy obserwujący"; @@ -1049,192 +1014,550 @@ $a->strings["%s is attending %s's event"] = "%s uczestniczy w wydarzeniu %s"; $a->strings["%s is not attending %s's event"] = "%s nie uczestniczy w wydarzeniu %s"; $a->strings["%s may attending %s's event"] = ""; $a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; -$a->strings["Legacy module file not found: %s"] = "Nie znaleziono pliku modułu: %s"; -$a->strings["UnFollow"] = ""; -$a->strings["Drop Contact"] = "Zakończ znajomość"; +$a->strings["Network Notifications"] = "Powiadomienia sieciowe"; +$a->strings["System Notifications"] = "Powiadomienia systemowe"; +$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; +$a->strings["Home Notifications"] = "Powiadomienia domowe"; +$a->strings["No more %s notifications."] = "Brak kolejnych %s powiadomień."; +$a->strings["Show unread"] = "Pokaż nieprzeczytane"; +$a->strings["Show all"] = "Pokaż wszystko"; +$a->strings["You must be logged in to show this page."] = ""; +$a->strings["Notifications"] = "Powiadomienia"; +$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; +$a->strings["Hide Ignored Requests"] = "Ukryj zignorowane prośby"; +$a->strings["Notification type:"] = "Typ powiadomienia:"; +$a->strings["Suggested by:"] = "Sugerowany przez:"; +$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; $a->strings["Approve"] = "Zatwierdź"; -$a->strings["Organisation"] = "Organizacja"; -$a->strings["News"] = "Aktualności"; -$a->strings["Forum"] = "Forum"; -$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."; -$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; -$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; -$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."; -$a->strings["Use mailto: in front of address to force email check."] = "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; -$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Rozpoczęcie:"; -$a->strings["Finishes:"] = "Zakończenie:"; -$a->strings["all-day"] = "cały dzień"; -$a->strings["Sept"] = "Wrz"; -$a->strings["No events to display"] = "Brak wydarzeń do wyświetlenia"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Edytuj wydarzenie"; -$a->strings["Duplicate event"] = "Zduplikowane zdarzenie"; -$a->strings["Delete event"] = "Usuń wydarzenie"; -$a->strings["link to source"] = "link do źródła"; -$a->strings["D g:i A"] = "D g:i A"; -$a->strings["g:i A"] = "g:i A"; -$a->strings["Show map"] = "Pokaż mapę"; -$a->strings["Hide map"] = "Ukryj mapę"; -$a->strings["%s's birthday"] = "%s urodzin"; -$a->strings["Happy Birthday %s"] = "Urodziny %s"; -$a->strings["Item filed"] = "Element złożony"; -$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."] = "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."; -$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; -$a->strings["Everybody"] = "Wszyscy"; -$a->strings["edit"] = "edytuj"; -$a->strings["add"] = "dodaj"; -$a->strings["Edit group"] = "Edytuj grupy"; -$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; -$a->strings["Create a new group"] = "Stwórz nową grupę"; -$a->strings["Group Name: "] = "Nazwa grupy: "; -$a->strings["Edit groups"] = "Edytuj grupy"; -$a->strings["activity"] = "aktywność"; -$a->strings["comment"] = [ - 0 => "komentarz", - 1 => "komentarze", - 2 => "komentarze", - 3 => "komentarz", -]; -$a->strings["post"] = "post"; -$a->strings["Content warning: %s"] = "Ostrzeżenie o treści: %s"; -$a->strings["bytes"] = "bajty"; -$a->strings["View on separate page"] = "Zobacz na oddzielnej stronie"; -$a->strings["view on separate page"] = "zobacz na oddzielnej stronie"; -$a->strings["[no subject]"] = "[bez tematu]"; -$a->strings["Edit profile"] = "Edytuj profil"; -$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; -$a->strings["Homepage:"] = "Strona główna:"; +$a->strings["Claims to be known to you: "] = "Twierdzi, że go/ją znasz: "; +$a->strings["Shall your connection be bidirectional or not?"] = "Czy twoje połączenie ma być dwukierunkowe, czy nie?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."; +$a->strings["Friend"] = "Znajomy"; +$a->strings["Subscriber"] = "Subskrybent"; $a->strings["About:"] = "O:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Unfollow"] = ""; -$a->strings["Atom feed"] = "Kanał Atom"; $a->strings["Network:"] = "Sieć:"; -$a->strings["g A l F d"] = "g A I F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[dziś]"; -$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; -$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; -$a->strings["[No description]"] = "[Brak opisu]"; -$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; -$a->strings["Upcoming events the next 7 days:"] = "Nadchodzące wydarzenia w ciągu następnych 7 dni:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s wita %2\$s"; -$a->strings["Database storage failed to update %s"] = "Przechowywanie bazy danych nie powiodło się %s"; -$a->strings["Database storage failed to insert data"] = "Magazyn bazy danych nie mógł wstawić danych"; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Nie można utworzyć magazynu systemu plików \"%s\". Sprawdź, czy masz uprawnienia do zapisu."; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Nie udało się zapisać danych w pamięci systemu plików \"%s\". Sprawdź swoje uprawnienia do zapisu"; -$a->strings["Storage base path"] = "Ścieżka bazy pamięci masowej"; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Folder, w którym zapisywane są przesłane pliki. Dla maksymalnego bezpieczeństwa, powinna to być ścieżka poza drzewem folderów serwera WWW"; -$a->strings["Enter a valid existing folder"] = "Wprowadź poprawny istniejący folder"; -$a->strings["Login failed"] = "Logowanie nieudane"; -$a->strings["Not enough information to authenticate"] = "Za mało informacji do uwierzytelnienia"; -$a->strings["Password can't be empty"] = "Hasło nie może być puste"; -$a->strings["Empty passwords are not allowed."] = "Puste hasła są niedozwolone."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)"; -$a->strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Hasło niezmienione."; -$a->strings["An invitation is required."] = "Wymagane zaproszenie."; -$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; -$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; -$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje."; -$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości."; -$a->strings["Username should be at least %s character."] = [ - 0 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", - 1 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", - 2 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", - 3 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", +$a->strings["No introductions."] = "Brak dostępu."; +$a->strings["A Decentralized Social Network"] = ""; +$a->strings["Logged out."] = "Wylogowano."; +$a->strings["Invalid code, please retry."] = "Nieprawidłowy kod, spróbuj ponownie."; +$a->strings["Two-factor authentication"] = "Uwierzytelnianie dwuskładnikowe"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania "; +$a->strings["Please enter a code from your authentication app"] = "Wprowadź kod z aplikacji uwierzytelniającej"; +$a->strings["Verify code and complete login"] = "Zweryfikuj kod i zakończ logowanie"; +$a->strings["Remaining recovery codes: %d"] = "Pozostałe kody odzyskiwania: %d"; +$a->strings["Two-factor recovery"] = "Odzyskiwanie dwuczynnikowe"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.

"; +$a->strings["Please enter a recovery code"] = "Wprowadź kod odzyskiwania"; +$a->strings["Submit recovery code and complete login"] = "Prześlij kod odzyskiwania i pełne logowanie"; +$a->strings["Create a New Account"] = "Załóż nowe konto"; +$a->strings["Register"] = "Zarejestruj"; +$a->strings["Your OpenID: "] = ""; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta."; +$a->strings["Or login using OpenID: "] = "Lub zaloguj się za pośrednictwem OpenID: "; +$a->strings["Logout"] = "Wyloguj"; +$a->strings["Login"] = "Zaloguj się"; +$a->strings["Password: "] = "Hasło: "; +$a->strings["Remember me"] = "Zapamiętaj mnie"; +$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?"; +$a->strings["Website Terms of Service"] = "Warunki korzystania z witryny"; +$a->strings["terms of service"] = "warunki użytkowania"; +$a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny"; +$a->strings["privacy policy"] = "polityka prywatności"; +$a->strings["OpenID protocol error. No ID returned"] = ""; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID."; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Zmiana czasu"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."; +$a->strings["UTC time: %s"] = "Czas UTC %s"; +$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; +$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; +$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; +$a->strings["Source input"] = "Źródło wejściowe"; +$a->strings["BBCode::toPlaintext"] = "BBCode::na prosty tekst"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode:: konwersjia (raw HTML)"; +$a->strings["BBCode::convert"] = "BBCode::przekształć"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::przekształć => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::przekształć"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"; +$a->strings["Item Body"] = "Element Body"; +$a->strings["Item Tags"] = "Element Tagów"; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = "Źródło wejściowe (format Diaspora)"; +$a->strings["Source input (Markdown)"] = ""; +$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (raw HTML)"; +$a->strings["Markdown::convert"] = "Markdown::convert"; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Surowe wejście HTML"; +$a->strings["HTML Input"] = "Wejście HTML"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (raw HTML)"; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; +$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["HTML::toPlaintext (compact)"] = ""; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = "Tekst źródłowy"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = "Musisz być zalogowany, aby korzystać z tego modułu"; +$a->strings["Source URL"] = "Źródłowy adres URL"; +$a->strings["Lookup address"] = "Wyszukaj adres"; +$a->strings["%s's timeline"] = "oś czasu %s"; +$a->strings["%s's posts"] = "wpisy %s"; +$a->strings["%s's comments"] = "komentarze %s"; +$a->strings["No contacts."] = "Brak kontaktów."; +$a->strings["Follower (%s)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", ]; -$a->strings["Username should be at most %s character."] = [ - 0 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", - 1 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", - 2 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", - 3 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", +$a->strings["Following (%s)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", ]; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."; -$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; -$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; -$a->strings["The nickname was blocked from registration by the nodes admin."] = "Pseudonim został zablokowany przed rejestracją przez administratora węzłów."; -$a->strings["Cannot use that email."] = "Nie można użyć tego e-maila."; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Twój pseudonim może zawierać tylko a-z, 0-9 i _."; -$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; -$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; -$a->strings["An error occurred creating your self contact. Please try again."] = "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."; -$a->strings["Friends"] = "Przyjaciele"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tSzanowny Użytkowniku %1\$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%4\$s\n\t\t\tHasło:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Rejestracja w %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tSzanowna/y %1\$s,\n\t\t\t\tDziękujemy za rejestrację w %2\$s. Twoje konto zostało utworzone.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%1\$s\n\t\t\tHasło:\t\t%5\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil użytkownika\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\t\ti być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół.\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3\$s/removeme\n\n\t\t\tDziękujemy i Zapraszamy do %2\$s."; -$a->strings["Addon not found."] = "Nie znaleziono dodatku."; -$a->strings["Addon %s disabled."] = "Dodatek %s wyłączony."; -$a->strings["Addon %s enabled."] = "Dodatek %s włączony."; +$a->strings["Mutual friend (%s)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Contact (%s)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["All contacts"] = "Wszystkie kontakty"; +$a->strings["Following"] = "Kolejny"; +$a->strings["Mutual friends"] = "Wspólni znajomi"; +$a->strings["You're currently viewing your profile as %s Cancel"] = ""; +$a->strings["Member since:"] = "Członek od:"; +$a->strings["j F, Y"] = "d M, R"; +$a->strings["j F"] = "d M"; +$a->strings["Birthday:"] = "Urodziny:"; +$a->strings["Age: "] = "Wiek: "; +$a->strings["%d year old"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Strona główna:"; +$a->strings["Forums:"] = "Fora:"; +$a->strings["View profile as:"] = "Wyświetl profil jako:"; +$a->strings["Edit profile"] = "Edytuj profil"; +$a->strings["View as"] = ""; +$a->strings["Only parent users can create additional accounts."] = "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając \"Register\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."; +$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie): "; +$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?"; +$a->strings["Note for the admin"] = "Uwaga dla administratora"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła"; +$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."; +$a->strings["Your invitation code: "] = "Twój kod zaproszenia: "; +$a->strings["Registration"] = "Rejestracja"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Twoje imię i nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe): "; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)."; +$a->strings["Please repeat your e-mail address:"] = "Powtórz swój adres e-mail:"; +$a->strings["Leave empty for an auto generated password."] = "Pozostaw puste dla wygenerowanego automatycznie hasła."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to \"nickname@%s\"."; +$a->strings["Choose a nickname: "] = "Wybierz pseudonim: "; +$a->strings["Import your profile to this friendica instance"] = "Zaimportuj swój profil do tej instancji friendica"; +$a->strings["Terms of Service"] = "Warunki usługi"; +$a->strings["Note: This node explicitly contains adult content"] = "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych"; +$a->strings["Parent Password:"] = "Hasło nadrzędne:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."; +$a->strings["Password doesn't match."] = "Hasło nie jest zgodne."; +$a->strings["Please enter your password."] = "Wprowadź hasło."; +$a->strings["You have entered too much information."] = "Podałeś za dużo informacji."; +$a->strings["Please enter the identical mail address in the second field."] = "Wpisz identyczny adres e-mail w drugim polu."; +$a->strings["The additional account was created."] = "Dodatkowe konto zostało utworzone."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
login: %s
hasło: %s

Możesz zmienić swoje hasło po zalogowaniu."; +$a->strings["Registration successful."] = "Rejestracja udana."; +$a->strings["Your registration can not be processed."] = "Nie można przetworzyć Twojej rejestracji."; +$a->strings["You have to leave a request note for the admin."] = "Musisz zostawić notatkę z prośbą do administratora."; +$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."; +$a->strings["Bad Request"] = "Nieprawidłowe żądanie"; +$a->strings["Unauthorized"] = "Nieautoryzowane"; +$a->strings["Forbidden"] = "Zabronione"; +$a->strings["Not Found"] = "Nie znaleziono"; +$a->strings["Internal Server Error"] = "Wewnętrzny błąd serwera"; +$a->strings["Service Unavailable"] = "Usługa Niedostępna "; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = "Serwer nie może lub nie będzie przetwarzać żądania z powodu widocznego błędu klienta."; +$a->strings["Authentication is required and has failed or has not yet been provided."] = "Uwierzytelnienie jest wymagane i nie powiodło się lub nie zostało jeszcze dostarczone."; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "Żądanie było ważne, ale serwer odmawia działania. Użytkownik może nie mieć wymaganych uprawnień do zasobu lub może potrzebować konta."; +$a->strings["The requested resource could not be found but may be available in the future."] = "Żądany zasób nie został znaleziony, ale może być dostępny w przyszłości."; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "Napotkano nieoczekiwany warunek i nie jest odpowiedni żaden bardziej szczegółowy komunikat."; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "Serwer jest obecnie niedostępny (ponieważ jest przeciążony lub wyłączony z powodu konserwacji). Spróbuj ponownie później."; +$a->strings["Go back"] = "Wróć"; +$a->strings["Welcome to %s"] = "Witamy w %s"; +$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia."; +$a->strings["Suggested contact not found."] = "Nie znaleziono sugerowanego kontaktu."; +$a->strings["Friend suggestion sent."] = "Wysłana propozycja dodania do znajomych."; +$a->strings["Suggest Friends"] = "Zaproponuj znajomych"; +$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; +$a->strings["Credits"] = "Zaufany"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Instalator"; +$a->strings["System check"] = "Sprawdzanie systemu"; +$a->strings["Check again"] = "Sprawdź ponownie"; +$a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL, linki będą śledzić stan SSL"; +$a->strings["Force all links to use SSL"] = "Wymuś używanie SSL na wszystkich odnośnikach"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty, użyj SSL tylko dla linków lokalnych . "; +$a->strings["Base settings"] = "Ustawienia bazy"; +$a->strings["SSL link policy"] = "Polityka odnośników SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Określa, czy generowane odnośniki będą obowiązkowo używały SSL"; +$a->strings["Host name"] = "Nazwa hosta"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Nadpisz to pole w przypadku, gdy określona nazwa hosta nie jest prawidłowa, a pozostałe pozostaw to bez zmian."; +$a->strings["Base path to installation"] = "Podstawowa ścieżka do instalacji"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota."; +$a->strings["Sub path of the URL"] = "Ścieżka podrzędna adresu URL"; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Nadpisz to pole w przypadku, gdy określenie ścieżki podrzędnej nie jest prawidłowe, w przeciwnym razie pozostaw je bez zmian. Pozostawienie tego pola pustego oznacza, że ​​instalacja odbywa się pod podstawowym adresem URL bez podścieżki."; +$a->strings["Database connection"] = "Połączenie z bazą danych"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."; +$a->strings["Database Server Name"] = "Nazwa serwera bazy danych"; +$a->strings["Database Login Name"] = "Nazwa użytkownika bazy danych"; +$a->strings["Database Login Password"] = "Hasło logowania do bazy danych"; +$a->strings["For security reasons the password must not be empty"] = "Ze względów bezpieczeństwa hasło nie może być puste"; +$a->strings["Database Name"] = "Nazwa bazy danych"; +$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony"; +$a->strings["Site settings"] = "Ustawienia strony"; +$a->strings["Site administrator email address"] = "Adres e-mail administratora strony"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."; +$a->strings["System Language:"] = "Język systemu:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."; +$a->strings["Your Friendica site database has been installed."] = "Twoja baza danych witryny Friendica została zainstalowana."; +$a->strings["Installation finished"] = "Instalacja zakończona"; +$a->strings["

What next

"] = "

Co dalej

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny."; +$a->strings["- select -"] = "- wybierz -"; +$a->strings["Item was not removed"] = ""; +$a->strings["Item was not deleted"] = ""; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "Nie są dostępne zdalne informacje o prywatności."; +$a->strings["Visible to:"] = "Widoczne dla:"; +$a->strings["Manage Identities and/or Pages"] = "Zarządzaj tożsamościami i/lub stronami"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\""; +$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania: "; +$a->strings["Local Community"] = "Lokalna społeczność"; +$a->strings["Posts from local users on this server"] = "Wpisy od lokalnych użytkowników na tym serwerze"; +$a->strings["Global Community"] = "Globalna społeczność"; +$a->strings["Posts from users of the whole federated network"] = "Wpisy od użytkowników całej sieci stowarzyszonej"; +$a->strings["No results."] = "Brak wyników."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."; +$a->strings["Community option not available."] = "Opcja wspólnotowa jest niedostępna."; +$a->strings["Not available."] = "Niedostępne."; +$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; +$a->strings["New Member Checklist"] = "Lista nowych członków"; +$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; +$a->strings["Getting Started"] = "Pierwsze kroki"; +$a->strings["Friendica Walk-Through"] = "Friendica Przejdź-Przez"; +$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 stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."; +$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; +$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 stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej."; +$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."] = "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć."; +$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; +$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; +$a->strings["Edit Your Profile"] = "Edytuj własny 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."] = "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami."; +$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Ustaw kilka publicznych słów kluczowych dla swojego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zasugerować przyjaźnie."; +$a->strings["Connecting"] = "Łączenie"; +$a->strings["Importing Emails"] = "Importowanie e-maili"; +$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"] = "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX"; +$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; +$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."] = "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt."; +$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; +$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."] = "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."; +$a->strings["Finding New People"] = "Znajdowanie nowych osób"; +$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 bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin"; +$a->strings["Groups"] = "Grupy"; +$a->strings["Group Your Contacts"] = "Grupy kontaktów"; +$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."] = "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć."; +$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; +$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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu."; +$a->strings["Getting Help"] = "Otrzymaj pomoc"; +$a->strings["Go to the Help Section"] = "Przejdź do sekcji pomocy"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."; +$a->strings["This page is missing a url parameter."] = "Na tej stronie brakuje parametru url."; +$a->strings["The post was created"] = "Post został utworzony"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "Informacje"; +$a->strings["Overview"] = "Przegląd"; +$a->strings["Federation Statistics"] = "Statystyki Organizacji"; +$a->strings["Configuration"] = "Konfiguracja"; +$a->strings["Site"] = "Strona"; +$a->strings["Users"] = "Użytkownicy"; +$a->strings["Addons"] = "Dodatki"; +$a->strings["Themes"] = "Wygląd"; +$a->strings["Additional features"] = "Dodatkowe funkcje"; +$a->strings["Database"] = "Baza danych"; +$a->strings["DB updates"] = "Aktualizacje DB"; +$a->strings["Inspect Deferred Workers"] = "Sprawdź Odroczonych Pracowników"; +$a->strings["Inspect worker Queue"] = "Sprawdź kolejkę pracowników"; +$a->strings["Tools"] = "Narzędzia"; +$a->strings["Contact Blocklist"] = "Lista zablokowanych kontaktów"; +$a->strings["Server Blocklist"] = "Lista zablokowanych serwerów"; +$a->strings["Delete Item"] = "Usuń przedmiot"; +$a->strings["Logs"] = "Logi"; +$a->strings["View Logs"] = "Zobacz rejestry"; +$a->strings["Diagnostics"] = "Diagnostyka"; +$a->strings["PHP Info"] = "Informacje o PHP"; +$a->strings["probe address"] = "adres sondy"; +$a->strings["check webfinger"] = "sprawdź webfinger"; +$a->strings["Item Source"] = "Źródło elementu"; +$a->strings["Babel"] = ""; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "Administator"; +$a->strings["Addon Features"] = "Funkcje dodatkowe"; +$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkowników czekające na potwierdzenie"; +$a->strings["%d contact edited."] = [ + 0 => "Zedytowano %d kontakt.", + 1 => "Zedytowano %d kontakty.", + 2 => "Zedytowano %d kontaktów.", + 3 => "%dedytuj kontakty.", +]; +$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; +$a->strings["Follow"] = "Śledź"; +$a->strings["Unfollow"] = ""; +$a->strings["Contact not found"] = "Nie znaleziono kontaktu"; +$a->strings["Contact has been blocked"] = "Kontakt został zablokowany"; +$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany"; +$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; +$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; +$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; +$a->strings["Contact has been unarchived"] = "Kontakt został przywrócony"; +$a->strings["Drop contact"] = "Usuń kontakt"; +$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; +$a->strings["Contact has been removed."] = "Kontakt został usunięty."; +$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; +$a->strings["You are sharing with %s"] = "Współdzielisz z %s"; +$a->strings["%s is sharing with you"] = "%s współdzieli z tobą"; +$a->strings["Private communications are not available for this contact."] = "Nie można nawiązać prywatnej rozmowy z tym kontaktem."; +$a->strings["Never"] = "Nigdy"; +$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)"; +$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; +$a->strings["Suggest friends"] = "Osoby, które możesz znać"; +$a->strings["Network type: %s"] = "Typ sieci: %s"; +$a->strings["Communications lost with this contact!"] = "Utracono komunikację z tym kontaktem!"; +$a->strings["Fetch further information for feeds"] = "Pobierz dalsze informacje dla kanałów"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."; +$a->strings["Disabled"] = "Wyłączony"; +$a->strings["Fetch information"] = "Pobierz informacje"; +$a->strings["Fetch keywords"] = "Pobierz słowa kluczowe"; +$a->strings["Fetch information and keywords"] = "Pobierz informacje i słowa kluczowe"; +$a->strings["Contact Information / Notes"] = "Informacje kontaktowe/Notatki"; +$a->strings["Contact Settings"] = "Ustawienia kontaktów"; +$a->strings["Contact"] = "Kontakt"; +$a->strings["Their personal note"] = "Ich osobista uwaga"; +$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; +$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; +$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; +$a->strings["Ignore contact"] = "Ignoruj kontakt"; +$a->strings["View conversations"] = "Wyświetl rozmowy"; +$a->strings["Last update:"] = "Ostatnia aktualizacja:"; +$a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; +$a->strings["Update now"] = "Aktualizuj teraz"; +$a->strings["Unblock"] = "Odblokuj"; +$a->strings["Unignore"] = "Odblokuj"; +$a->strings["Currently blocked"] = "Obecnie zablokowany"; +$a->strings["Currently ignored"] = "Obecnie zignorowany"; +$a->strings["Currently archived"] = "Obecnie zarchiwizowany"; +$a->strings["Awaiting connection acknowledge"] = "Oczekiwanie na potwierdzenie połączenia"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; +$a->strings["Notification for new posts"] = "Powiadomienie o nowych postach"; +$a->strings["Send a notification of every new post of this contact"] = "Wyślij powiadomienie o każdym nowym poście tego kontaktu"; +$a->strings["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"; +$a->strings["Actions"] = "Akcja"; +$a->strings["All Contacts"] = "Wszystkie kontakty"; +$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; +$a->strings["Pending"] = "Oczekujące"; +$a->strings["Only show pending contacts"] = "Pokaż tylko oczekujące kontakty"; +$a->strings["Blocked"] = "Zablokowane"; +$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty"; +$a->strings["Ignored"] = "Ignorowane"; +$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty"; +$a->strings["Archived"] = "Zarchiwizowane"; +$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; +$a->strings["Hidden"] = "Ukryte"; +$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; +$a->strings["Organize your contact groups"] = "Uporządkuj swoje grupy kontaktów"; +$a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; +$a->strings["Results for: %s"] = "Wyniki dla: %s"; +$a->strings["Archive"] = "Archiwum"; +$a->strings["Unarchive"] = "Przywróć z archiwum"; +$a->strings["Batch Actions"] = "Akcje wsadowe"; +$a->strings["Conversations started by this contact"] = "Rozmowy rozpoczęły się od tego kontaktu"; +$a->strings["Posts and Comments"] = "Posty i komentarze"; +$a->strings["Profile Details"] = "Szczegóły profilu"; +$a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; +$a->strings["View all common friends"] = "Zobacz wszystkich popularnych znajomych"; +$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; +$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; +$a->strings["is a fan of yours"] = "jest twoim fanem"; +$a->strings["you are a fan of"] = "jesteś fanem"; +$a->strings["Pending outgoing contact request"] = "Oczekujące żądanie kontaktu wychodzącego"; +$a->strings["Pending incoming contact request"] = "Oczekujące żądanie kontaktu przychodzącego"; +$a->strings["Refetch contact data"] = "Odśwież dane kontaktowe"; +$a->strings["Toggle Blocked status"] = "Przełącz status na Zablokowany"; +$a->strings["Toggle Ignored status"] = "Przełącz status na Ignorowany"; +$a->strings["Toggle Archive status"] = "Przełącz status na Archiwalny"; +$a->strings["Delete contact"] = "Usuń kontakt"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["Privacy Statement"] = "Oświadczenie o prywatności"; +$a->strings["Help:"] = "Pomoc:"; +$a->strings["Method Not Allowed."] = ""; +$a->strings["Profile not found"] = ""; +$a->strings["Total invitation limit exceeded."] = "Przekroczono limit zaproszeń ogółem."; +$a->strings["%s : Not a valid email address."] = "%s : Nieprawidłowy adres e-mail."; +$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."; +$a->strings["%s : Message delivery failed."] = "%s : Nie udało się dostarczyć wiadomości."; +$a->strings["%d message sent."] = [ + 0 => "%d wiadomość wysłana.", + 1 => "%d wiadomości wysłane.", + 2 => "%d wysłano .", + 3 => "%d wiadomość wysłano.", +]; +$a->strings["You have no more invitations available"] = "Nie masz już dostępnych zaproszeń"; +$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."] = "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej 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."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków."; +$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."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi."; +$a->strings["To accept this invitation, please visit and register at %s."] = "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s."; +$a->strings["Send invitations"] = "Wyślij zaproszenie"; +$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w wierszu:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Musisz podać ten kod zaproszenia: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca"; +$a->strings["People Search - %s"] = "Szukaj osób - %s"; +$a->strings["Forum Search - %s"] = "Przeszukiwanie forum - %s"; $a->strings["Disable"] = "Wyłącz"; $a->strings["Enable"] = "Zezwól"; +$a->strings["Theme %s disabled."] = "Motyw %s wyłączony."; +$a->strings["Theme %s successfully enabled."] = "Motyw %s został pomyślnie włączony."; +$a->strings["Theme %s failed to install."] = "Nie udało się zainstalować motywu %s."; +$a->strings["Screenshot"] = "Zrzut ekranu"; $a->strings["Administration"] = "Administracja"; -$a->strings["Addons"] = "Dodatki"; $a->strings["Toggle"] = "Włącz"; $a->strings["Author: "] = "Autor: "; $a->strings["Maintainer: "] = "Opiekun: "; -$a->strings["Addon %s failed to install."] = "Instalacja dodatku %s nie powiodła się."; -$a->strings["Reload active addons"] = "Załaduj ponownie aktywne dodatki"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1\$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2\$s"; -$a->strings["%s contact unblocked"] = [ - 0 => "%s kontakt odblokowany", - 1 => "%s kontakty odblokowane", - 2 => "%s kontaktów odblokowanych", - 3 => "%s kontaktów odblokowanych", +$a->strings["Unknown theme."] = "Nieznany motyw."; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Przeładuj aktywne motywy"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1\$s"; +$a->strings["[Experimental]"] = "[Eksperymentalne]"; +$a->strings["[Unsupported]"] = "[Niewspieralne]"; +$a->strings["Lock feature %s"] = "Funkcja blokady %s"; +$a->strings["Manage Additional Features"] = "Zarządzanie dodatkowymi funkcjami"; +$a->strings["%s user blocked"] = [ + 0 => "%s użytkownik zablokowany", + 1 => "%s użytkowników zablokowanych", + 2 => "%s użytkowników zablokowanych", + 3 => "%s użytkownicy zablokowani", ]; -$a->strings["Remote Contact Blocklist"] = "Lista zablokowanych kontaktów zdalnych"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego."; -$a->strings["Block Remote Contact"] = "Zablokuj kontakt zdalny"; +$a->strings["%s user unblocked"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["You can't remove yourself"] = "Nie możesz usunąć siebie"; +$a->strings["%s user deleted"] = [ + 0 => "usunięto %s użytkownika", + 1 => "usunięto %s użytkowników", + 2 => "usunięto %s użytkowników", + 3 => "%s usuniętych użytkowników", +]; +$a->strings["%s user approved"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["%s registration revoked"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["User \"%s\" deleted"] = "Użytkownik \"%s\" usunięty"; +$a->strings["User \"%s\" blocked"] = "Użytkownik \"%s\" zablokowany"; +$a->strings["User \"%s\" unblocked"] = "Użytkownik \"%s\" odblokowany"; +$a->strings["Account approved."] = "Konto zatwierdzone."; +$a->strings["Registration revoked"] = "Rejestracja odwołana"; +$a->strings["Private Forum"] = "Prywatne forum"; +$a->strings["Relay"] = "Przekaźnik"; +$a->strings["Email"] = "E-mail"; +$a->strings["Register date"] = "Data rejestracji"; +$a->strings["Last login"] = "Ostatnie logowanie"; +$a->strings["Last public item"] = ""; +$a->strings["Type"] = "Typu"; +$a->strings["Add User"] = "Dodaj użytkownika"; $a->strings["select all"] = "zaznacz wszystko"; -$a->strings["select none"] = "wybierz brak"; -$a->strings["Unblock"] = "Odblokuj"; -$a->strings["No remote contact is blocked from this node."] = "Z tego węzła nie jest blokowany kontakt zdalny."; -$a->strings["Blocked Remote Contacts"] = "Zablokowane kontakty zdalne"; -$a->strings["Block New Remote Contact"] = "Zablokuj nowy kontakt zdalny"; -$a->strings["Photo"] = "Zdjęcie"; -$a->strings["Reason"] = ""; -$a->strings["%s total blocked contact"] = [ - 0 => "łącznie %s zablokowany kontakt", - 1 => "łącznie %s zablokowane kontakty", - 2 => "łącznie %s zablokowanych kontaktów", - 3 => "%s całkowicie zablokowane kontakty", -]; -$a->strings["URL of the remote contact to block."] = "Adres URL kontaktu zdalnego do zablokowania."; -$a->strings["Block Reason"] = ""; -$a->strings["Server domain pattern added to blocklist."] = "Wzorzec domeny serwera dodano do listy bloków."; -$a->strings["Site blocklist updated."] = "Zaktualizowano listę bloków witryny."; -$a->strings["Blocked server domain pattern"] = "Zablokowany wzorzec domeny serwera"; -$a->strings["Reason for the block"] = "Powód blokowania"; -$a->strings["Delete server domain pattern"] = "Usuń wzorzec domeny serwera"; -$a->strings["Check to delete this entry from the blocklist"] = "Zaznacz, aby usunąć ten wpis z listy bloków"; -$a->strings["Server Domain Pattern Blocklist"] = "Lista bloków wzorców domen serwerów"; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "Ta strona może zostać użyta do zdefiniowania czarnej listy wzorców domen serwera z sieci stowarzyszonej, które nie mogą współdziałać z twoim węzłem. Dla każdego wzorca domeny należy również podać powód zablokowania go."; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; -$a->strings["Add new entry to block list"] = "Dodaj nowy wpis do listy bloków"; -$a->strings["Server Domain Pattern"] = "Wzorzec domeny serwera"; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "Wzorzec domeny nowego serwera do dodania do listy bloków. Nie dołączaj protokołu."; -$a->strings["Block reason"] = "Powód zablokowania"; -$a->strings["The reason why you blocked this server domain pattern."] = "Powód zablokowania wzorca domeny serwera."; -$a->strings["Add Entry"] = "Dodaj wpis"; -$a->strings["Save changes to the blocklist"] = "Zapisz zmiany w liście zablokowanych"; -$a->strings["Current Entries in the Blocklist"] = "Aktualne wpisy na liście zablokowanych"; -$a->strings["Delete entry from blocklist"] = "Usuń wpis z listy zablokowanych"; -$a->strings["Delete entry from blocklist?"] = "Usunąć wpis z listy zablokowanych?"; +$a->strings["User registrations waiting for confirm"] = "Zarejestrowani użytkownicy czekający na potwierdzenie"; +$a->strings["User waiting for permanent deletion"] = "Użytkownik czekający na trwałe usunięcie"; +$a->strings["Request date"] = "Data prośby"; +$a->strings["No registrations."] = "Brak rejestracji."; +$a->strings["Note from the user"] = "Uwaga od użytkownika"; +$a->strings["Deny"] = "Odmów"; +$a->strings["User blocked"] = "Użytkownik zablokowany"; +$a->strings["Site admin"] = "Administracja stroną"; +$a->strings["Account expired"] = "Konto wygasło"; +$a->strings["New User"] = "Nowy użytkownik"; +$a->strings["Permanent deletion"] = "Trwałe usunięcie"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?"; +$a->strings["Name of the new user."] = "Nazwa nowego użytkownika."; +$a->strings["Nickname"] = "Pseudonim"; +$a->strings["Nickname of the new user."] = "Pseudonim nowego użytkownika."; +$a->strings["Email address of the new user."] = "Adres email nowego użytkownika."; +$a->strings["Inspect Deferred Worker Queue"] = "Sprawdź kolejkę odroczonych pracowników"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Ta strona zawiera listę zadań opóźnionych pracowników. Są to zadania, które nie mogą być wykonywane po raz pierwszy."; +$a->strings["Inspect Worker Queue"] = "Sprawdź Kolejkę Pracowników"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Ta strona zawiera listę aktualnie ustawionych zadań dla pracowników. Te zadania są obsługiwane przez cronjob pracownika, który skonfigurowałeś podczas instalacji."; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = "Parametry zadania"; +$a->strings["Created"] = "Utwórz"; +$a->strings["Priority"] = "Priorytet"; $a->strings["Update has been marked successful"] = "Aktualizacja została oznaczona jako udana"; $a->strings["Database structure update %s was successfully applied."] = "Pomyślnie zastosowano aktualizację %s struktury bazy danych."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s"; @@ -1248,27 +1571,15 @@ $a->strings["Failed Updates"] = "Błąd aktualizacji"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu."; $a->strings["Mark success (if update was manually applied)"] = "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)"; $a->strings["Attempt to execute this update step automatically"] = "Spróbuj automatycznie wykonać ten krok aktualizacji"; -$a->strings["Lock feature %s"] = "Funkcja blokady %s"; -$a->strings["Manage Additional Features"] = "Zarządzanie dodatkowymi funkcjami"; $a->strings["Other"] = "Inne"; $a->strings["unknown"] = "nieznany"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł."; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "Funkcja Katalog kontaktów automatycznie odkrytych nie jest włączona, poprawi ona wyświetlane tutaj dane."; -$a->strings["Federation Statistics"] = "Statystyki Organizacji"; $a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:"; -$a->strings["Item marked for deletion."] = "Przedmiot oznaczony do usunięcia."; -$a->strings["Delete Item"] = "Usuń przedmiot"; -$a->strings["Delete this Item"] = "Usuń ten przedmiot"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "Identyfikator elementu GUID, który chcesz usunąć."; -$a->strings["Item Guid"] = "Element Guid"; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Błąd podczas próby otwarcia %1\$s pliku dziennika. \\r\\n
Sprawdź, czy plik %1\$s istnieje i czy można go odczytać."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Nie można otworzyć %1\$spliku dziennika. \\r\\n
Sprawdź, czy plik %1\$s jest czytelny."; $a->strings["The logfile '%s' is not writable. No logging possible"] = "Plik dziennika '%s' nie jest zapisywalny. Brak możliwości logowania"; -$a->strings["Log settings updated."] = "Zaktualizowano ustawienia logów."; $a->strings["PHP log currently enabled."] = "Dziennik PHP jest obecnie włączony."; $a->strings["PHP log currently disabled."] = "Dziennik PHP jest obecnie wyłączony."; -$a->strings["Logs"] = "Logi"; $a->strings["Clear"] = "Wyczyść"; $a->strings["Enable Debugging"] = "Włącz debugowanie"; $a->strings["Log file"] = "Plik logów"; @@ -1276,20 +1587,9 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Poziom logów"; $a->strings["PHP logging"] = "Logowanie w PHP"; $a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Aby tymczasowo włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dołączyć do pliku index.php swojej instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć."; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Błąd podczas próby otwarcia %1\$s pliku dziennika. \\r\\n
Sprawdź, czy plik %1\$s istnieje i czy można go odczytać."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Nie można otworzyć %1\$spliku dziennika. \\r\\n
Sprawdź, czy plik %1\$s jest czytelny."; -$a->strings["View Logs"] = "Zobacz rejestry"; -$a->strings["Inspect Deferred Worker Queue"] = "Sprawdź kolejkę odroczonych pracowników"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Ta strona zawiera listę zadań opóźnionych pracowników. Są to zadania, które nie mogą być wykonywane po raz pierwszy."; -$a->strings["Inspect Worker Queue"] = "Sprawdź Kolejkę Pracowników"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Ta strona zawiera listę aktualnie ustawionych zadań dla pracowników. Te zadania są obsługiwane przez cronjob pracownika, który skonfigurowałeś podczas instalacji."; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = "Parametry zadania"; -$a->strings["Created"] = "Utwórz"; -$a->strings["Priority"] = "Priorytet"; $a->strings["Can not parse base url. Must have at least ://"] = "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej : //"; +$a->strings["Relocation started. Could take a while to complete."] = ""; $a->strings["Invalid storage backend setting value."] = "Nieprawidłowa wartość ustawienia magazynu pamięci."; -$a->strings["Site settings updated."] = "Zaktualizowano ustawienia strony."; $a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; $a->strings["%s - (Experimental)"] = "%s- (Eksperymentalne)"; $a->strings["No community page for local users"] = "Brak strony społeczności dla użytkowników lokalnych"; @@ -1297,31 +1597,18 @@ $a->strings["No community page"] = "Brak strony społeczności"; $a->strings["Public postings from users of this site"] = "Publikacje publiczne od użytkowników tej strony"; $a->strings["Public postings from the federated network"] = "Publikacje wpisy ze sfederowanej sieci"; $a->strings["Public postings from local users and the federated network"] = "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej"; -$a->strings["Disabled"] = "Wyłączony"; -$a->strings["Users"] = "Użytkownicy"; -$a->strings["Users, Global Contacts"] = "Użytkownicy, kontakty globalne"; -$a->strings["Users, Global Contacts/fallback"] = "Użytkownicy, kontakty globalne/awaryjne"; -$a->strings["One month"] = "Miesiąc"; -$a->strings["Three months"] = "Trzy miesiące"; -$a->strings["Half a year"] = "Pół roku"; -$a->strings["One year"] = "Rok"; $a->strings["Multi user instance"] = "Tryb wielu użytkowników"; $a->strings["Closed"] = "Zamknięte"; $a->strings["Requires approval"] = "Wymaga zatwierdzenia"; $a->strings["Open"] = "Otwarta"; -$a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL, linki będą śledzić stan SSL"; -$a->strings["Force all links to use SSL"] = "Wymuś używanie SSL na wszystkich odnośnikach"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty, użyj SSL tylko dla linków lokalnych . "; $a->strings["Don't check"] = "Nie sprawdzaj"; $a->strings["check the stable version"] = "sprawdź wersję stabilną"; $a->strings["check the development version"] = "sprawdź wersję rozwojową"; $a->strings["none"] = "brak"; -$a->strings["Direct contacts"] = "Bezpośrednie kontakty"; -$a->strings["Contacts of contacts"] = ""; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; $a->strings["Database (legacy)"] = "Baza danych (legacy)"; -$a->strings["Site"] = "Strona"; $a->strings["Republish users to directory"] = "Ponownie opublikuj użytkowników w katalogu"; -$a->strings["Registration"] = "Rejestracja"; $a->strings["File upload"] = "Przesyłanie plików"; $a->strings["Policies"] = "Zasady"; $a->strings["Auto Discovered Contact Directory"] = "Katalog kontaktów automatycznie odkrytych"; @@ -1346,8 +1633,6 @@ $a->strings["System theme"] = "Motyw systemowy"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = "Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu"; $a->strings["Mobile system theme"] = "Motyw systemu mobilnego"; $a->strings["Theme for mobile devices"] = "Motyw na urządzenia mobilne"; -$a->strings["SSL link policy"] = "Polityka odnośników SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Określa, czy generowane odnośniki będą obowiązkowo używały SSL"; $a->strings["Force SSL"] = "Wymuś SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli."; $a->strings["Hide help entry from navigation menu"] = "Ukryj pomoc w menu nawigacyjnym"; @@ -1428,20 +1713,19 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maksymalne obciążenie średn $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50."; $a->strings["Minimal Memory"] = "Minimalna pamięć"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)."; -$a->strings["Maximum table size for optimization"] = "Maksymalny rozmiar stołu do optymalizacji"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maksymalny rozmiar tablicy (w MB) do automatycznej optymalizacji. Wprowadź -1, aby go wyłączyć."; -$a->strings["Minimum level of fragmentation"] = "Minimalny poziom fragmentacji"; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%."; -$a->strings["Periodical check of global contacts"] = "Okresowa kontrola kontaktów globalnych"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Jeśli jest włączona, kontakty globalne są okresowo sprawdzane pod kątem brakujących lub nieaktualnych danych oraz żywotności kontaktów i serwerów."; -$a->strings["Discover followers/followings from global contacts"] = "Odkryj obserwujących/obserwujących z kontaktów globalnych"; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = "Jeśli ta opcja jest włączona, globalne kontakty są sprawdzane pod kątem nowych kontaktów wśród ich obserwujących i następujących kontaktów. Ta opcja stworzy ogromną liczbę zadań, więc powinna być aktywowana tylko na potężnych maszynach."; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Dni między żądaniem"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów."; $a->strings["Discover contacts from other servers"] = "Odkryj kontakty z innych serwerów"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = "Okresowo sprawdzaj kontakty z innymi serwerami. Możesz wybrać „Użytkownicy”: użytkownicy systemu zdalnego, „Kontakty globalne”: aktywne kontakty znane w systemie. Rozwiązanie awaryjne jest przeznaczone dla serwerów Redmatrix i starszych serwerów friendica, gdzie globalne kontakty nie były dostępne. Powrót awaryjny zwiększa obciążenie serwera, więc zalecane ustawienie to „Użytkownicy, kontakty globalne”."; -$a->strings["Timeframe for fetching global contacts"] = "Czas pobierania globalnych kontaktów"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Po aktywowaniu wykrywania ta wartość określa czas działania globalnych kontaktów pobieranych z innych serwerów."; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Wyszukaj w lokalnym katalogu"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane."; $a->strings["Publish server information"] = "Publikuj informacje o serwerze"; @@ -1464,6 +1748,8 @@ $a->strings["Cache duration in seconds"] = "Czas trwania w sekundach"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1."; $a->strings["Maximum numbers of comments per post"] = "Maksymalna liczba komentarzy na post"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100."; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Ścieżka do Temp"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę."; $a->strings["Disable picture proxy"] = "Wyłącz obraz proxy"; @@ -1498,8 +1784,10 @@ $a->strings["Comma separated list of tags for the \"tags\" subscription."] = "Ro $a->strings["Allow user tags"] = "Pozwól na tagi użytkowników"; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = "Jeśli ta opcja jest włączona, tagi z zapisanych wyszukiwań będą używane jako subskrypcja „tagów” jako uzupełnienie do \"relay_server_tags\"."; $a->strings["Start Relocation"] = "Rozpocznij przenoszenie"; +$a->strings["Template engine (%s) error: %s"] = ""; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
"; $a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1\$s wyższa wersja to %2\$s"; $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić."; $a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)."; @@ -1521,23 +1809,10 @@ $a->strings["Blog Account"] = "Konto Bloga"; $a->strings["Private Forum Account"] = "Prywatne konto na forum"; $a->strings["Message queues"] = "Wiadomości"; $a->strings["Server Settings"] = "Ustawienia serwera"; -$a->strings["Summary"] = "Podsumowanie"; $a->strings["Registered users"] = "Zarejestrowani użytkownicy"; $a->strings["Pending registrations"] = "Oczekujące rejestracje"; $a->strings["Version"] = "Wersja"; $a->strings["Active addons"] = "Aktywne dodatki"; -$a->strings["Theme settings updated."] = "Zaktualizowano ustawienia motywów."; -$a->strings["Theme %s disabled."] = "Motyw %s wyłączony."; -$a->strings["Theme %s successfully enabled."] = "Motyw %s został pomyślnie włączony."; -$a->strings["Theme %s failed to install."] = "Nie udało się zainstalować motywu %s."; -$a->strings["Screenshot"] = "Zrzut ekranu"; -$a->strings["Themes"] = "Wygląd"; -$a->strings["Unknown theme."] = "Nieznany motyw."; -$a->strings["Reload active themes"] = "Przeładuj aktywne motywy"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1\$s"; -$a->strings["[Experimental]"] = "[Eksperymentalne]"; -$a->strings["[Unsupported]"] = "[Niewspieralne]"; -$a->strings["The Terms of Service settings have been updated."] = "Ustawienia Warunków korzystania z usługi zostały zaktualizowane."; $a->strings["Display Terms of Service"] = "Wyświetl Warunki korzystania z usługi"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi."; $a->strings["Display Privacy Statement"] = "Wyświetl oświadczenie o prywatności"; @@ -1545,104 +1820,133 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Podgląd oświadczenia o prywatności"; $a->strings["The Terms of Service"] = "Warunki świadczenia usług"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej."; -$a->strings["%s user blocked"] = [ - 0 => "%s użytkownik zablokowany", - 1 => "%s użytkowników zablokowanych", - 2 => "%s użytkowników zablokowanych", - 3 => "%s użytkownicy zablokowani", +$a->strings["Server domain pattern added to blocklist."] = "Wzorzec domeny serwera dodano do listy bloków."; +$a->strings["Blocked server domain pattern"] = "Zablokowany wzorzec domeny serwera"; +$a->strings["Reason for the block"] = "Powód blokowania"; +$a->strings["Delete server domain pattern"] = "Usuń wzorzec domeny serwera"; +$a->strings["Check to delete this entry from the blocklist"] = "Zaznacz, aby usunąć ten wpis z listy bloków"; +$a->strings["Server Domain Pattern Blocklist"] = "Lista bloków wzorców domen serwerów"; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; +$a->strings["Add new entry to block list"] = "Dodaj nowy wpis do listy bloków"; +$a->strings["Server Domain Pattern"] = "Wzorzec domeny serwera"; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "Wzorzec domeny nowego serwera do dodania do listy bloków. Nie dołączaj protokołu."; +$a->strings["Block reason"] = "Powód zablokowania"; +$a->strings["The reason why you blocked this server domain pattern."] = "Powód zablokowania wzorca domeny serwera."; +$a->strings["Add Entry"] = "Dodaj wpis"; +$a->strings["Save changes to the blocklist"] = "Zapisz zmiany w liście zablokowanych"; +$a->strings["Current Entries in the Blocklist"] = "Aktualne wpisy na liście zablokowanych"; +$a->strings["Delete entry from blocklist"] = "Usuń wpis z listy zablokowanych"; +$a->strings["Delete entry from blocklist?"] = "Usunąć wpis z listy zablokowanych?"; +$a->strings["%s contact unblocked"] = [ + 0 => "%s kontakt odblokowany", + 1 => "%s kontakty odblokowane", + 2 => "%s kontaktów odblokowanych", + 3 => "%s kontaktów odblokowanych", ]; -$a->strings["%s user unblocked"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", +$a->strings["Remote Contact Blocklist"] = "Lista zablokowanych kontaktów zdalnych"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego."; +$a->strings["Block Remote Contact"] = "Zablokuj kontakt zdalny"; +$a->strings["select none"] = "wybierz brak"; +$a->strings["No remote contact is blocked from this node."] = "Z tego węzła nie jest blokowany kontakt zdalny."; +$a->strings["Blocked Remote Contacts"] = "Zablokowane kontakty zdalne"; +$a->strings["Block New Remote Contact"] = "Zablokuj nowy kontakt zdalny"; +$a->strings["Photo"] = "Zdjęcie"; +$a->strings["Reason"] = ""; +$a->strings["%s total blocked contact"] = [ + 0 => "łącznie %s zablokowany kontakt", + 1 => "łącznie %s zablokowane kontakty", + 2 => "łącznie %s zablokowanych kontaktów", + 3 => "%s całkowicie zablokowane kontakty", ]; -$a->strings["You can't remove yourself"] = "Nie możesz usunąć siebie"; -$a->strings["%s user deleted"] = [ - 0 => "usunięto %s użytkownika", - 1 => "usunięto %s użytkowników", - 2 => "usunięto %s użytkowników", - 3 => "%s usuniętych użytkowników", -]; -$a->strings["%s user approved"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["%s registration revoked"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["User \"%s\" deleted"] = "Użytkownik \"%s\" usunięty"; -$a->strings["User \"%s\" blocked"] = "Użytkownik \"%s\" zablokowany"; -$a->strings["User \"%s\" unblocked"] = "Użytkownik \"%s\" odblokowany"; -$a->strings["Account approved."] = "Konto zatwierdzone."; -$a->strings["Registration revoked"] = "Rejestracja odwołana"; -$a->strings["Private Forum"] = "Prywatne forum"; -$a->strings["Relay"] = ""; -$a->strings["Register date"] = "Data rejestracji"; -$a->strings["Last login"] = "Ostatnie logowanie"; -$a->strings["Last public item"] = ""; -$a->strings["Type"] = "Typu"; -$a->strings["Add User"] = "Dodaj użytkownika"; -$a->strings["User registrations waiting for confirm"] = "Zarejestrowani użytkownicy czekający na potwierdzenie"; -$a->strings["User waiting for permanent deletion"] = "Użytkownik czekający na trwałe usunięcie"; -$a->strings["Request date"] = "Data prośby"; -$a->strings["No registrations."] = "Brak rejestracji."; -$a->strings["Note from the user"] = "Uwaga od użytkownika"; -$a->strings["Deny"] = "Odmów"; -$a->strings["User blocked"] = "Użytkownik zablokowany"; -$a->strings["Site admin"] = "Administracja stroną"; -$a->strings["Account expired"] = "Konto wygasło"; -$a->strings["New User"] = "Nowy użytkownik"; -$a->strings["Permanent deletion"] = "Trwałe usunięcie"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?"; -$a->strings["Name of the new user."] = "Nazwa nowego użytkownika."; -$a->strings["Nickname"] = "Pseudonim"; -$a->strings["Nickname of the new user."] = "Pseudonim nowego użytkownika."; -$a->strings["Email address of the new user."] = "Adres email nowego użytkownika."; -$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia."; -$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; -$a->strings["Applications"] = "Aplikacje"; +$a->strings["URL of the remote contact to block."] = "Adres URL kontaktu zdalnego do zablokowania."; +$a->strings["Block Reason"] = ""; +$a->strings["Item Guid"] = "Element Guid"; +$a->strings["Item marked for deletion."] = "Przedmiot oznaczony do usunięcia."; +$a->strings["Delete this Item"] = "Usuń ten przedmiot"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "Identyfikator elementu GUID, który chcesz usunąć."; +$a->strings["Addon not found."] = "Nie znaleziono dodatku."; +$a->strings["Addon %s disabled."] = "Dodatek %s wyłączony."; +$a->strings["Addon %s enabled."] = "Dodatek %s włączony."; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = "Instalacja dodatku %s nie powiodła się."; +$a->strings["Reload active addons"] = "Załaduj ponownie aktywne dodatki"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1\$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2\$s"; +$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; +$a->strings["Find on this site"] = "Znajdź na tej stronie"; +$a->strings["Results for:"] = "Wyniki dla:"; +$a->strings["Site Directory"] = "Katalog Witryny"; $a->strings["Item was not found."] = "Element nie znaleziony."; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = "Konto podrzędne nie może uzyskać dostępu do stron administracyjnych. Zaloguj się ponownie jako konto główne."; -$a->strings["Overview"] = "Przegląd"; -$a->strings["Configuration"] = "Konfiguracja"; -$a->strings["Additional features"] = "Dodatkowe funkcje"; -$a->strings["Database"] = "Baza danych"; -$a->strings["DB updates"] = "Aktualizacje DB"; -$a->strings["Inspect Deferred Workers"] = "Sprawdź Odroczonych Pracowników"; -$a->strings["Inspect worker Queue"] = "Sprawdź kolejkę pracowników"; -$a->strings["Tools"] = "Narzędzia"; -$a->strings["Contact Blocklist"] = "Lista zablokowanych kontaktów"; -$a->strings["Server Blocklist"] = "Lista zablokowanych serwerów"; -$a->strings["Diagnostics"] = "Diagnostyka"; -$a->strings["PHP Info"] = "Informacje o PHP"; -$a->strings["probe address"] = "adres sondy"; -$a->strings["check webfinger"] = "sprawdź webfinger"; -$a->strings["Item Source"] = "Źródło elementu"; -$a->strings["Babel"] = ""; -$a->strings["Addon Features"] = "Funkcje dodatkowe"; -$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkowników czekające na potwierdzenie"; -$a->strings["Profile Details"] = "Szczegóły profilu"; +$a->strings["Please enter a post body."] = "Wpisz treść postu."; +$a->strings["This feature is only available with the frio theme."] = "Ta funkcja jest dostępna tylko z motywem Frio."; +$a->strings["Compose new personal note"] = "Utwórz nową notatkę osobistą"; +$a->strings["Compose new post"] = "Utwórz nowy post"; +$a->strings["Visibility"] = "Widoczność"; +$a->strings["Clear the location"] = "Wyczyść lokalizację"; +$a->strings["Location services are unavailable on your device"] = "Usługi lokalizacyjne są niedostępne na twoim urządzeniu"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu"; +$a->strings["Installed addons/apps:"] = "Zainstalowane dodatki/aplikacje:"; +$a->strings["No installed addons/apps"] = "Brak zainstalowanych dodatków/aplikacji"; +$a->strings["Read about the Terms of Service of this node."] = "Przeczytaj o Warunkach świadczenia usług tego węzła."; +$a->strings["On this server the following remote servers are blocked."] = "Na tym serwerze następujące serwery zdalne są blokowane."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s."; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Raporty o błędach i problemy: odwiedź stronę"; +$a->strings["the bugtracker at github"] = "śledzenie błędów na github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”"; $a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; $a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; -$a->strings["People Search - %s"] = "Szukaj osób - %s"; -$a->strings["Forum Search - %s"] = "Przeszukiwanie forum - %s"; +$a->strings["The Photo with id %s is not available."] = ""; +$a->strings["Invalid photo with id %s."] = "Nieprawidłowe zdjęcie z identyfikatorem %s."; +$a->strings["The provided profile link doesn't seem to be valid"] = "Podany link profilu wydaje się być nieprawidłowy"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; $a->strings["Account"] = "Konto"; -$a->strings["Two-factor authentication"] = "Uwierzytelnianie dwuskładnikowe"; $a->strings["Display"] = "Wygląd"; $a->strings["Manage Accounts"] = "Zarządzanie kontami"; $a->strings["Connected apps"] = "Powiązane aplikacje"; $a->strings["Export personal data"] = "Eksportuj dane osobiste"; $a->strings["Remove account"] = "Usuń konto"; -$a->strings["This page is missing a url parameter."] = "Na tej stronie brakuje parametru url."; -$a->strings["The post was created"] = "Post został utworzony"; -$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane."; +$a->strings["Could not create group."] = "Nie można utworzyć grupy."; +$a->strings["Group not found."] = "Nie znaleziono grupy."; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = "Nieznana grupa."; +$a->strings["Contact is deleted."] = "Kontakt został usunięty."; +$a->strings["Unable to add the contact to the group."] = "Nie można dodać kontaktu do grupy."; +$a->strings["Contact successfully added to group."] = "Kontakt został pomyślnie dodany do grupy."; +$a->strings["Unable to remove the contact from the group."] = "Nie można usunąć kontaktu z grupy."; +$a->strings["Contact successfully removed from group."] = "Kontakt został pomyślnie usunięty z grupy."; +$a->strings["Unknown group command."] = "Nieznane polecenie grupy."; +$a->strings["Bad request."] = "Błędne żądanie."; +$a->strings["Save Group"] = "Zapisz grupę"; +$a->strings["Filter"] = "Filtr"; +$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; +$a->strings["Group Name: "] = "Nazwa grupy: "; +$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; +$a->strings["Unable to remove group."] = "Nie można usunąć grupy."; +$a->strings["Delete Group"] = "Usuń grupę"; +$a->strings["Edit Group Name"] = "Edytuj nazwę grupy"; +$a->strings["Members"] = "Członkowie"; +$a->strings["Remove contact from group"] = "Usuń kontakt z grupy"; +$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; +$a->strings["Add contact to group"] = "Dodaj kontakt do grupy"; +$a->strings["Only logged in users are permitted to perform a search."] = "Tylko zalogowani użytkownicy mogą wyszukiwać."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."; +$a->strings["Search"] = "Szukaj"; +$a->strings["Items tagged with: %s"] = "Przedmioty oznaczone tagiem: %s"; +$a->strings["You must be logged in to use this module."] = "Musisz być zalogowany, aby korzystać z tego modułu."; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = "Wyszukiwane hasło jest już zapisane."; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "Brak profilu"; +$a->strings["Error while sending poke, please retry."] = ""; +$a->strings["Poke/Prod"] = "Zaczepić"; +$a->strings["poke, prod or do other things to somebody"] = "szturchać, zaczepić lub robić inne rzeczy"; +$a->strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić"; +$a->strings["Make this post private"] = "Ustaw ten post jako prywatny"; $a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu."; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."; @@ -1650,7 +1954,6 @@ $a->strings["No mirroring"] = "Bez dublowania"; $a->strings["Mirror as forwarded posting"] = "Przesłany lustrzany post"; $a->strings["Mirror as my own posting"] = "Lustro mojego własnego komentarza"; $a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; -$a->strings["Refetch contact data"] = "Odśwież dane kontaktowe"; $a->strings["Remote Self"] = "Zdalny Self"; $a->strings["Mirror postings from this contact"] = "Publikacje lustrzane od tego kontaktu"; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."; @@ -1663,431 +1966,9 @@ $a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość"; $a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL"; $a->strings["Poll/Feed URL"] = "Adres Ankiety/RSS"; $a->strings["New photo from this URL"] = "Nowe zdjęcie z tego adresu URL"; -$a->strings["%d contact edited."] = [ - 0 => "Zedytowano %d kontakt.", - 1 => "Zedytowano %d kontakty.", - 2 => "Zedytowano %d kontaktów.", - 3 => "%dedytuj kontakty.", -]; -$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; -$a->strings["Contact updated."] = "Zaktualizowano kontakt."; -$a->strings["Contact not found"] = "Nie znaleziono kontaktu"; -$a->strings["Contact has been blocked"] = "Kontakt został zablokowany"; -$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany"; -$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; -$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; -$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; -$a->strings["Contact has been unarchived"] = "Kontakt został przywrócony"; -$a->strings["Drop contact"] = "Usuń kontakt"; -$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; -$a->strings["Contact has been removed."] = "Kontakt został usunięty."; -$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; -$a->strings["You are sharing with %s"] = "Współdzielisz z %s"; -$a->strings["%s is sharing with you"] = "%s współdzieli z tobą"; -$a->strings["Private communications are not available for this contact."] = "Nie można nawiązać prywatnej rozmowy z tym kontaktem."; -$a->strings["Never"] = "Nigdy"; -$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)"; -$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; -$a->strings["Suggest friends"] = "Osoby, które możesz znać"; -$a->strings["Network type: %s"] = "Typ sieci: %s"; -$a->strings["Communications lost with this contact!"] = "Utracono komunikację z tym kontaktem!"; -$a->strings["Fetch further information for feeds"] = "Pobierz dalsze informacje dla kanałów"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."; -$a->strings["Fetch information"] = "Pobierz informacje"; -$a->strings["Fetch keywords"] = "Pobierz słowa kluczowe"; -$a->strings["Fetch information and keywords"] = "Pobierz informacje i słowa kluczowe"; -$a->strings["Contact Information / Notes"] = "Informacje kontaktowe/Notatki"; -$a->strings["Contact Settings"] = "Ustawienia kontaktów"; -$a->strings["Contact"] = "Kontakt"; -$a->strings["Their personal note"] = "Ich osobista uwaga"; -$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; -$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; -$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; -$a->strings["Ignore contact"] = "Ignoruj kontakt"; -$a->strings["View conversations"] = "Wyświetl rozmowy"; -$a->strings["Last update:"] = "Ostatnia aktualizacja:"; -$a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; -$a->strings["Update now"] = "Aktualizuj teraz"; -$a->strings["Unignore"] = "Odblokuj"; -$a->strings["Currently blocked"] = "Obecnie zablokowany"; -$a->strings["Currently ignored"] = "Obecnie zignorowany"; -$a->strings["Currently archived"] = "Obecnie zarchiwizowany"; -$a->strings["Awaiting connection acknowledge"] = "Oczekiwanie na potwierdzenie połączenia"; -$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; -$a->strings["Notification for new posts"] = "Powiadomienie o nowych postach"; -$a->strings["Send a notification of every new post of this contact"] = "Wyślij powiadomienie o każdym nowym poście tego kontaktu"; -$a->strings["Blacklisted keywords"] = "Słowa kluczowe na czarnej liście"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"; -$a->strings["Actions"] = "Akcja"; -$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; -$a->strings["Pending"] = "Oczekujące"; -$a->strings["Only show pending contacts"] = "Pokaż tylko oczekujące kontakty"; -$a->strings["Blocked"] = "Zablokowane"; -$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty"; -$a->strings["Ignored"] = "Ignorowane"; -$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty"; -$a->strings["Archived"] = "Zarchiwizowane"; -$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; -$a->strings["Hidden"] = "Ukryte"; -$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; -$a->strings["Organize your contact groups"] = "Uporządkuj swoje grupy kontaktów"; -$a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; -$a->strings["Results for: %s"] = "Wyniki dla: %s"; -$a->strings["Archive"] = "Archiwum"; -$a->strings["Unarchive"] = "Przywróć z archiwum"; -$a->strings["Batch Actions"] = "Akcje wsadowe"; -$a->strings["Conversations started by this contact"] = "Rozmowy rozpoczęły się od tego kontaktu"; -$a->strings["Posts and Comments"] = "Posty i komentarze"; -$a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; -$a->strings["View all common friends"] = "Zobacz wszystkich popularnych znajomych"; -$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; -$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; -$a->strings["is a fan of yours"] = "jest twoim fanem"; -$a->strings["you are a fan of"] = "jesteś fanem"; -$a->strings["Pending outgoing contact request"] = "Oczekujące żądanie kontaktu wychodzącego"; -$a->strings["Pending incoming contact request"] = "Oczekujące żądanie kontaktu przychodzącego"; -$a->strings["Edit contact"] = "Edytuj kontakt"; -$a->strings["Toggle Blocked status"] = "Przełącz status na Zablokowany"; -$a->strings["Toggle Ignored status"] = "Przełącz status na Ignorowany"; -$a->strings["Toggle Archive status"] = "Przełącz status na Archiwalny"; -$a->strings["Delete contact"] = "Usuń kontakt"; -$a->strings["Local Community"] = "Lokalna społeczność"; -$a->strings["Posts from local users on this server"] = "Wpisy od lokalnych użytkowników na tym serwerze"; -$a->strings["Global Community"] = "Globalna społeczność"; -$a->strings["Posts from users of the whole federated network"] = "Wpisy od użytkowników całej sieci stowarzyszonej"; -$a->strings["No results."] = "Brak wyników."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."; -$a->strings["Community option not available."] = "Opcja wspólnotowa jest niedostępna."; -$a->strings["Not available."] = "Niedostępne."; -$a->strings["Credits"] = "Zaufany"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"; -$a->strings["Source input"] = "Źródło wejściowe"; -$a->strings["BBCode::toPlaintext"] = "BBCode::na prosty tekst"; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode:: konwersjia (raw HTML)"; -$a->strings["BBCode::convert"] = "BBCode::przekształć"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::przekształć => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::przekształć"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"; -$a->strings["Item Body"] = "Element Body"; -$a->strings["Item Tags"] = "Element Tagów"; -$a->strings["Source input (Diaspora format)"] = "Źródło wejściowe (format Diaspora)"; -$a->strings["Source input (Markdown)"] = ""; -$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (raw HTML)"; -$a->strings["Markdown::convert"] = "Markdown::convert"; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Surowe wejście HTML"; -$a->strings["HTML Input"] = "Wejście HTML"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (raw HTML)"; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; -$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["HTML::toPlaintext (compact)"] = ""; -$a->strings["Source text"] = "Tekst źródłowy"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["You must be logged in to use this module"] = "Musisz być zalogowany, aby korzystać z tego modułu"; -$a->strings["Source URL"] = "Źródłowy adres URL"; -$a->strings["Time Conversion"] = "Zmiana czasu"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."; -$a->strings["UTC time: %s"] = "Czas UTC %s"; -$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; -$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; -$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."; -$a->strings["Lookup address"] = "Wyszukaj adres"; -$a->strings["Manage Identities and/or Pages"] = "Zarządzaj tożsamościami i/lub stronami"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\""; -$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania: "; -$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; -$a->strings["Find on this site"] = "Znajdź na tej stronie"; -$a->strings["Results for:"] = "Wyniki dla:"; -$a->strings["Site Directory"] = "Katalog Witryny"; -$a->strings["Filetag %s saved to item"] = ""; -$a->strings["- select -"] = "- wybierz -"; -$a->strings["Installed addons/apps:"] = "Zainstalowane dodatki/aplikacje:"; -$a->strings["No installed addons/apps"] = "Brak zainstalowanych dodatków/aplikacji"; -$a->strings["Read about the Terms of Service of this node."] = "Przeczytaj o Warunkach świadczenia usług tego węzła."; -$a->strings["On this server the following remote servers are blocked."] = "Na tym serwerze następujące serwery zdalne są blokowane."; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s."; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Raporty o błędach i problemy: odwiedź stronę"; -$a->strings["the bugtracker at github"] = "śledzenie błędów na github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”"; -$a->strings["Suggested contact not found."] = "Nie znaleziono sugerowanego kontaktu."; -$a->strings["Friend suggestion sent."] = "Wysłana propozycja dodania do znajomych."; -$a->strings["Suggest Friends"] = "Zaproponuj znajomych"; -$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; -$a->strings["Group created."] = "Grupa utworzona."; -$a->strings["Could not create group."] = "Nie można utworzyć grupy."; -$a->strings["Group not found."] = "Nie znaleziono grupy."; -$a->strings["Group name changed."] = "Zmieniono nazwę grupy."; -$a->strings["Unknown group."] = "Nieznana grupa."; -$a->strings["Contact is deleted."] = "Kontakt został usunięty."; -$a->strings["Unable to add the contact to the group."] = "Nie można dodać kontaktu do grupy."; -$a->strings["Contact successfully added to group."] = "Kontakt został pomyślnie dodany do grupy."; -$a->strings["Unable to remove the contact from the group."] = "Nie można usunąć kontaktu z grupy."; -$a->strings["Contact successfully removed from group."] = "Kontakt został pomyślnie usunięty z grupy."; -$a->strings["Unknown group command."] = "Nieznane polecenie grupy."; -$a->strings["Bad request."] = "Błędne żądanie."; -$a->strings["Save Group"] = "Zapisz grupę"; -$a->strings["Filter"] = "Filtr"; -$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; -$a->strings["Group removed."] = "Grupa usunięta."; -$a->strings["Unable to remove group."] = "Nie można usunąć grupy."; -$a->strings["Delete Group"] = "Usuń grupę"; -$a->strings["Edit Group Name"] = "Edytuj nazwę grupy"; -$a->strings["Members"] = "Członkowie"; -$a->strings["Remove contact from group"] = "Usuń kontakt z grupy"; -$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; -$a->strings["Add contact to group"] = "Dodaj kontakt do grupy"; -$a->strings["Help:"] = "Pomoc:"; -$a->strings["Welcome to %s"] = "Witamy w %s"; -$a->strings["No profile"] = "Brak profilu"; -$a->strings["Method Not Allowed."] = ""; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Instalator"; -$a->strings["System check"] = "Sprawdzanie systemu"; -$a->strings["Check again"] = "Sprawdź ponownie"; -$a->strings["Base settings"] = "Ustawienia bazy"; -$a->strings["Host name"] = "Nazwa hosta"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Nadpisz to pole w przypadku, gdy określona nazwa hosta nie jest prawidłowa, a pozostałe pozostaw to bez zmian."; -$a->strings["Base path to installation"] = "Podstawowa ścieżka do instalacji"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota."; -$a->strings["Sub path of the URL"] = "Ścieżka podrzędna adresu URL"; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Nadpisz to pole w przypadku, gdy określenie ścieżki podrzędnej nie jest prawidłowe, w przeciwnym razie pozostaw je bez zmian. Pozostawienie tego pola pustego oznacza, że ​​instalacja odbywa się pod podstawowym adresem URL bez podścieżki."; -$a->strings["Database connection"] = "Połączenie z bazą danych"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."; -$a->strings["Database Server Name"] = "Nazwa serwera bazy danych"; -$a->strings["Database Login Name"] = "Nazwa użytkownika bazy danych"; -$a->strings["Database Login Password"] = "Hasło logowania do bazy danych"; -$a->strings["For security reasons the password must not be empty"] = "Ze względów bezpieczeństwa hasło nie może być puste"; -$a->strings["Database Name"] = "Nazwa bazy danych"; -$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony"; -$a->strings["Site settings"] = "Ustawienia strony"; -$a->strings["Site administrator email address"] = "Adres e-mail administratora strony"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."; -$a->strings["System Language:"] = "Język systemu:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."; -$a->strings["Your Friendica site database has been installed."] = "Twoja baza danych witryny Friendica została zainstalowana."; -$a->strings["Installation finished"] = "Instalacja zakończona"; -$a->strings["

What next

"] = "

Co dalej

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny."; -$a->strings["Total invitation limit exceeded."] = "Przekroczono limit zaproszeń ogółem."; -$a->strings["%s : Not a valid email address."] = "%s : Nieprawidłowy adres e-mail."; -$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."; -$a->strings["%s : Message delivery failed."] = "%s : Nie udało się dostarczyć wiadomości."; -$a->strings["%d message sent."] = [ - 0 => "%d wiadomość wysłana.", - 1 => "%d wiadomości wysłane.", - 2 => "%d wysłano .", - 3 => "%d wiadomość wysłano.", -]; -$a->strings["You have no more invitations available"] = "Nie masz już dostępnych zaproszeń"; -$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."] = "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej 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."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków."; -$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."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi."; -$a->strings["To accept this invitation, please visit and register at %s."] = "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s."; -$a->strings["Send invitations"] = "Wyślij zaproszenie"; -$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w wierszu:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Musisz podać ten kod zaproszenia: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca"; -$a->strings["Please enter a post body."] = "Wpisz treść postu."; -$a->strings["This feature is only available with the frio theme."] = "Ta funkcja jest dostępna tylko z motywem Frio."; -$a->strings["Compose new personal note"] = "Utwórz nową notatkę osobistą"; -$a->strings["Compose new post"] = "Utwórz nowy post"; -$a->strings["Visibility"] = "Widoczność"; -$a->strings["Clear the location"] = "Wyczyść lokalizację"; -$a->strings["Location services are unavailable on your device"] = "Usługi lokalizacyjne są niedostępne na twoim urządzeniu"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu"; -$a->strings["System down for maintenance"] = "System wyłączony w celu konserwacji"; -$a->strings["A Decentralized Social Network"] = ""; -$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; -$a->strings["Hide Ignored Requests"] = "Ukryj zignorowane prośby"; -$a->strings["Notification type:"] = "Typ powiadomienia:"; -$a->strings["Suggested by:"] = "Sugerowany przez:"; -$a->strings["Claims to be known to you: "] = "Twierdzi, że go/ją znasz: "; -$a->strings["Shall your connection be bidirectional or not?"] = "Czy twoje połączenie ma być dwukierunkowe, czy nie?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."; -$a->strings["Friend"] = "Znajomy"; -$a->strings["Subscriber"] = "Subskrybent"; -$a->strings["No introductions."] = "Brak dostępu."; -$a->strings["No more %s notifications."] = "Brak kolejnych %s powiadomień."; -$a->strings["You must be logged in to show this page."] = ""; -$a->strings["Network Notifications"] = "Powiadomienia sieciowe"; -$a->strings["System Notifications"] = "Powiadomienia systemowe"; -$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; -$a->strings["Home Notifications"] = "Powiadomienia domowe"; -$a->strings["Show unread"] = "Pokaż nieprzeczytane"; -$a->strings["Show all"] = "Pokaż wszystko"; -$a->strings["The Photo with id %s is not available."] = ""; -$a->strings["Invalid photo with id %s."] = "Nieprawidłowe zdjęcie z identyfikatorem %s."; -$a->strings["User not found."] = "Użytkownik nie znaleziony."; -$a->strings["No contacts."] = "Brak kontaktów."; -$a->strings["Follower (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Following (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Contact (%s)"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["All contacts"] = "Wszystkie kontakty"; -$a->strings["Member since:"] = "Członek od:"; -$a->strings["j F, Y"] = "d M, R"; -$a->strings["j F"] = "d M"; -$a->strings["Birthday:"] = "Urodziny:"; -$a->strings["Age: "] = "Wiek: "; -$a->strings["%d year old"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Forums:"] = "Fora:"; -$a->strings["View profile as:"] = "Wyświetl profil jako:"; -$a->strings["%s's timeline"] = "oś czasu %s"; -$a->strings["%s's posts"] = "wpisy %s"; -$a->strings["%s's comments"] = "komentarze %s"; -$a->strings["Only parent users can create additional accounts."] = "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając \"Register\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."; -$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie): "; -$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?"; -$a->strings["Note for the admin"] = "Uwaga dla administratora"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła"; -$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."; -$a->strings["Your invitation code: "] = "Twój kod zaproszenia: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Twoje imię i nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe): "; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)."; -$a->strings["Please repeat your e-mail address:"] = "Powtórz swój adres e-mail:"; -$a->strings["Leave empty for an auto generated password."] = "Pozostaw puste dla wygenerowanego automatycznie hasła."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to \"nickname@%s\"."; -$a->strings["Choose a nickname: "] = "Wybierz pseudonim: "; -$a->strings["Import your profile to this friendica instance"] = "Zaimportuj swój profil do tej instancji friendica"; -$a->strings["Note: This node explicitly contains adult content"] = "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych"; -$a->strings["Parent Password:"] = "Hasło nadrzędne:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."; -$a->strings["Password doesn't match."] = "Hasło nie jest zgodne."; -$a->strings["Please enter your password."] = "Wprowadź hasło."; -$a->strings["You have entered too much information."] = "Podałeś za dużo informacji."; -$a->strings["Please enter the identical mail address in the second field."] = "Wpisz identyczny adres e-mail w drugim polu."; -$a->strings["The additional account was created."] = "Dodatkowe konto zostało utworzone."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
login: %s
hasło: %s

Możesz zmienić swoje hasło po zalogowaniu."; -$a->strings["Registration successful."] = "Rejestracja udana."; -$a->strings["Your registration can not be processed."] = "Nie można przetworzyć Twojej rejestracji."; -$a->strings["You have to leave a request note for the admin."] = "Musisz zostawić notatkę z prośbą do administratora."; -$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."; -$a->strings["The provided profile link doesn't seem to be valid"] = "Podany link profilu wydaje się być nieprawidłowy"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; -$a->strings["You must be logged in to use this module."] = "Musisz być zalogowany, aby korzystać z tego modułu."; -$a->strings["Only logged in users are permitted to perform a search."] = "Tylko zalogowani użytkownicy mogą wyszukiwać."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."; -$a->strings["Items tagged with: %s"] = "Przedmioty oznaczone tagiem: %s"; -$a->strings["Search term successfully saved."] = "Wyszukiwane hasło zostało zapisane."; -$a->strings["Search term already saved."] = "Wyszukiwane hasło jest już zapisane."; -$a->strings["Search term successfully removed."] = "Wyszukiwane hasło zostało pomyślnie usunięte."; -$a->strings["Create a New Account"] = "Załóż nowe konto"; -$a->strings["Your OpenID: "] = ""; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta."; -$a->strings["Or login using OpenID: "] = "Lub zaloguj się za pośrednictwem OpenID: "; -$a->strings["Password: "] = "Hasło: "; -$a->strings["Remember me"] = "Zapamiętaj mnie"; -$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?"; -$a->strings["Website Terms of Service"] = "Warunki korzystania z witryny"; -$a->strings["terms of service"] = "warunki użytkowania"; -$a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny"; -$a->strings["privacy policy"] = "polityka prywatności"; -$a->strings["Logged out."] = "Wylogowano."; -$a->strings["OpenID protocol error. No ID returned"] = ""; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID."; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID."; -$a->strings["Remaining recovery codes: %d"] = "Pozostałe kody odzyskiwania: %d"; -$a->strings["Invalid code, please retry."] = "Nieprawidłowy kod, spróbuj ponownie."; -$a->strings["Two-factor recovery"] = "Odzyskiwanie dwuczynnikowe"; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.

"; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania "; -$a->strings["Please enter a recovery code"] = "Wprowadź kod odzyskiwania"; -$a->strings["Submit recovery code and complete login"] = "Prześlij kod odzyskiwania i pełne logowanie"; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.

"; -$a->strings["Please enter a code from your authentication app"] = "Wprowadź kod z aplikacji uwierzytelniającej"; -$a->strings["Verify code and complete login"] = "Zweryfikuj kod i zakończ logowanie"; -$a->strings["Delegation successfully granted."] = "Delegacja została pomyślnie przyznana."; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje."; -$a->strings["Delegation successfully revoked."] = "Delegacja została pomyślnie odwołana."; -$a->strings["Delegated administrators can view but not change delegation permissions."] = "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać."; -$a->strings["Delegate user not found."] = "Nie znaleziono delegowanego użytkownika."; -$a->strings["No parent user"] = "Brak nadrzędnego użytkownika"; -$a->strings["Parent User"] = "Użytkownik nadrzędny"; -$a->strings["Additional Accounts"] = "Dodatkowe konta"; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta."; -$a->strings["Register an additional account"] = "Zarejestruj dodatkowe konto"; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."; -$a->strings["Delegates"] = "Oddeleguj"; -$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."] = "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie."; -$a->strings["Existing Page Delegates"] = "Obecni delegaci stron"; -$a->strings["Potential Delegates"] = "Potencjalni delegaci"; -$a->strings["Add"] = "Dodaj"; -$a->strings["No entries."] = "Brak wpisów."; -$a->strings["The theme you chose isn't available."] = "Wybrany motyw jest niedostępny."; -$a->strings["%s - (Unsupported)"] = "%s - (Nieobsługiwane)"; -$a->strings["Display Settings"] = "Ustawienia wyglądu"; -$a->strings["General Theme Settings"] = "Ogólne ustawienia motywu"; -$a->strings["Custom Theme Settings"] = "Niestandardowe ustawienia motywów"; -$a->strings["Content Settings"] = "Ustawienia zawartości"; -$a->strings["Theme settings"] = "Ustawienia motywu"; -$a->strings["Calendar"] = "Kalendarz"; -$a->strings["Display Theme:"] = "Wyświetl motyw:"; -$a->strings["Mobile Theme:"] = "Motyw dla urządzeń mobilnych:"; -$a->strings["Number of items to display per page:"] = "Liczba elementów do wyświetlenia na stronie:"; -$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"; -$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."; -$a->strings["Automatic updates only at the top of the post stream pages"] = "Automatyczne aktualizacje tylko w górnej części stron strumienia postu"; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; -$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Zazwyczaj emotikony są zastępowane pasującymi symbolami. To ustawienie wyłącza to zachowanie."; -$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; -$a->strings["Automatic fetch new items when reaching the page end."] = "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony."; -$a->strings["Disable Smart Threading"] = "Wyłącz inteligentne wątki"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = ""; -$a->strings["Hide the Dislike feature"] = "Ukryj funkcję Nie lubię"; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; -$a->strings["Beginning of week:"] = "Początek tygodnia:"; +$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; +$a->strings["Applications"] = "Aplikacje"; $a->strings["Profile Name is required."] = "Nazwa profilu jest wymagana."; -$a->strings["Profile updated."] = "Profil zaktualizowany."; $a->strings["Profile couldn't be updated."] = "Profil nie mógł zostać zaktualizowany."; $a->strings["Label:"] = "Etykieta:"; $a->strings["Value:"] = "Wartość:"; @@ -2101,7 +1982,6 @@ $a->strings["Profile picture"] = "Zdjęcie profilowe"; $a->strings["Location"] = "Lokalizacja"; $a->strings["Miscellaneous"] = "Różny"; $a->strings["Custom Profile Fields"] = ""; -$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; $a->strings["Display name:"] = "Nazwa wyświetlana:"; $a->strings["Street Address:"] = "Ulica:"; $a->strings["Locality/City:"] = "Miasto:"; @@ -2125,7 +2005,6 @@ $a->strings["Crop Image"] = "Przytnij zdjęcie"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."; $a->strings["Use Image As Is"] = "Użyj obrazu takim, jaki jest"; $a->strings["Missing uploaded image."] = " Brak przesłanego obrazu."; -$a->strings["Image uploaded successfully."] = "Pomyślnie wysłano zdjęcie."; $a->strings["Profile Picture Settings"] = "Ustawienia zdjęcia profilowego"; $a->strings["Current Profile Picture"] = "Bieżące zdjęcie profilowe"; $a->strings["Upload Profile Picture"] = "Prześlij zdjęcie profilowe"; @@ -2133,23 +2012,23 @@ $a->strings["Upload Picture:"] = "Załaduj zdjęcie:"; $a->strings["or"] = "lub"; $a->strings["skip this step"] = "pomiń ten krok"; $a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu"; -$a->strings["Please enter your password to access this page."] = "Wprowadź hasło, aby uzyskać dostęp do tej strony."; -$a->strings["App-specific password generation failed: The description is empty."] = "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty."; -$a->strings["App-specific password generation failed: This description already exists."] = "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje."; -$a->strings["New app-specific password generated."] = "Nowe hasło specyficzne dla aplikacji."; -$a->strings["App-specific passwords successfully revoked."] = "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte."; -$a->strings["App-specific password successfully revoked."] = "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane."; -$a->strings["Two-factor app-specific passwords"] = "Dwuskładnikowe hasła aplikacji"; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; -$a->strings["Description"] = "Opis"; -$a->strings["Last Used"] = "Ostatnio używane"; -$a->strings["Revoke"] = "Unieważnij"; -$a->strings["Revoke All"] = "Unieważnij wszyskie"; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = ""; -$a->strings["Generate new app-specific password"] = "Wygeneruj nowe hasło specyficzne dla aplikacji"; -$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa na moim Fairphone 2..."; -$a->strings["Generate"] = ""; +$a->strings["Delegation successfully granted."] = "Delegacja została pomyślnie przyznana."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje."; +$a->strings["Delegation successfully revoked."] = "Delegacja została pomyślnie odwołana."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać."; +$a->strings["Delegate user not found."] = "Nie znaleziono delegowanego użytkownika."; +$a->strings["No parent user"] = "Brak nadrzędnego użytkownika"; +$a->strings["Parent User"] = "Użytkownik nadrzędny"; +$a->strings["Additional Accounts"] = "Dodatkowe konta"; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta."; +$a->strings["Register an additional account"] = "Zarejestruj dodatkowe konto"; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."; +$a->strings["Delegates"] = "Oddeleguj"; +$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."] = "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie."; +$a->strings["Existing Page Delegates"] = "Obecni delegaci stron"; +$a->strings["Potential Delegates"] = "Potencjalni delegaci"; +$a->strings["Add"] = "Dodaj"; +$a->strings["No entries."] = "Brak wpisów."; $a->strings["Two-factor authentication successfully disabled."] = "Autoryzacja dwuskładnikowa została pomyślnie wyłączona."; $a->strings["Wrong Password"] = "Złe hasło"; $a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Użyj aplikacji na urządzeniu mobilnym, aby uzyskać dwuskładnikowe kody uwierzytelniające po wyświetleniu monitu o zalogowanie.

"; @@ -2171,152 +2050,76 @@ $a->strings["Disable two-factor authentication"] = "Wyłącz uwierzytelnianie dw $a->strings["Show recovery codes"] = "Pokaż kody odzyskiwania"; $a->strings["Manage app-specific passwords"] = "Zarządzaj hasłami specyficznymi dla aplikacji"; $a->strings["Finish app configuration"] = "Zakończ konfigurację aplikacji"; -$a->strings["New recovery codes successfully generated."] = "Wygenerowano nowe kody odzyskiwania."; -$a->strings["Two-factor recovery codes"] = "Dwuskładnikowe kody odzyskiwania"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać."; -$a->strings["Generate new recovery codes"] = "Wygeneruj nowe kody odzyskiwania"; -$a->strings["Next: Verification"] = "Następny: Weryfikacja"; +$a->strings["Please enter your password to access this page."] = "Wprowadź hasło, aby uzyskać dostęp do tej strony."; $a->strings["Two-factor authentication successfully activated."] = "Uwierzytelnienie dwuskładnikowe zostało pomyślnie aktywowane."; $a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Możesz przesłać ustawienia uwierzytelniania ręcznie:

\n
\n\t
Wystawc
\n\t
%s
\n\t
Nazwa konta
\n\t
%s
\n\t
Sekretny klucz
\n\t
%s
\n\t
Typ
\n\t
Oparte na czasie
\n\t
Liczba cyfr
\n\t
6
\n\t
Hashing algorytmu
\n\t
SHA-1
\n
"; $a->strings["Two-factor code verification"] = "Weryfikacja kodu dwuskładnikowego"; $a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Zeskanuj kod QR za pomocą aplikacji uwierzytelniającej i prześlij podany kod.

"; $a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = "

Możesz też otworzyć następujący adres URL w urządzeniu mobilnym:

%s

"; $a->strings["Verify code and enable two-factor authentication"] = "Sprawdź kod i włącz uwierzytelnianie dwuskładnikowe"; +$a->strings["New recovery codes successfully generated."] = "Wygenerowano nowe kody odzyskiwania."; +$a->strings["Two-factor recovery codes"] = "Dwuskładnikowe kody odzyskiwania"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać."; +$a->strings["Generate new recovery codes"] = "Wygeneruj nowe kody odzyskiwania"; +$a->strings["Next: Verification"] = "Następny: Weryfikacja"; +$a->strings["App-specific password generation failed: The description is empty."] = "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty."; +$a->strings["App-specific password generation failed: This description already exists."] = "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje."; +$a->strings["New app-specific password generated."] = "Nowe hasło specyficzne dla aplikacji."; +$a->strings["App-specific passwords successfully revoked."] = "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte."; +$a->strings["App-specific password successfully revoked."] = "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane."; +$a->strings["Two-factor app-specific passwords"] = "Dwuskładnikowe hasła aplikacji"; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; +$a->strings["Description"] = "Opis"; +$a->strings["Last Used"] = "Ostatnio używane"; +$a->strings["Revoke"] = "Unieważnij"; +$a->strings["Revoke All"] = "Unieważnij wszyskie"; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = ""; +$a->strings["Generate new app-specific password"] = "Wygeneruj nowe hasło specyficzne dla aplikacji"; +$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa na moim Fairphone 2..."; +$a->strings["Generate"] = ""; +$a->strings["The theme you chose isn't available."] = "Wybrany motyw jest niedostępny."; +$a->strings["%s - (Unsupported)"] = "%s - (Nieobsługiwane)"; +$a->strings["Display Settings"] = "Ustawienia wyglądu"; +$a->strings["General Theme Settings"] = "Ogólne ustawienia motywu"; +$a->strings["Custom Theme Settings"] = "Niestandardowe ustawienia motywów"; +$a->strings["Content Settings"] = "Ustawienia zawartości"; +$a->strings["Calendar"] = "Kalendarz"; +$a->strings["Display Theme:"] = "Wyświetl motyw:"; +$a->strings["Mobile Theme:"] = "Motyw dla urządzeń mobilnych:"; +$a->strings["Number of items to display per page:"] = "Liczba elementów do wyświetlenia na stronie:"; +$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"; +$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."; +$a->strings["Automatic updates only at the top of the post stream pages"] = "Automatyczne aktualizacje tylko w górnej części stron strumienia postu"; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; +$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Zazwyczaj emotikony są zastępowane pasującymi symbolami. To ustawienie wyłącza to zachowanie."; +$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; +$a->strings["Automatic fetch new items when reaching the page end."] = "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony."; +$a->strings["Disable Smart Threading"] = "Wyłącz inteligentne wątki"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = ""; +$a->strings["Hide the Dislike feature"] = "Ukryj funkcję Nie lubię"; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; +$a->strings["Beginning of week:"] = "Początek tygodnia:"; $a->strings["Export account"] = "Eksportuj 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."] = "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer."; $a->strings["Export all"] = "Eksportuj wszystko"; $a->strings["Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; $a->strings["Export Contacts to CSV"] = "Eksportuj kontakty do CSV"; $a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "Wyeksportuj listę kont, które obserwujesz, jako plik CSV. Kompatybilny np. Mastodont."; -$a->strings["Bad Request"] = "Nieprawidłowe żądanie"; -$a->strings["Unauthorized"] = "Nieautoryzowane"; -$a->strings["Forbidden"] = "Zabronione"; -$a->strings["Not Found"] = "Nie znaleziono"; -$a->strings["Internal Server Error"] = "Wewnętrzny błąd serwera"; -$a->strings["Service Unavailable"] = "Usługa Niedostępna "; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = "Serwer nie może lub nie będzie przetwarzać żądania z powodu widocznego błędu klienta."; -$a->strings["Authentication is required and has failed or has not yet been provided."] = "Uwierzytelnienie jest wymagane i nie powiodło się lub nie zostało jeszcze dostarczone."; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "Żądanie było ważne, ale serwer odmawia działania. Użytkownik może nie mieć wymaganych uprawnień do zasobu lub może potrzebować konta."; -$a->strings["The requested resource could not be found but may be available in the future."] = "Żądany zasób nie został znaleziony, ale może być dostępny w przyszłości."; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "Napotkano nieoczekiwany warunek i nie jest odpowiedni żaden bardziej szczegółowy komunikat."; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "Serwer jest obecnie niedostępny (ponieważ jest przeciążony lub wyłączony z powodu konserwacji). Spróbuj ponownie później."; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; -$a->strings["Privacy Statement"] = "Oświadczenie o prywatności"; -$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; -$a->strings["New Member Checklist"] = "Lista nowych członków"; -$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; -$a->strings["Getting Started"] = "Pierwsze kroki"; -$a->strings["Friendica Walk-Through"] = "Friendica Przejdź-Przez"; -$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 stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."; -$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; -$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 stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej."; -$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."] = "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć."; -$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; -$a->strings["Edit Your Profile"] = "Edytuj własny 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."] = "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami."; -$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; -$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Ustaw kilka publicznych słów kluczowych dla swojego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zasugerować przyjaźnie."; -$a->strings["Connecting"] = "Łączenie"; -$a->strings["Importing Emails"] = "Importowanie e-maili"; -$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"] = "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX"; -$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; -$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."] = "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt."; -$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; -$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."] = "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."; -$a->strings["Finding New People"] = "Znajdowanie nowych osób"; -$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 bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin"; -$a->strings["Group Your Contacts"] = "Grupy kontaktów"; -$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."] = "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć."; -$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; -$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 szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu."; -$a->strings["Getting Help"] = "Otrzymaj pomoc"; -$a->strings["Go to the Help Section"] = "Przejdź do sekcji pomocy"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s, członka sieci społecznościowej Friendica."; -$a->strings["You may visit them online at %s"] = "Możesz odwiedzić ich online pod adresem %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; -$a->strings["%s posted an update."] = "%s zaktualizował wpis."; -$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; -$a->strings["Private Message"] = "Wiadomość prywatna"; -$a->strings["pinned item"] = ""; -$a->strings["Delete locally"] = "Usuń lokalnie"; -$a->strings["Delete globally"] = "Usuń globalnie"; -$a->strings["Remove locally"] = "Usuń lokalnie"; -$a->strings["save to folder"] = "zapisz w folderze"; -$a->strings["I will attend"] = "Będę uczestniczyć"; -$a->strings["I will not attend"] = "Nie będę uczestniczyć"; -$a->strings["I might attend"] = "Mogę wziąć udział"; -$a->strings["ignore thread"] = "zignoruj ​​wątek"; -$a->strings["unignore thread"] = "odignoruj ​​wątek"; -$a->strings["toggle ignore status"] = "przełącz status ignorowania"; -$a->strings["pin"] = "przypnij"; -$a->strings["unpin"] = "odepnij"; -$a->strings["toggle pin status"] = ""; -$a->strings["pinned"] = "Przypięte"; -$a->strings["add star"] = "dodaj gwiazdkę"; -$a->strings["remove star"] = "anuluj gwiazdkę"; -$a->strings["toggle star status"] = "włącz status gwiazdy"; -$a->strings["starred"] = "gwiazdką"; -$a->strings["add tag"] = "dodaj tag"; -$a->strings["like"] = "lubię to"; -$a->strings["dislike"] = "nie lubię tego"; -$a->strings["Share this"] = "Udostępnij to"; -$a->strings["share"] = "udostępnij"; -$a->strings["%s (Received %s)"] = ""; -$a->strings["Comment this item on your system"] = ""; -$a->strings["remote comment"] = ""; -$a->strings["Pushed"] = ""; -$a->strings["Pulled"] = ""; -$a->strings["to"] = "do"; -$a->strings["via"] = "przez"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["Reply to %s"] = "Odpowiedź %s"; -$a->strings["More"] = "Więcej"; -$a->strings["Notifier task is pending"] = "Zadanie Notifier jest w toku"; -$a->strings["Delivery to remote servers is pending"] = "Trwa przesyłanie do serwerów zdalnych"; -$a->strings["Delivery to remote servers is underway"] = "Trwa dostawa do serwerów zdalnych"; -$a->strings["Delivery to remote servers is mostly done"] = "Dostawa do zdalnych serwerów jest w większości wykonywana"; -$a->strings["Delivery to remote servers is done"] = "Trwa dostarczanie do zdalnych serwerów"; -$a->strings["%d comment"] = [ - 0 => "%d komentarz", - 1 => "%d komentarze", - 2 => "%d komentarzy", - 3 => "%d komentarzy", -]; -$a->strings["Show more"] = "Pokaż więcej"; -$a->strings["Show fewer"] = "Pokaż mniej"; -$a->strings["Attachments:"] = "Załączniki:"; +$a->strings["System down for maintenance"] = "System wyłączony w celu konserwacji"; $a->strings["%s is now following %s."] = "%s zaczął(-ęła) obserwować %s."; $a->strings["following"] = "następujący"; $a->strings["%s stopped following %s."] = "%s przestał(a) obserwować %s."; $a->strings["stopped following"] = "przestał śledzić"; -$a->strings["Hometown:"] = "Miasto rodzinne:"; -$a->strings["Marital Status:"] = "Stan cywilny:"; -$a->strings["With:"] = "Z:"; -$a->strings["Since:"] = "Od:"; -$a->strings["Sexual Preference:"] = "Preferencje seksualne:"; -$a->strings["Political Views:"] = "Poglądy polityczne:"; -$a->strings["Religious Views:"] = "Poglądy religijne:"; -$a->strings["Likes:"] = "Lubię to:"; -$a->strings["Dislikes:"] = "Nie lubię tego:"; -$a->strings["Title/Description:"] = "Tytuł/Opis:"; -$a->strings["Musical interests"] = "Muzyka"; -$a->strings["Books, literature"] = "Literatura"; -$a->strings["Television"] = "Telewizja"; -$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Hobbies/Interests"] = "Zainteresowania"; -$a->strings["Love/romance"] = "Miłość/romans"; -$a->strings["Work/employment"] = "Praca/zatrudnienie"; -$a->strings["School/education"] = "Szkoła/edukacja"; -$a->strings["Contact information and Social Networks"] = "Dane kontaktowe i Sieci społecznościowe"; -$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; +$a->strings["Attachments:"] = "Załączniki:"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,%2\$sAdministrator"; $a->strings["%s Administrator"] = "%s Administrator"; $a->strings["thanks"] = "dziękuję"; +$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; $a->strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD"; $a->strings["never"] = "nigdy"; $a->strings["less than a second ago"] = "mniej niż sekundę temu"; @@ -2333,58 +2136,248 @@ $a->strings["second"] = "sekunda"; $a->strings["seconds"] = "sekundy"; $a->strings["in %1\$d %2\$s"] = "w %1\$d %2\$s"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; -$a->strings["(no subject)"] = "(bez tematu)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku. "; -$a->strings["%s: Updating post-type."] = "%s: Aktualizowanie typu postu."; -$a->strings["default"] = "standardowe"; -$a->strings["greenzero"] = "zielone zero"; -$a->strings["purplezero"] = "fioletowe zero"; -$a->strings["easterbunny"] = "zajączek wielkanocny"; -$a->strings["darkzero"] = "ciemne zero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "luźny"; -$a->strings["Variations"] = "Zmiana"; -$a->strings["Custom"] = "Niestandardowe"; -$a->strings["Note"] = "Uwaga"; -$a->strings["Check image permissions if all users are allowed to see the image"] = "Sprawdź uprawnienia do zdjęć, jeśli wszyscy użytkownicy mogą zobaczyć obraz"; -$a->strings["Select color scheme"] = "Wybierz schemat kolorów"; -$a->strings["Copy or paste schemestring"] = "Skopiuj lub wklej schemat"; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat"; -$a->strings["Navigation bar background color"] = "Kolor tła paska nawigacyjnego"; -$a->strings["Navigation bar icon color "] = "Kolor ikon na pasku nawigacyjnym "; -$a->strings["Link color"] = "Kolor łączy"; -$a->strings["Set the background color"] = "Ustaw kolor tła"; -$a->strings["Content background opacity"] = "Nieprzezroczystość tła treści"; -$a->strings["Set the background image"] = "Ustaw obraz tła"; -$a->strings["Background image style"] = "Styl tła"; -$a->strings["Login page background image"] = "Obraz tła strony logowania"; -$a->strings["Login page background color"] = "Kolor tła strony logowania"; -$a->strings["Leave background image and color empty for theme defaults"] = "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji"; -$a->strings["Skip to main content"] = "Przejdź do głównej zawartości"; -$a->strings["Top Banner"] = "Górny Baner"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Zmień rozmiar obrazu na szerokość ekranu i pokaż kolor tła poniżej na długich stronach."; -$a->strings["Full screen"] = "Pełny ekran"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Zmień rozmiar obrazu, aby wypełnić cały ekran, przycinając prawy lub dolny."; -$a->strings["Single row mosaic"] = "Mozaika jednorzędowa"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Zmień rozmiar obrazu, aby powtórzyć go w jednym wierszu, w pionie lub w poziomie."; -$a->strings["Mosaic"] = "Mozaika"; -$a->strings["Repeat image to fill the screen."] = "Powtórz obraz, aby wypełnić ekran."; -$a->strings["Guest"] = "Gość"; -$a->strings["Visitor"] = "Odwiedzający"; -$a->strings["Alignment"] = "Wyrównanie"; -$a->strings["Left"] = "Lewo"; -$a->strings["Center"] = "Środek"; -$a->strings["Color scheme"] = "Zestaw kolorów"; -$a->strings["Posts font size"] = "Rozmiar czcionki postów"; -$a->strings["Textareas font size"] = "Rozmiar czcionki Textareas"; -$a->strings["Comma separated list of helper forums"] = "Lista pomocników oddzielona przecinkami"; -$a->strings["don't show"] = "nie pokazuj"; -$a->strings["show"] = "pokaż"; -$a->strings["Set style"] = "Ustaw styl"; -$a->strings["Community Pages"] = "Strony społeczności"; -$a->strings["Community Profiles"] = "Profile społeczności"; -$a->strings["Help or @NewHere ?"] = "Pomóż lub @NowyTutaj?"; -$a->strings["Connect Services"] = "Połączone serwisy"; -$a->strings["Find Friends"] = "Znajdź znajomych"; -$a->strings["Last users"] = "Ostatni użytkownicy"; -$a->strings["Quick Start"] = "Szybki start"; +$a->strings["Database storage failed to update %s"] = "Przechowywanie bazy danych nie powiodło się %s"; +$a->strings["Database storage failed to insert data"] = "Magazyn bazy danych nie mógł wstawić danych"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Nie można utworzyć magazynu systemu plików \"%s\". Sprawdź, czy masz uprawnienia do zapisu."; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Nie udało się zapisać danych w pamięci systemu plików \"%s\". Sprawdź swoje uprawnienia do zapisu"; +$a->strings["Storage base path"] = "Ścieżka bazy pamięci masowej"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Folder, w którym zapisywane są przesłane pliki. Dla maksymalnego bezpieczeństwa, powinna to być ścieżka poza drzewem folderów serwera WWW"; +$a->strings["Enter a valid existing folder"] = "Wprowadź poprawny istniejący folder"; +$a->strings["activity"] = "aktywność"; +$a->strings["post"] = "post"; +$a->strings["Content warning: %s"] = "Ostrzeżenie o treści: %s"; +$a->strings["bytes"] = "bajty"; +$a->strings["View on separate page"] = "Zobacz na oddzielnej stronie"; +$a->strings["view on separate page"] = "zobacz na oddzielnej stronie"; +$a->strings["link to source"] = "link do źródła"; +$a->strings["[no subject]"] = "[bez tematu]"; +$a->strings["UnFollow"] = ""; +$a->strings["Drop Contact"] = "Zakończ znajomość"; +$a->strings["Organisation"] = "Organizacja"; +$a->strings["News"] = "Aktualności"; +$a->strings["Forum"] = "Forum"; +$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."; +$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; +$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; +$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."; +$a->strings["Use mailto: in front of address to force email check."] = "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; +$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; +$a->strings["Starts:"] = "Rozpoczęcie:"; +$a->strings["Finishes:"] = "Zakończenie:"; +$a->strings["all-day"] = "cały dzień"; +$a->strings["Sept"] = "Wrz"; +$a->strings["No events to display"] = "Brak wydarzeń do wyświetlenia"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Edytuj wydarzenie"; +$a->strings["Duplicate event"] = "Zduplikowane zdarzenie"; +$a->strings["Delete event"] = "Usuń wydarzenie"; +$a->strings["D g:i A"] = "D g:i A"; +$a->strings["g:i A"] = "g:i A"; +$a->strings["Show map"] = "Pokaż mapę"; +$a->strings["Hide map"] = "Ukryj mapę"; +$a->strings["%s's birthday"] = "%s urodzin"; +$a->strings["Happy Birthday %s"] = "Urodziny %s"; +$a->strings["Login failed"] = "Logowanie nieudane"; +$a->strings["Not enough information to authenticate"] = "Za mało informacji do uwierzytelnienia"; +$a->strings["Password can't be empty"] = "Hasło nie może być puste"; +$a->strings["Empty passwords are not allowed."] = "Puste hasła są niedozwolone."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)"; +$a->strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Hasło niezmienione."; +$a->strings["An invitation is required."] = "Wymagane zaproszenie."; +$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; +$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; +$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje."; +$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości."; +$a->strings["Username should be at least %s character."] = [ + 0 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", + 1 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", + 2 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", + 3 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.", +]; +$a->strings["Username should be at most %s character."] = [ + 0 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", + 1 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", + 2 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", + 3 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.", +]; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."; +$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; +$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; +$a->strings["The nickname was blocked from registration by the nodes admin."] = "Pseudonim został zablokowany przed rejestracją przez administratora węzłów."; +$a->strings["Cannot use that email."] = "Nie można użyć tego e-maila."; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Twój pseudonim może zawierać tylko a-z, 0-9 i _."; +$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; +$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; +$a->strings["An error occurred creating your self contact. Please try again."] = "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."; +$a->strings["Friends"] = "Przyjaciele"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tSzanowna/y %1\$s,\n\t\t\tadministrator of %2\$s założył dla Ciebie konto."; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tSzanowny Użytkowniku %1\$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%4\$s\n\t\t\tHasło:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Rejestracja w %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tSzanowna/y %1\$s,\n\t\t\t\tDziękujemy za rejestrację w %2\$s. Twoje konto zostało utworzone.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%1\$s\n\t\t\tHasło:\t\t%5\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil użytkownika\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\t\ti być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół.\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3\$s/removeme\n\n\t\t\tDziękujemy i Zapraszamy do %2\$s."; +$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."] = "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."; +$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; +$a->strings["Everybody"] = "Wszyscy"; +$a->strings["edit"] = "edytuj"; +$a->strings["add"] = "dodaj"; +$a->strings["Edit group"] = "Edytuj grupy"; +$a->strings["Create a new group"] = "Stwórz nową grupę"; +$a->strings["Edit groups"] = "Edytuj grupy"; +$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; +$a->strings["Atom feed"] = "Kanał Atom"; +$a->strings["g A l F d"] = "g A I F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[dziś]"; +$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; +$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; +$a->strings["[No description]"] = "[Brak opisu]"; +$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; +$a->strings["Upcoming events the next 7 days:"] = "Nadchodzące wydarzenia w ciągu następnych 7 dni:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s wita %2\$s"; +$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; +$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; +$a->strings["Connect"] = "Połącz"; +$a->strings["%d invitation available"] = [ + 0 => "%d zaproszenie dostępne", + 1 => "%d zaproszeń dostępnych", + 2 => "%d zaproszenia dostępne", + 3 => "%d zaproszenia dostępne", +]; +$a->strings["Everyone"] = "Wszyscy"; +$a->strings["Relationships"] = "Relacje"; +$a->strings["Protocols"] = "Protokoły"; +$a->strings["All Protocols"] = "Wszystkie protokoły"; +$a->strings["Saved Folders"] = "Zapisz w folderach"; +$a->strings["Everything"] = "Wszystko"; +$a->strings["Categories"] = "Kategorie"; +$a->strings["%d contact in common"] = [ + 0 => "%d wspólny kontakt", + 1 => "%d wspólne kontakty", + 2 => "%d wspólnych kontaktów", + 3 => "%dwspólnych kontaktów", +]; +$a->strings["Archives"] = "Archiwum"; +$a->strings["Frequently"] = "Często"; +$a->strings["Hourly"] = "Co godzinę"; +$a->strings["Twice daily"] = "Dwa razy dziennie"; +$a->strings["Daily"] = "Codziennie"; +$a->strings["Weekly"] = "Co tydzień"; +$a->strings["Monthly"] = "Miesięczne"; +$a->strings["DFRN"] = "DFRN"; +$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["Discourse"] = "Rozmowa"; +$a->strings["Diaspora Connector"] = "Łącze Diaspora"; +$a->strings["GNU Social Connector"] = "Łącze GNU Social"; +$a->strings["ActivityPub"] = "Pub aktywności"; +$a->strings["pnut"] = "orzech"; +$a->strings["%s (via %s)"] = "%s (przez %s)"; +$a->strings["General Features"] = "Funkcje ogólne"; +$a->strings["Photo Location"] = "Lokalizacja zdjęcia"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą."; +$a->strings["Trending Tags"] = "Popularne tagi"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Pokaż widżet strony społeczności z listą najpopularniejszych tagów w ostatnich postach publicznych."; +$a->strings["Post Composition Features"] = "Ustawienia funkcji postów"; +$a->strings["Auto-mention Forums"] = "Automatyczne wymienianie forów"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL."; +$a->strings["Explicit Mentions"] = ""; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Dodaj wyraźne wzmianki do pola komentarza, aby ręcznie kontrolować, kto zostanie wymieniony w odpowiedziach."; +$a->strings["Post/Comment Tools"] = "Narzędzia post/komentarz"; +$a->strings["Post Categories"] = "Kategorie postów"; +$a->strings["Add categories to your posts"] = "Umożliwia dodawanie kategorii do twoich postów"; +$a->strings["Advanced Profile Settings"] = "Zaawansowane ustawienia profilu"; +$a->strings["List Forums"] = "Lista forów"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Wyświetla publiczne fora społeczności na stronie profilu zaawansowanego"; +$a->strings["Tag Cloud"] = "Chmura tagów"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Podaj osobistą chmurę tagów na stronie profilu"; +$a->strings["Display Membership Date"] = "Wyświetl datę członkostwa"; +$a->strings["Display membership date in profile"] = "Wyświetla datę członkostwa w profilu"; +$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; +$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; +$a->strings["@name, !forum, #tags, content"] = "@imię, !forum, #tagi, treść"; +$a->strings["End this session"] = "Zakończ sesję"; +$a->strings["Sign in"] = "Zaloguj się"; +$a->strings["Personal notes"] = "Notatki"; +$a->strings["Your personal notes"] = "Twoje prywatne notatki"; +$a->strings["Home"] = "Strona domowa"; +$a->strings["Home Page"] = "Strona startowa"; +$a->strings["Create an account"] = "Załóż konto"; +$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; +$a->strings["Apps"] = "Aplikacje"; +$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; +$a->strings["Search site content"] = "Przeszukaj zawartość strony"; +$a->strings["Full Text"] = "Pełny tekst"; +$a->strings["Tags"] = "Tagi"; +$a->strings["Community"] = "Społeczność"; +$a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innych serwerach"; +$a->strings["Directory"] = "Katalog"; +$a->strings["People directory"] = "Katalog osób"; +$a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica"; +$a->strings["Terms of Service of this Friendica instance"] = "Warunki świadczenia usług tej instancji Friendica"; +$a->strings["Introductions"] = "Zapoznanie"; +$a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych"; +$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; +$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; +$a->strings["Inbox"] = "Odebrane"; +$a->strings["Outbox"] = "Wysłane"; +$a->strings["Accounts"] = "Konto"; +$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; +$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; +$a->strings["Navigation"] = "Nawigacja"; +$a->strings["Site map"] = "Mapa strony"; +$a->strings["Remove term"] = "Usuń wpis"; +$a->strings["Saved Searches"] = "Zapisywanie wyszukiwania"; +$a->strings["Export"] = "Eksport"; +$a->strings["Export calendar as ical"] = "Wyeksportuj kalendarz jako ical"; +$a->strings["Export calendar as csv"] = "Eksportuj kalendarz jako csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["More Trending Tags"] = "Więcej popularnych tagów"; +$a->strings["No contacts"] = "Brak kontaktów"; +$a->strings["%d Contact"] = [ + 0 => "%d kontakt", + 1 => "%d kontaktów", + 2 => "%d kontakty", + 3 => "%d Kontakty", +]; +$a->strings["View Contacts"] = "Widok kontaktów"; +$a->strings["newer"] = "nowsze"; +$a->strings["older"] = "starsze"; +$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; +$a->strings["Embedded content"] = "Osadzona zawartość"; +$a->strings["prev"] = "poprzedni"; +$a->strings["last"] = "ostatni"; +$a->strings["Loading more entries..."] = "Ładuję więcej wpisów..."; +$a->strings["The end"] = "Koniec"; +$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; +$a->strings["Image/photo"] = "Obrazek/zdjęcie"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 napisał:"; +$a->strings["Encrypted content"] = "Szyfrowana treść"; +$a->strings["Invalid source protocol"] = "Nieprawidłowy protokół źródłowy"; +$a->strings["Invalid link protocol"] = "Niepoprawny link protokołu"; +$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."] = "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem."; From c7578d8547112a380606eac8de1759c7eb7fbb36 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:37:12 +0200 Subject: [PATCH 14/44] NL translation update THX Casper --- view/lang/nl/messages.po | 16389 ++++++++++++++++++------------------- view/lang/nl/strings.php | 2955 ++++--- 2 files changed, 9656 insertions(+), 9688 deletions(-) diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index c47b5b3927..990f0fc265 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-06-04 21:10+0000\n" -"Last-Translator: Casper \n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-05 00:17+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,433 +30,801 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "standaard" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Verstuur" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Variaties" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Uitlijning" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Gecentreerd" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Kleurschema" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Lettergrootte berichten" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Lettergrootte tekstgebieden" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Kommagescheiden lijst van de helper forums" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "niet tonen" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "tonen" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Stijl instellen" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Forum/groepspagina's" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Forum/groepsprofielen" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Help of @NewHere ?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Diensten verbinden" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Zoek vrienden" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Laatste gebruikers" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Zoek mensen" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Verbind/Volg" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeelden: Jan Peeters, Vissen" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Zoek" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Willekeurig Profiel" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Globale gids" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Lokale gids" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Forums" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "Externe link naar het forum" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "toon meer" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Snelstart" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Help" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "Aangepast" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Nota" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Controleer of alle gebruikers permissie hebben om het beeld te zien " + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "Selecteer kleurschema" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "Kopieer of plak schemastring" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "Je kan deze string kopiëren om uw je kleurenschema met anderen te delen. Een schemastring plakken past deze toe." + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Navigatie balk achtergrondkleur" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Navigatie balk icoon kleur" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Link kleur" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Stel de achtergrondkleur in" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "Content achtergrond opaciteit" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Stel het achtergrondbeeld in" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "Achtergrond beeld stijl" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "Achtergrondafbeelding aanmeldpagina" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "Achtergrondkleur aanmeldpagina" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken" + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Gast" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Bezoeker" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Tijdlijn" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "Jouw berichten en gesprekken" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Profiel" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Foto's" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "Jouw foto's" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Video's" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "Je video's" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Gebeurtenissen" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "Jouw gebeurtenissen" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Netwerk" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "Gesprekken van je vrienden" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Privéberichten" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Privéberichten" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Instellingen" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Account instellingen" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Contacten" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Gesprek volgen" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "Ga naar hoofdinhoud" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Banner Bovenaan" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Pas het beeld aan aan de breedte van het scherm en toon achtergrondkleur onder lange pagina's" + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Volledig scherm" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Pas het beeld aan om het hele scherm te vullen, met ofwel de rechter- of de onderkant afgeknipt." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Enkele rij mozaïek" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Pas het beeld aan zodat het herhaald wordt op een enkele rij, ofwel vertikaal ofwel horizontaal" + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Mozaïek" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Herhaal beeld om het scherm te vullen." + +#: update.php:195 #, php-format -msgid "Daily posting limit of %d post reached. The post was rejected." -msgid_plural "Daily posting limit of %d posts reached. The post was rejected." -msgstr[0] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." -msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "%s: author-id en owner-id in item en gesprekstabel aan het updaten." -#: include/api.php:1137 +#: update.php:250 #, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." -msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." +msgid "%s: Updating post-type." +msgstr "%s: bericht-type bewerken" -#: include/api.php:1151 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "De maandelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." - -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 -#: src/Module/Settings/Profile/Photo/Crop.php:113 -#: src/Module/Settings/Profile/Photo/Crop.php:129 -#: src/Module/Settings/Profile/Photo/Crop.php:178 -#: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: include/conversation.php:189 +#: include/conversation.php:188 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s porde %2$s aan" -#: include/conversation.php:221 src/Model/Item.php:3444 +#: include/conversation.php:220 src/Model/Item.php:3330 msgid "event" msgstr "gebeurtenis" -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 msgid "status" msgstr "status" -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 msgid "photo" msgstr "foto" -#: include/conversation.php:243 mod/tagger.php:121 +#: include/conversation.php:242 mod/tagger.php:122 #, 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" -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 msgid "Select" msgstr "Kies" -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 msgid "Delete" msgstr "Verwijder" -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: include/conversation.php:603 src/Object/Post.php:426 +#: include/conversation.php:602 src/Object/Post.php:428 msgid "Categories:" msgstr "Categorieën:" -#: include/conversation.php:604 src/Object/Post.php:427 +#: include/conversation.php:603 src/Object/Post.php:429 msgid "Filed under:" msgstr "Bewaard onder:" -#: include/conversation.php:611 src/Object/Post.php:452 +#: include/conversation.php:610 src/Object/Post.php:454 #, php-format msgid "%s from %s" msgstr "%s van %s" -#: include/conversation.php:626 +#: include/conversation.php:625 msgid "View in context" msgstr "In context bekijken" -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 msgid "Please wait" msgstr "Even geduld" -#: include/conversation.php:692 +#: include/conversation.php:691 msgid "remove" msgstr "verwijder" -#: include/conversation.php:696 +#: include/conversation.php:695 msgid "Delete Selected Items" msgstr "Geselecteerde items verwijderen" -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "Gesprek volgen" - -#: include/conversation.php:858 src/Model/Contact.php:1277 +#: include/conversation.php:876 src/Model/Contact.php:1170 msgid "View Status" msgstr "Bekijk status" -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 msgid "View Profile" msgstr "Bekijk profiel" -#: include/conversation.php:860 src/Model/Contact.php:1279 +#: include/conversation.php:878 src/Model/Contact.php:1172 msgid "View Photos" msgstr "Bekijk foto's" -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 msgid "Network Posts" msgstr "Netwerkberichten" -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 msgid "View Contact" msgstr "Bekijk contact" -#: include/conversation.php:863 src/Model/Contact.php:1283 +#: include/conversation.php:881 src/Model/Contact.php:1176 msgid "Send PM" msgstr "Stuur een privébericht" -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 msgid "Block" msgstr "Blokkeren" -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 #: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 msgid "Ignore" msgstr "Negeren" -#: include/conversation.php:869 src/Model/Contact.php:1284 +#: include/conversation.php:887 src/Model/Contact.php:1177 msgid "Poke" msgstr "Porren" -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: include/conversation.php:1000 +#: include/conversation.php:1018 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: include/conversation.php:1003 +#: include/conversation.php:1021 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: include/conversation.php:1006 +#: include/conversation.php:1024 #, php-format msgid "%s attends." msgstr "%s neemt deel" -#: include/conversation.php:1009 +#: include/conversation.php:1027 #, php-format msgid "%s doesn't attend." msgstr "%s neemt niet deel" -#: include/conversation.php:1012 +#: include/conversation.php:1030 #, php-format msgid "%s attends maybe." msgstr "%s neemt misschien deel" -#: include/conversation.php:1015 include/conversation.php:1058 +#: include/conversation.php:1033 include/conversation.php:1076 #, php-format msgid "%s reshared this." msgstr "%s heeft dit gedeeld" -#: include/conversation.php:1023 +#: include/conversation.php:1041 msgid "and" msgstr "en" -#: include/conversation.php:1029 +#: include/conversation.php:1047 #, php-format msgid "and %d other people" msgstr "en %d anderen" -#: include/conversation.php:1037 +#: include/conversation.php:1055 #, php-format msgid "%2$d people like this" msgstr "%2$d mensen vinden dit leuk" -#: include/conversation.php:1038 +#: include/conversation.php:1056 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: include/conversation.php:1041 +#: include/conversation.php:1059 #, php-format msgid "%2$d people don't like this" msgstr "%2$d people vinden dit niet leuk" -#: include/conversation.php:1042 +#: include/conversation.php:1060 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: include/conversation.php:1045 +#: include/conversation.php:1063 #, php-format msgid "%2$d people attend" msgstr "%2$d mensen nemen deel" -#: include/conversation.php:1046 +#: include/conversation.php:1064 #, php-format msgid "%s attend." msgstr "%s nemen deel." -#: include/conversation.php:1049 +#: include/conversation.php:1067 #, php-format msgid "%2$d people don't attend" msgstr "%2$d mensen nemen niet deel" -#: include/conversation.php:1050 +#: include/conversation.php:1068 #, php-format msgid "%s don't attend." msgstr "%s nemen niet deel." -#: include/conversation.php:1053 +#: include/conversation.php:1071 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d mensen nemen misschien deel" -#: include/conversation.php:1054 +#: include/conversation.php:1072 #, php-format msgid "%s attend maybe." msgstr "%s neemt misschien deel." -#: include/conversation.php:1057 +#: include/conversation.php:1075 #, php-format msgid "%2$d people reshared this" msgstr "%2$d mensen hebben dit gedeeld" -#: include/conversation.php:1087 +#: include/conversation.php:1105 msgid "Visible to everybody" msgstr "Zichtbaar voor iedereen" -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Geef een afbeelding/video/audio/webpagina in:" -#: include/conversation.php:1089 +#: include/conversation.php:1107 msgid "Tag term:" msgstr "Label:" -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 msgid "Save to Folder:" msgstr "Bewaren in map:" -#: include/conversation.php:1091 +#: include/conversation.php:1109 msgid "Where are you right now?" msgstr "Waar ben je nu?" -#: include/conversation.php:1092 +#: include/conversation.php:1110 msgid "Delete item(s)?" msgstr "Item(s) verwijderen?" -#: include/conversation.php:1124 +#: include/conversation.php:1142 msgid "New Post" msgstr "Nieuw bericht" -#: include/conversation.php:1127 +#: include/conversation.php:1145 msgid "Share" msgstr "Delen" -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 msgid "Loading..." msgstr "Aan het laden..." -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 msgid "Upload photo" msgstr "Foto uploaden" -#: include/conversation.php:1130 mod/editpost.php:91 +#: include/conversation.php:1148 mod/editpost.php:91 msgid "upload photo" msgstr "Foto uploaden" -#: include/conversation.php:1131 mod/editpost.php:92 +#: include/conversation.php:1149 mod/editpost.php:92 msgid "Attach file" msgstr "Bestand bijvoegen" -#: include/conversation.php:1132 mod/editpost.php:93 +#: include/conversation.php:1150 mod/editpost.php:93 msgid "attach file" msgstr "bestand bijvoegen" -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 msgid "Bold" msgstr "Vet" -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 msgid "Italic" msgstr "Cursief" -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 msgid "Underline" msgstr "Onderstrepen" -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 msgid "Quote" msgstr "Citeren" -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 msgid "Code" msgstr "Broncode" -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 msgid "Image" msgstr "Afbeelding" -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 msgid "Link" msgstr "Link" -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 msgid "Link or Media" msgstr "Link of media" -#: include/conversation.php:1141 mod/editpost.php:100 +#: include/conversation.php:1159 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "Stel je locatie in" -#: include/conversation.php:1142 mod/editpost.php:101 +#: include/conversation.php:1160 mod/editpost.php:101 msgid "set location" msgstr "Stel uw locatie in" -#: include/conversation.php:1143 mod/editpost.php:102 +#: include/conversation.php:1161 mod/editpost.php:102 msgid "Clear browser location" msgstr "Verwijder locatie uit uw webbrowser" -#: include/conversation.php:1144 mod/editpost.php:103 +#: include/conversation.php:1162 mod/editpost.php:103 msgid "clear location" msgstr "Verwijder locatie uit uw webbrowser" -#: include/conversation.php:1146 mod/editpost.php:117 +#: include/conversation.php:1164 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "Titel plaatsen" -#: include/conversation.php:1148 mod/editpost.php:119 +#: include/conversation.php:1166 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "Categorieën (komma-gescheiden lijst)" -#: include/conversation.php:1150 mod/editpost.php:105 +#: include/conversation.php:1168 mod/editpost.php:105 msgid "Permission settings" msgstr "Instellingen van rechten" -#: include/conversation.php:1151 mod/editpost.php:134 +#: include/conversation.php:1169 mod/editpost.php:134 msgid "permissions" msgstr "rechten" -#: include/conversation.php:1160 mod/editpost.php:114 +#: include/conversation.php:1178 mod/editpost.php:114 msgid "Public post" msgstr "Openbare post" -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 msgid "Preview" msgstr "Voorvertoning" -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "Annuleren" -#: include/conversation.php:1173 +#: include/conversation.php:1191 msgid "Post to Groups" msgstr "Verzenden naar Groepen" -#: include/conversation.php:1174 +#: include/conversation.php:1192 msgid "Post to Contacts" msgstr "Verzenden naar Contacten" -#: include/conversation.php:1175 +#: include/conversation.php:1193 msgid "Private post" msgstr "Privé verzending" -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 msgid "Message" msgstr "Bericht" -#: include/conversation.php:1181 mod/editpost.php:133 +#: include/conversation.php:1199 mod/editpost.php:133 msgid "Browser" msgstr "Browser" -#: include/conversation.php:1183 mod/editpost.php:136 +#: include/conversation.php:1201 mod/editpost.php:136 msgid "Open Compose page" msgstr "" @@ -464,262 +832,262 @@ msgstr "" msgid "[Friendica:Notify]" msgstr "" -#: include/enotify.php:128 +#: include/enotify.php:140 #, php-format msgid "%s New mail received at %s" msgstr "%s Nieuw bericht ontvangen op %s" -#: include/enotify.php:130 +#: include/enotify.php:142 #, 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:131 +#: include/enotify.php:143 msgid "a private message" msgstr "een prive bericht" -#: include/enotify.php:131 +#: include/enotify.php:143 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s stuurde jou %2$s." -#: include/enotify.php:133 +#: include/enotify.php:145 #, 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:177 +#: include/enotify.php:189 #, php-format msgid "%1$s replied to you on %2$s's %3$s %4$s" msgstr "%1$s reageerde op jou op %2$s's %3$s %4$s" -#: include/enotify.php:179 +#: include/enotify.php:191 #, php-format msgid "%1$s tagged you on %2$s's %3$s %4$s" msgstr "%1$s heeft jou getagd op %2$s's %3$s %4$s" -#: include/enotify.php:181 +#: include/enotify.php:193 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s heeft een opmerking geplaatst op %2$s's %3$s %4$s" -#: include/enotify.php:191 +#: include/enotify.php:203 #, php-format msgid "%1$s replied to you on your %2$s %3$s" msgstr "%1$s reageerde op jou op je %2$s %3$s" -#: include/enotify.php:193 +#: include/enotify.php:205 #, php-format msgid "%1$s tagged you on your %2$s %3$s" msgstr "%1$s heeft je getagd op je %2$s %3$s" -#: include/enotify.php:195 +#: include/enotify.php:207 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s heeft een opmerking geplaatst op jou %2$s %3$s" -#: include/enotify.php:202 +#: include/enotify.php:214 #, php-format msgid "%1$s replied to you on their %2$s %3$s" msgstr "%1$s reageerde op jou op hun %2$s %3$s" -#: include/enotify.php:204 +#: include/enotify.php:216 #, php-format msgid "%1$s tagged you on their %2$s %3$s" msgstr "%1$s heeft je getagd op hun %2$s %3$s" -#: include/enotify.php:206 +#: include/enotify.php:218 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s heeft een opmering geschreven op hun %2$s %3$s" -#: include/enotify.php:217 +#: include/enotify.php:229 #, php-format msgid "%s %s tagged you" msgstr "%s %s heeft jou getagged" -#: include/enotify.php:219 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s heeft jou in %2$s genoemd" -#: include/enotify.php:221 +#: include/enotify.php:233 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Opmerking bij conversatie #%2$d door %3$s" -#: include/enotify.php:223 +#: include/enotify.php:235 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt." -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden." -#: include/enotify.php:235 +#: include/enotify.php:247 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s heeft op je profiel wall gepost" -#: include/enotify.php:237 +#: include/enotify.php:249 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$splaatste een bericht op je tijdlijn op %2$s" -#: include/enotify.php:238 +#: include/enotify.php:250 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s schreef op [url=%2$s]jouw tijdlijn[/url]" -#: include/enotify.php:250 +#: include/enotify.php:262 #, php-format msgid "%s %s shared a new post" msgstr "%s %s deelde een nieuwe post" -#: include/enotify.php:252 +#: include/enotify.php:264 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s deelde een nieuw bericht op %2$s" -#: include/enotify.php:253 +#: include/enotify.php:265 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]deelde een bericht[/url]." -#: include/enotify.php:265 +#: include/enotify.php:277 #, php-format msgid "%1$s %2$s poked you" msgstr "%1$s %2$s heeft je gepoked" -#: include/enotify.php:267 +#: include/enotify.php:279 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s heeft jou gepord op %2$s" -#: include/enotify.php:268 +#: include/enotify.php:280 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]porde jou[/url]" -#: include/enotify.php:285 +#: include/enotify.php:297 #, php-format msgid "%s %s tagged your post" msgstr "%s %s heeft je post getagged" -#: include/enotify.php:287 +#: include/enotify.php:299 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s heeft jouw bericht gelabeld in %2$s" -#: include/enotify.php:288 +#: include/enotify.php:300 #, 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:300 +#: include/enotify.php:312 #, php-format msgid "%s Introduction received" msgstr "%s Introductie ontvangen" -#: include/enotify.php:302 +#: include/enotify.php:314 #, 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:303 +#: include/enotify.php:315 #, 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:308 include/enotify.php:354 +#: include/enotify.php:320 include/enotify.php:366 #, php-format msgid "You may visit their profile at %s" msgstr "Je kunt hun profiel bezoeken op %s" -#: include/enotify.php:310 +#: include/enotify.php:322 #, 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:317 +#: include/enotify.php:329 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Een nieuwe persoon deelt met je" -#: include/enotify.php:319 include/enotify.php:320 +#: include/enotify.php:331 include/enotify.php:332 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s deelt met jou in %2$s" -#: include/enotify.php:327 +#: include/enotify.php:339 #, php-format msgid "%s You have a new follower" msgstr "%s Je hebt een nieuwe volger" -#: include/enotify.php:329 include/enotify.php:330 +#: include/enotify.php:341 include/enotify.php:342 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Je hebt een nieuwe volger op %2$s: %1$s" -#: include/enotify.php:343 +#: include/enotify.php:355 #, php-format msgid "%s Friend suggestion received" msgstr "%s Vriend suggestie ontvangen" -#: include/enotify.php:345 +#: include/enotify.php:357 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s" -#: include/enotify.php:346 +#: include/enotify.php:358 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s." -#: include/enotify.php:352 +#: include/enotify.php:364 msgid "Name:" msgstr "Naam:" -#: include/enotify.php:353 +#: include/enotify.php:365 msgid "Photo:" msgstr "Foto: " -#: include/enotify.php:356 +#: include/enotify.php:368 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om de suggestie goed of af te keuren." -#: include/enotify.php:364 include/enotify.php:379 +#: include/enotify.php:376 include/enotify.php:391 #, php-format msgid "%s Connection accepted" msgstr "%s Verbinding geaccepteerd" -#: include/enotify.php:366 include/enotify.php:381 +#: include/enotify.php:378 include/enotify.php:393 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s" -#: include/enotify.php:367 include/enotify.php:382 +#: include/enotify.php:379 include/enotify.php:394 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url]." -#: include/enotify.php:372 +#: include/enotify.php:384 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen." -#: include/enotify.php:374 +#: include/enotify.php:386 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen." -#: include/enotify.php:387 +#: include/enotify.php:399 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -728,37 +1096,37 @@ msgid "" "automatically." msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast." -#: include/enotify.php:389 +#: include/enotify.php:401 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen." -#: include/enotify.php:391 +#: include/enotify.php:403 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bezoek %s wanneer je deze relatie wil wijzigen." -#: include/enotify.php:401 mod/removeme.php:63 +#: include/enotify.php:413 mod/removeme.php:63 msgid "[Friendica System Notify]" msgstr "[Friendica systeem notificatie]" -#: include/enotify.php:401 +#: include/enotify.php:413 msgid "registration request" msgstr "registratie verzoek" -#: include/enotify.php:403 +#: include/enotify.php:415 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s" -#: include/enotify.php:404 +#: include/enotify.php:416 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s." -#: include/enotify.php:409 +#: include/enotify.php:421 #, php-format msgid "" "Full Name:\t%s\n" @@ -766,665 +1134,1390 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Volledige naam:\t%s\nAdres van de site:\t%s\nLoginnaam:\t%s (%s)" -#: include/enotify.php:415 +#: include/enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bezoek %s om de aanvraag goed of af te keuren." -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "Item niet gevonden." +#: include/api.php:1127 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." +msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" +#: include/api.php:1141 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." +msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "Ja" +#: include/api.php:1155 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "De maandelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "Toegang geweigerd" +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 +#: src/Module/Settings/Profile/Photo/Crop.php:113 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 +msgid "Profile Photos" +msgstr "Profielfoto's" -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Verbinding met de applicatie goedkeuren" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "Keer terug naar jouw app en voeg deze beveiligingscode in:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Log in om verder te gaan." - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" 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/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "Nee" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Toegang geweigerd" -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "" -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "Gebeurtenissen" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "Beeld" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "Vorige" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "Volgende" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "vandaag" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "maand" - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "week" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "dag" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "lijst" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "Gebruiker niet gevonden" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "Dit kalender formaat is niet ondersteund" - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "Geen exporteerbare data gevonden" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "kalender" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "Geen gedeelde contacten." - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Contact niet gevonden" -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Toegang geweigerd" + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen." + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "Geen ontvanger geselecteerd." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "Bericht kon niet verzonden worden." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Fout bij het verzamelen van berichten." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "Geen ontvanger." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Verstuur privébericht" + +#: 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/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "Aan:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Onderwerp:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Voeg een webadres in" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "Antwoord van de website op afstand werd niet begrepen." -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Onverwacht antwoord van website op afstand:" -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Bevestiging werd correct voltooid." -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "Verzoek mislukt of herroepen." -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "Website op afstand berichtte: " -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "Geen gebruiker gevonden voor '%s'" -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." -#: mod/dfrn_confirm.php:410 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." -#: mod/dfrn_confirm.php:426 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "We vonden op onze webstek geen contactrecord voor jou." -#: mod/dfrn_confirm.php:440 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." -#: mod/dfrn_confirm.php:456 +#: mod/dfrn_confirm.php:455 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." -#: mod/dfrn_confirm.php:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "Kan je contact profiel details op ons systeem niet aanpassen" -#: mod/dfrn_confirm.php:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Naam achtergehouden]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "Bekijk Video" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "Album bekijken" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Recente video's" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel." + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "eerste" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "volgende" + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "Geen resultaten" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Profielmatch" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Wijzigen" + +#: mod/settings.php:200 +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:229 +msgid "Contact CSV file upload error" +msgstr "" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "Importeren Contacten voltooid" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Verhuis boodschap is verzonden naar je contacten" + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "Wachtwoorden zijn niet gelijk" + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "Wachtwoord ongewijzigd" + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "Naam is te kort." + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "Verkeerd wachtwoord." + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "Ongeldig email adres." + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "Kan niet naar dat email adres veranderen." + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Naam" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Doorverwijzing" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "URL pictogram" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Bewerken" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Client sleutel begint met" + +#: mod/settings.php:562 +msgid "No name" +msgstr "Geen naam" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "Geen Addon instellingen geconfigureerd" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "Addon instellingen" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Extra functies" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "ingeschakeld" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "uitgeschakeld" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "Geen" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Sociale netwerken" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "Algemene Sociale Media Instellingen" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "Enkel posts van het het hoogste niveau accepteren van contacten die je volgt." + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "Het systeem doet auto-complete bij posts wanneer een nieuwe reactie aankomt. Dit heeft het neveneffect dat je posts kan ontvangen die zijn gestart door iemand die je niet volgt maar op werd gereageerd door iemand die je wel volgt. Deze instelling deactiveerd dit gedrag. Als je dit activeert zal je enkel posts ontvangen van mensen die je echt volgt." + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "Deactiveer Content Waarschuwing" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Gebruikers op netwerken als Mastodon en Pleroma kunnen een content waarschuwing instellen die hun bericht standaard inklapt. Dit deactiveert het automatisch inklappen en toont de content waarschuwing als titel van het bericht. Dit beïnvloedt andere content filters die je mogelijk ingesteld hebt niet." + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Deactiveer intelligent afkorten" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normaal probeert het systeem de beste link te vinden om toe te voegen aan ingekorte berichten. Als deze optie geactiveerd is, dan zal elk ingekort bericht altijd verwijzen naar het originele friendica bericht." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "Voeg de linktitel toe" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Volg automatisch alle GNU Social (OStatus) volgers/vermelders" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Als je een boodschap ontvangt van een voor jou onbekende OStatus gebruiker, dan beslist deze optie wat er moet gebeuren. Als de optie is geactiveerd, dan zal voor elke onbekende gebruiker een nieuw contact aangemaakt worden." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Standaard groep voor OStatus contacten" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Je verouderd GNU Social account" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Als je hier je oude GNU Social/Statusnet account naam invoert (in het formaat gebruiker@domein.tld), dan zullen je contacten automatisch toegevoegd worden. Het veld zal nadien leeg gemaakt worden." + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "Herstel OStatus inschrijvingen" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: mod/settings.php:692 +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:693 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Beveiliging:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Account Types" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Persoonlijke Pagina Subtypes" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Groepsforum Subtypes" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Persoonlijke pagina" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Account voor een persoonlijk profiel" + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Organisatie Pagina" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "Nieuws pagina" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Groepsforum" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Account voor groepsdiscussies." + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Publiek Forum" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Aanvaardt automatisch all contact aanvragen." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Vereist manuele goedkeuring van contact aanvragen." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +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:814 +msgid "Publish your profile in your local site directory?" +msgstr "Uw profiel publiceren in uw lokale sitemap?" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Je Identiteit adres is '%s' of '%s'." + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Toegestane tekens zijn a-z, A-Z, 0-9 en speciale tekens behalve spatie, geaccentueerde tekens en dubbele punt." + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Bevestig:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Wachtwoord:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "Verwijder OpenID URL" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Je taal:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Je profiel details verbergen voor anonieme bezoekers?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "Anonieme bezoekers zullen alleen je profiel foto zien, je naam en de bijnaam die je gebruikt op je profiel pagina. Je publieke berichten en reacties zullen nog altijd toegankelijk zijn via andere wegen." + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "Maak openbare berichten verborgen" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "Maak alle geplaatste foto's toegankelijk" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jouw profielpagina te posten?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "Je contacten kunnen tags toevoegen aan je berichten." + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan." + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "Vervalinstellingen" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: mod/settings.php:901 +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:902 +msgid "Expire posts" +msgstr "Verlopen berichten" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "Verloop persoonlijke notities" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "Berichten met ster laten vervallen" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "Laat foto's verlopen" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "Wanneer geactiveerd, zullen foto's verlopen." + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "Laat alleen berichten van anderen verlopen" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Activeer desktop notificaties" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Toon desktop pop-up bij nieuwe notificaties" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "Alleen-tekst notificatie emails" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Toon gedetailleerde notificaties" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Geavanceerde Account/Pagina Type Instellingen" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Pas het gedrag van dit account aan voor speciale situaties" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "Importeer contacten" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "Upload bestand" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Verhuis" + +#: mod/settings.php:939 +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 "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." + +#: mod/settings.php:940 +msgid "Resend relocate message to contacts" +msgstr "Stuur verhuis boodschap naar contacten" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} wilt je vriend worden" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} vroeg om zich te registreren" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" + +#: mod/network.php:304 +msgid "No items found" +msgstr "" + +#: mod/network.php:547 +msgid "No such group" +msgstr "Zo'n groep bestaat niet" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "De groep is leeg" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Groep: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Ongeldig contact." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "Laatste activiteit" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "Sorteer naar laatste activiteit" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "Laatste Berichten" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "Sorteren naar ontvangstdatum bericht" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Persoonlijk" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Met ster" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Opnieuw inschrijven bij OStatus contacten" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Fout" +msgstr[1] "Fouten" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "Klaar" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Houd dit scherm open tot het klaar is" + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "Je volgt dit contact niet." + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Ontvolgen is momenteel niet gesupporteerd door je netwerk." + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Disconnecteer/stop met volgen" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "Adres van je identiteit:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Aanvraag indienen" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "Profiel url" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "Nieuw Bericht" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Verwerpen" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Ja" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "Gesprek niet gevonden." + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:300 +msgid "No messages." +msgstr "Geen berichten." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Verwijder bericht" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Verwijder gesprek" + +#: mod/message.php:426 +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:430 +msgid "Send Reply" +msgstr "Verstuur Antwoord" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Jij en %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s en jij" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "Inschrijven bij OStatus contacten" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "Geen contact opgegeven." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "Kon de informatie voor het contact niet ophalen." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "Kon de vrienden van contact niet ophalen." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "Succesvol" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "Mislukt" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "Verboden" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s heet %2$s van harte welkom" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "Gebruiker verwijderde zijn of haar account" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, 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:180 -msgid "Introduction complete." -msgstr "Verzoek voltooid." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: mod/dfrn_request.php:266 -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:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar ben je al bevriend met %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "Domein geblokeerd" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven." +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups." -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "De gebruikers id is %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Verwijder mijn account" + +#: mod/removeme.php:100 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." +"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/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Bevestig" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Verberg dit contact" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Verwijderen" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Voer hier uw webvingeradres (gebruiker@domein.tld) ​​of profiel-URL in. Als dit niet wordt ondersteund door uw systeem (het werkt bijvoorbeeld niet met Diaspora), moet u zich rechtstreeks op uw systeem abonneren met %s" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." -#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan." - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "Uw Webfinger adres of profiel-URL:" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "%s kent je" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "Het gevraagde item bestaat niet of is verwijderd" -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." msgstr "De tijdlijn voor dit item is niet beschikbaar" -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Item niet gevonden" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Ongeldige aanvraag." -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Bericht bewerken" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Beeld is groter dan de limiet ( %s )" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "Bewaren" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "Voeg een webadres in" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Tijdlijn foto's" -#: mod/editpost.php:95 -msgid "web link" -msgstr "webadres" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "video adres" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "audio adres" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voor het begin." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: mod/events.php:523 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "Start datum en Titel zijn verplicht." - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "Vereist" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "Beschrijving:" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "Plaats:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Verstuur" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "Basis" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "Geavanceerd" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "Rechten" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "Kon remote event niet verwijderen" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "Foto's" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "Contactfoto's" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "Uploaden" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "Bestanden" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Het contact kon niet toegevoegd worden." - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "Je hebt deze kontakt al toegevoegd" - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden." - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren." - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden." - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "Adres van je identiteit:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "Profiel url" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "Labels:" - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "Post geupdate." - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "Item is niet opgeslagen." - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "Item kan niet worden opgehaald." - -#: mod/item.php:831 -msgid "Post published." -msgstr "Post gepubliceerd." - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privacyinformatie op afstand niet beschikbaar." - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "Volgers" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "Gemeenschappelijk" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1526,6 +2619,10 @@ msgid "" "successful login." msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1556,1400 +2653,227 @@ msgstr "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1$s\ msgid "Your password has been changed at %s" msgstr "Je wachtwoord is veranderd op %s" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel." +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "Verbinden" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" -#: mod/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "eerste" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "volgende" +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Geen resultaten" - -#: mod/match.php:149 -msgid "Profile Match" -msgstr "Profielmatch" - -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "Nieuw Bericht" - -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "Geen ontvanger geselecteerd." - -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." - -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "Bericht kon niet verzonden worden." - -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "Fout bij het verzamelen van berichten." - -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "Bericht verzonden." - -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "Verwerpen" - -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "Privéberichten" - -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "Gesprek niet gevonden." - -#: mod/message.php:186 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "Verstuur privébericht" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "Aan:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "Onderwerp:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "Geen berichten." - -#: mod/message.php:367 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." - -#: mod/message.php:421 -msgid "Delete message" -msgstr "Verwijder bericht" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "Verwijder gesprek" - -#: mod/message.php:440 -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:444 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: mod/message.php:527 +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 #, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" +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/message.php:529 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: mod/dfrn_request.php:264 #, php-format -msgid "You and %s" -msgstr "Jij en %s" +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." -#: mod/message.php:531 +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: mod/dfrn_request.php:266 +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:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: mod/dfrn_request.php:329 #, php-format -msgid "%s and You" -msgstr "%s en jij" +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar ben je al bevriend met %s." -#: mod/message.php:558 +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Domein geblokeerd" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven." + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: mod/dfrn_request.php:504 +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:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Bevestig" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: mod/dfrn_request.php:531 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" +msgid "Welcome home %s." +msgstr "Welkom terug %s." -#: mod/network.php:568 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "De groep is leeg" - -#: mod/network.php:593 +#: mod/dfrn_request.php:532 #, php-format -msgid "Group: %s" -msgstr "Groep: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "Ongeldig contact." +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "Laatste activiteit" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "Sorteer naar laatste activiteit" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "Laatste Berichten" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "Sorteren naar ontvangstdatum bericht" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "Persoonlijk" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" - -#: mod/network.php:930 -msgid "New" -msgstr "Nieuw" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "Gedeelde links" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "Interessante links" - -#: mod/network.php:951 -msgid "Starred" -msgstr "Met ster" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "Inschrijven bij OStatus contacten" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "Geen contact opgegeven." - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Kon de informatie voor het contact niet ophalen." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Kon de vrienden van contact niet ophalen." - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Klaar" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "Succesvol" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "Mislukt" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "Verboden" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Houd dit scherm open tot het klaar is" - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "iedereen" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Contactinformatie niet beschikbaar" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "Album niet gevonden" - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "Album succesvol gedeeld" - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "Het album was leeg" - -#: mod/photos.php:591 -msgid "a photo" -msgstr "een foto" - -#: mod/photos.php:591 -#, 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:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Beeld is groter dan de limiet ( %s )" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw" - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "Beeld bestand ontbreekt" - -#: mod/photos.php:700 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" - -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg." - -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" - -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "Upload foto's" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "Of selecteer bestaand album:" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "Toon geen bericht op je tijdlijn van deze upload" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: mod/photos.php:1050 -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:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "Verwijder album" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "Album wijzigen" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "Album verwijderen" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "Toon niewste eerst" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "Toon oudste eerst" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1145 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." - -#: mod/photos.php:1147 -msgid "Photo not available" -msgstr "Foto is niet beschikbaar" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "Wil je echt deze foto verwijderen?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "Bewerk foto" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "Foto verwijderen" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "Gebruik als profielfoto" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "Privé foto" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "Bekijk in volledig formaat" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "Labels: " - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "[Selecteer tags om te verwijderen]" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "Onderschrift" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "Een label toevoegen" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "Niet roteren" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "Dit ben jij" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "Reacties" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "Kaart" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "Album bekijken" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0} wilt je vriend worden" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} vroeg om zich te registreren" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "Gebruiker verwijderde zijn of haar account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "De gebruikers id is %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: mod/removeme.php:100 -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:101 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Opnieuw inschrijven bij OStatus contacten" - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Fout" -msgstr[1] "Fouten" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "Wijzigen" - -#: mod/settings.php:201 -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:206 -msgid "Email settings updated." -msgstr "E-mail instellingen opgeslagen" - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "Functies opgeslagen" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "Importeren Contacten voltooid" - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "Verhuis boodschap is verzonden naar je contacten" - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "Wachtwoorden zijn niet gelijk" - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "Wachtwoord ongewijzigd" - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "Naam is te kort." - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "Verkeerd wachtwoord." - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "Ongeldig email adres." - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "Kan niet naar dat email adres veranderen." - -#: mod/settings.php:427 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." - -#: mod/settings.php:430 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." - -#: mod/settings.php:447 -msgid "Settings updated." -msgstr "Instellingen opgeslagen" - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "Naam" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "URL pictogram" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "Bewerken" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "Client sleutel begint met" - -#: mod/settings.php:570 -msgid "No name" -msgstr "Geen naam" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "Geen Addon instellingen geconfigureerd" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "Addon instellingen" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "Extra functies" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "ingeschakeld" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "uitgeschakeld" - -#: mod/settings.php:637 mod/settings.php:638 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: mod/settings.php:638 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "Geen" - -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "Algemene Sociale Media Instellingen" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "Enkel posts van het het hoogste niveau accepteren van contacten die je volgt." - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "Het systeem doet auto-complete bij posts wanneer een nieuwe reactie aankomt. Dit heeft het neveneffect dat je posts kan ontvangen die zijn gestart door iemand die je niet volgt maar op werd gereageerd door iemand die je wel volgt. Deze instelling deactiveerd dit gedrag. Als je dit activeert zal je enkel posts ontvangen van mensen die je echt volgt." - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "Deactiveer Content Waarschuwing" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Gebruikers op netwerken als Mastodon en Pleroma kunnen een content waarschuwing instellen die hun bericht standaard inklapt. Dit deactiveert het automatisch inklappen en toont de content waarschuwing als titel van het bericht. Dit beïnvloedt andere content filters die je mogelijk ingesteld hebt niet." - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "Deactiveer intelligent afkorten" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normaal probeert het systeem de beste link te vinden om toe te voegen aan ingekorte berichten. Als deze optie geactiveerd is, dan zal elk ingekort bericht altijd verwijzen naar het originele friendica bericht." - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "Voeg de linktitel toe" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Volg automatisch alle GNU Social (OStatus) volgers/vermelders" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Als je een boodschap ontvangt van een voor jou onbekende OStatus gebruiker, dan beslist deze optie wat er moet gebeuren. Als de optie is geactiveerd, dan zal voor elke onbekende gebruiker een nieuw contact aangemaakt worden." - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "Standaard groep voor OStatus contacten" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "Je verouderd GNU Social account" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Als je hier je oude GNU Social/Statusnet account naam invoert (in het formaat gebruiker@domein.tld), dan zullen je contacten automatisch toegevoegd worden. Het veld zal nadien leeg gemaakt worden." - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "Herstel OStatus inschrijvingen" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: mod/settings.php:700 -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:701 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "Beveiliging:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "Account Types" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "Persoonlijke Pagina Subtypes" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "Groepsforum Subtypes" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Persoonlijke pagina" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "Account voor een persoonlijk profiel" - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Organisatie Pagina" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "Nieuws pagina" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Groepsforum" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "Account voor groepsdiscussies." - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Publiek Forum" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "Aanvaardt automatisch all contact aanvragen." - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "Vereist manuele goedkeuring van contact aanvragen." - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -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:822 -msgid "Publish your profile in your local site directory?" -msgstr "Uw profiel publiceren in uw lokale sitemap?" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:643 #, php-format msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Voer hier uw webvingeradres (gebruiker@domein.tld) ​​of profiel-URL in. Als dit niet wordt ondersteund door uw systeem (het werkt bijvoorbeeld niet met Diaspora), moet u zich rechtstreeks op uw systeem abonneren met %s" -#: mod/settings.php:828 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." +msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan." -#: mod/settings.php:834 +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "Uw Webfinger adres of profiel-URL:" + +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Je Identiteit adres is '%s' of '%s'." +msgid "%s knows you" +msgstr "%s kent je" -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "Account Instellingen" +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Verbinding met de applicatie goedkeuren" -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Keer terug naar jouw app en voeg deze beveiligingscode in:" -#: mod/settings.php:874 +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Log in om verder te gaan." + +#: mod/api.php:124 msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Toegestane tekens zijn a-z, A-Z, 0-9 en speciale tekens behalve spatie, geaccentueerde tekens en dubbele punt." - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Bevestig:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "Wachtwoord:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "Verwijder OpenID URL" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "Basis Instellingen" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "Volledige Naam:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "Je taal:" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "Standaard locatie:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" -msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" - -#: mod/settings.php:894 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." - -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" - -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." - -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Je profiel details verbergen voor anonieme bezoekers?" - -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Anonieme bezoekers zullen alleen je profiel foto zien, je naam en de bijnaam die je gebruikt op je profiel pagina. Je publieke berichten en reacties zullen nog altijd toegankelijk zijn via andere wegen." - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "Maak openbare berichten verborgen" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "Maak alle geplaatste foto's toegankelijk" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jouw profielpagina te posten?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "Je contacten kunnen tags toevoegen aan je berichten." - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan." - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "Vervalinstellingen" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: mod/settings.php:909 -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:910 -msgid "Expire posts" -msgstr "Verlopen berichten" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "Verloop persoonlijke notities" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "Berichten met ster laten vervallen" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "Laat foto's verlopen" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "Wanneer geactiveerd, zullen foto's verlopen." - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "Laat alleen berichten van anderen verlopen" - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "Activeer desktop notificaties" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "Toon desktop pop-up bij nieuwe notificaties" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "Alleen-tekst notificatie emails" - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "Toon gedetailleerde notificaties" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "Geavanceerde Account/Pagina Type Instellingen" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "Pas het gedrag van dit account aan voor speciale situaties" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "Importeer contacten" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "Upload bestand" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "Verhuis" - -#: mod/settings.php:947 -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 "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." - -#: mod/settings.php:948 -msgid "Resend relocate message to contacts" -msgstr "Stuur verhuis boodschap naar contacten" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "Contact suggestie succesvol genegeerd" - -#: mod/suggest.php:67 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." - -#: mod/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "Wil je echt dit voorstel verwijderen?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "Tag(s) verwijderd" - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "Verwijderen" +"Do you want to authorize this application to access your posts and contacts," +" 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/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "Nee" + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Of - probeerde je een lege file op te laden?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Bestand is groter dan de limiet ( %s )" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." + +#: mod/item.php:710 +msgid "Post updated." +msgstr "Post geupdate." + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "Item is niet opgeslagen." + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "Item kan niet worden opgehaald." + +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "Wil je echt dit item verwijderen?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." @@ -2996,96 +2920,471 @@ msgid "" "select \"Export account\"" msgstr "Om je account te exporteren, ga naar \"Instellingen->Exporteer je persoonlijke data\" en selecteer \"Exporteer account\"" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." -msgstr "Je volgt dit contact niet." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "Gebruiker niet gevonden." -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "Ontvolgen is momenteel niet gesupporteerd door je netwerk." +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "Beeld" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "Contact ontvolgd." +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Vorige" -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "Disconnecteer/stop met volgen" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Volgende" -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "vandaag" -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "Bekijk Video" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "maand" -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Recente video's" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "week" -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "dag" -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "lijst" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "Gebruiker niet gevonden" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "Dit kalender formaat is niet ondersteund" + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "Geen exporteerbare data gevonden" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "kalender" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Bewaren" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "webadres" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "video adres" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "audio adres" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voor het begin." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Start datum en Titel zijn verplicht." + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Vereist" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "Pas aan aan de tijdzone van de gebruiker" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Beschrijving:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Plaats:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Basis" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Geavanceerd" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Rechten" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Kon remote event niet verwijderen" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "Het contact kon niet toegevoegd worden." + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "Je hebt deze kontakt al toegevoegd" + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Labels:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Contactfoto's" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Uploaden" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Bestanden" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "iedereen" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Contactinformatie niet beschikbaar" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Album niet gevonden" + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "Album succesvol gedeeld" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "Het album was leeg" + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:583 +msgid "a photo" +msgstr "een foto" + +#: mod/photos.php:583 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s is gelabeld in %2$s door %3$s" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw" -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "Geen ontvanger." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "Beeld bestand ontbreekt" -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 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." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "Ongeldige aanvraag." +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg." -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat" +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Of - probeerde je een lege file op te laden?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Upload foto's" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Bestand is groter dan de limiet ( %s )" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "Of selecteer bestaand album:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "Tijdlijn foto's" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "Toon geen bericht op je tijdlijn van deze upload" + +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: mod/photos.php:1042 +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:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Verwijder album" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Album wijzigen" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "Album verwijderen" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Toon niewste eerst" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Toon oudste eerst" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "Foto is niet beschikbaar" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "Wil je echt deze foto verwijderen?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Bewerk foto" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "Foto verwijderen" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Gebruik als profielfoto" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "Privé foto" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "Bekijk in volledig formaat" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Labels: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[Selecteer tags om te verwijderen]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Onderschrift" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Een label toevoegen" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "Niet roteren" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "Dit ben jij" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Reacties" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Kaart" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: src/App/Page.php:298 +msgid "toggle mobile" +msgstr "mobiel thema omwisselen" #: src/App/Authentication.php:210 src/App/Authentication.php:262 msgid "Login failed." msgstr "Login mislukt." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Er is een probleem opgetreden bij het inloggen met het opgegeven OpenID. Kijk alsjeblieft de spelling van deze ID na." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "The error message was:" msgstr "De foutboodschap was:" @@ -3102,850 +3401,114 @@ msgstr "Welkom %s" msgid "Please upload a profile photo." msgstr "Upload een profielfoto." -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "Welkom terug %s" - -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: src/App/Page.php:298 -msgid "toggle mobile" -msgstr "mobiel thema omwisselen" - -#: src/App/Router.php:209 +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Pagina niet gevonden" -#: src/App.php:326 -msgid "No system theme config value set." -msgstr "Geen systeem thema configuratie ingesteld." - -#: src/BaseModule.php:150 -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 "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd." - -#: src/Console/ArchiveContact.php:105 -#, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)" - -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "The contacten zijn gearchiveerd" - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Kon geen contact vinden op deze URL (%s)" - -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "Het contact is geblokkeerd van deze node" - -#: src/Console/PostUpdate.php:87 -#, php-format -msgid "Post update version number has been set to %s." -msgstr "Bericht update versie is ingesteld op %s" - -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Controleren op uitgestelde update acties." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Gedaan" - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "uitgestelde bericht update acties uitvoeren" - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd" - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Geef nieuw wachtwoord:" - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Geef gebruikersnaam in:" - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "Geef een bijnaam in:" - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Geef een gebruiker email adres in:" - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Geef uw taalkeuze in (optioneel):" - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "Gebruiker is niet in behandeling." - -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Type \"Ja\" om te wissen %s" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "nieuwere berichten" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "oudere berichten" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "Frequent" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "Ieder uur" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "Twee maal daags" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "Dagelijks" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "Wekelijks" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "Maandelijks" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "E-mail" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "Diaspora" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" -msgstr "Toespraak" - -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "Diaspora Connector" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "GNU Social Connector" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "Algemene functies" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Foto Locatie" - -#: src/Content/Feature.php:98 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart." - -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "Exporteer Publieke Kalender" - -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "Mogelijkheid voor bezoekers om de publieke kalender te downloaden" - -#: src/Content/Feature.php:100 -msgid "Trending Tags" -msgstr "Populaire Tags" - -#: src/Content/Feature.php:100 -msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Toon een widget voor communitypagina met een lijst van de populairste tags in recente openbare berichten." - -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "Auto-vermelding Forums" - -#: src/Content/Feature.php:106 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Voeg toe/verwijder vermelding wanneer een forum pagina geselecteerd/gedeselecteerd wordt in het ACL venster." - -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" -msgstr "Expliciete vermeldingen" - -#: src/Content/Feature.php:107 -msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld." - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "Netwerk Zijbalk" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "Archieven" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" -msgstr "Proctocol Filter" - -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde protocollen" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: src/Content/Feature.php:120 -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)" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "Netwerk Gedeelde Links Tab" - -#: src/Content/Feature.php:121 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Activeer tab om alleen Netwerk berichten met links in te tonen" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "Geavanceerde Profiel Instellingen" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "Lijst Fora op" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina" - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "Tag Wolk" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Voorzie een persoonlijk tag wolk op je profiel pagina" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "Toon Lidmaatschap Datum" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "Toon lidmaatschap datum in profiel" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "Forums" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "Externe link naar het forum" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "toon meer" - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "Ga terug" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "@naam, !forum, #labels, inhoud" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "Uitloggen" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "Login" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "Inloggen" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "Tijdlijn" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "Jouw berichten en gesprekken" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "Profiel" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "Jouw foto's" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "Video's" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "Je video's" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "Persoonlijke nota's" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "Je persoonlijke nota's" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "Tijdlijn" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "Registreer" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "Maak een accoount" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "Help" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "Apps" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "Zoeken" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "Volledige tekst" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "Labels" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "Contacten" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "Website" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "Gesprekken op deze en andere servers" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "Gids" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "Personengids" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "Informatie" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "informatie over deze friendica server" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "Gebruiksvoorwaarden op deze Friendica server" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "Netwerk" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "Gesprekken van je vrienden" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "Verzoeken" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "Notificaties" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "Privéberichten" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "Inbox" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: src/Content/Nav.php:274 -msgid "Accounts" -msgstr "Gebruikers" - -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "Instellingen" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "Account instellingen" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "Beheer" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "Navigatie" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "Sitemap" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "Ingebedde inhoud" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "vorige" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "laatste" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: src/Content/Text/BBCode.php:1047 +#: src/Database/DBStructure.php:93 #, php-format -msgid "%2$s %3$s" +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nFout %d is opgetreden tijdens database update:\n%s\n" + +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Fouten opgetreden tijdens database aanpassingen:" + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." msgstr "" -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "Ongeldig bron protocol" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "Ongeldig verbinding protocol" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "Meer berichten aan het laden..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "Het einde" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "Volg" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "Exporteer" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "Exporteer kalender als ical" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "Exporteer kalender als csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "Geen contacten" - -#: src/Content/Widget/ContactBlock.php:104 +#: src/Database/DBStructure.php:300 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" +msgid "%s: Database update" +msgstr "%s: Database update" -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "Bekijk contacten" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: src/Content/Widget/TrendingTags.php:51 +#: src/Database/DBStructure.php:600 #, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Populaire Tags (laatste %d uur)" -msgstr[1] "Populaire Tags (laatste %d uur)" +msgid "%s: updating %s table." +msgstr "%s: tabel %s aan het updaten." -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "Meer Populaire Tags" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "Nieuw Contact toevoegen" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "Voeg een webadres of -locatie in:" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" - -#: src/Content/Widget.php:72 +#: src/Database/Database.php:659 src/Database/Database.php:762 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +msgid "Database error %d \"%s\" at \"%s\"" +msgstr "" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "Zoek mensen" +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeelden: Jan Peeters, Vissen" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "Zoek" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "Willekeurig Profiel" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "Globale gids" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "Lokale gids" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Groepen" - -#: src/Content/Widget.php:220 -msgid "Everyone" -msgstr "Iedereen" - -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "Volgend" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "Gemeenschappelijke vrienden" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "Relaties" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "Alle Contacten" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "Protocollen" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "Alle protocollen" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "Bewaarde Mappen" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "Alles" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "Categorieën" - -#: src/Content/Widget.php:449 +#: src/Core/Update.php:215 #, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gedeeld contact" -msgstr[1] "%d gedeelde contacten" +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." + +#: src/Core/Update.php:280 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn." + +#: src/Core/Update.php:286 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "De foutboodschap is\n[pre]%s[/pre]" + +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "" + +#: src/Core/Update.php:320 +#, php-format +msgid "" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\t\tDe Friendica database is succesvol geupdatet van %s naar %s" #: src/Core/ACL.php:155 msgid "Yourself" msgstr "Jezelf" +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "Volgers" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "Gemeenschappelijk" + #: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Verzenden per e-mail" @@ -3983,409 +3546,409 @@ msgstr "Behalve aan:" msgid "Connectors" msgstr "Connectors" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Het databaseconfiguratiebestand \"config/local.config.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. " -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "Zie het bestand \"INSTALL.txt\"." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" -msgstr "Als je geen command line versie van PHP geïnstalleerd hebt op je server, dan kan je de achtergrondprocessen niet draaien. Zie 'Installatie van de worker'" +msgstr "" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "PATH van het PHP commando" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Vul het volledige pad in naar het php programma. Je kunt dit leeg laten om de installatie verder te zetten." -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "PHP-opdrachtregel" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP uitvoerbaar bestand is niet de php cli binary (zou kunnen de cgi-fgci versie zijn)" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "Gevonden PHP versie:" -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fout: de \"openssl_pkey_new\" functie op dit systeem kan geen encryptie sleutels genereren" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "Genereer encryptie sleutels" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Fout: PDO of MySQLi PHP module vereist maar niet geïnstalleerd." -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fout: de MySQL driver voor PDO is niet geïnstalleerd." -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "PDO of MySQLi PHP module" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "Fout: XML PHP module vereist maar niet geinstalleerd." -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "XML PHP module" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "libCurl PHP module" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "GD graphics PHP module" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP module" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "mb_string PHP module" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "iconv PHP module" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "Fout: iconv PHP module vereist maar niet geïnstalleerd." -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "POSIX PHP module" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "Fout: POSIX PHP module vereist maar niet geïnstalleerd." -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Het installatieprogramma moet een bestand \"local.config.php\" in de \"config\" map van je webserver aanmaken, maar kan dit niet doen. " -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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 "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." -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand local.config.php in Friendica \"config\" map. " -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" msgstr "config/local.config.php is schrijfbaar " -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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 "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." -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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 "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." -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "view/smarty3 is schrijfbaar" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." msgstr "Url rewrite in .htaccess werkt niet. Heb je .htaccess-dist gekopieerd naar .htaccess?" -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" msgstr "Fout boodschap van Curl bij ophalen" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "Url rewrite werkt correct" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extensie is niet geïnstalleerd" -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extensie is geïnstalleerd" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick ondersteunt GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "Database al in gebruik." -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "Kon geen toegang krijgen tot de database." -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "Maandag" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "Dinsdag" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "Woensdag" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "Donderdag" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "Vrijdag" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "Zaterdag" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "Zondag" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "Januari" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "Februari" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "Maart" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "April" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "Mei" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "Augustus" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "September" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "November" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "December" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "Maa" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "Din" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "Woe" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "Don" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "Vrij" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "Zat" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "Zon" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "Maa" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "Aug" @@ -4393,15 +3956,15 @@ msgstr "Aug" msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "Dec" @@ -4453,39 +4016,6 @@ msgstr "afpoeieren" msgid "rebuffed" msgstr "afgepoeierd" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn." - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "De foutboodschap is\n[pre]%s[/pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tDe Friendica database is succesvol geupdatet van %s naar %s" - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Fout bij decoderen van het account bestand" @@ -4518,41 +4048,405 @@ msgstr "Fout bij het aanmaken van het gebruikersprofiel" msgid "Done. You can now login with your username and password" msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "" +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Legacy module bestand niet gevonden: %s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(geen onderwerp)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nFout %d is opgetreden tijdens database update:\n%s\n" +"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." -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "Fouten opgetreden tijdens database aanpassingen:" - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" -msgstr "%s: Database update" +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" -#: src/Database/DBStructure.php:546 +#: src/Object/EMail/ItemCCEMail.php:42 +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." + +#: src/Object/EMail/ItemCCEMail.php:46 #, php-format -msgid "%s: updating %s table." -msgstr "%s: tabel %s aan het updaten." +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "Deze entry werd bewerkt" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Privébericht" + +#: src/Object/Post.php:213 +msgid "pinned item" +msgstr "" + +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "Verwijder lokaal" + +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "Verwijder globaal" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "Verwijder lokaal" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "Bewaren in map" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "Ik zal er zijn" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "Ik zal er niet zijn" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "Ik ga misschien" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "Negeer gesprek" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "Stop met gesprek te negeren" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "verwissel negeer status" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "ster toevoegen" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "ster verwijderen" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "ster toevoegen of verwijderen" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "met ster" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "label toevoegen" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "leuk" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "niet leuk" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Delen" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "Delen" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "aan" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "via" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "wall-to-wall" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "Antwoord aan %s" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "Meer" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "Meldingstaak is in behandeling" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "Levering aan externe servers is in behandeling" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "Toon meer" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "Toon minder" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "reactie" +msgstr[1] "reacties" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "The contacten zijn gearchiveerd" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Kon geen contact vinden op deze URL (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "Het contact is geblokkeerd van deze node" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "Geef nieuw wachtwoord:" + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "Geef gebruikersnaam in:" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "Geef een bijnaam in:" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "Geef een gebruiker email adres in:" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "Geef uw taalkeuze in (optioneel):" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "Gebruiker is niet in behandeling." + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Type \"Ja\" om te wissen %s" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Bericht update versie is ingesteld op %s" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Controleren op uitgestelde update acties." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Gedaan" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "uitgestelde bericht update acties uitvoeren" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd" + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "Met:" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "Sinds:" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Geloof:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Houdt van:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Samenvatting" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Televisie" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Werk" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "School/opleiding" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "Geen systeem thema configuratie ingesteld." + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "Vriendschapsvoorstel" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "Vriendschapsverzoek" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "Nieuwe Volger" @@ -4597,3262 +4491,260 @@ msgstr "%s kan aanwezig zijn op %s's gebeurtenis" msgid "%s is now friends with %s" msgstr "%s is nu bevriend met %s" -#: src/LegacyModule.php:49 +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Legacy module bestand niet gevonden: %s" +msgid "No more %s notifications." +msgstr "Geen %s notificaties meer." -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" -msgstr "Ontvolgen" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Toon ongelezen" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "Verwijder contact" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Toon alles" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "Je moet ingelogd zijn om deze pagina te tonen." + +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Notificaties" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "Notificatiesoort:" + +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" +msgstr "Voorgesteld door:" + +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 #: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 msgid "Approve" msgstr "Goedkeuren" -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "Organisatie" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Denkt dat je hem of haar kent:" -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "Nieuws" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "Zal je connectie bidirectioneel zijn of niet?" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "Connectie URL ontbreekt." - -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken." - -#: src/Model/Contact.php:2336 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "Het opgegeven profiel adres bevat geen adequate informatie." - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "Er werd geen auteur of naam gevonden." - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "Er kan geen browser URL gematcht worden met dit adres." - -#: src/Model/Contact.php:2359 -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." - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: src/Model/Contact.php:2366 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site." - -#: src/Model/Contact.php:2371 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen." - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "Het was niet mogelijk informatie over dit contact op te halen." - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "Begint:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "Eindigt:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "de hele dag" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "Sep" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "Geen gebeurtenissen te tonen" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l j F" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "Duplicate gebeurtenis" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "Verwijder gebeurtenis" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "Toon kaart" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "Verberg kaart" - -#: src/Model/Event.php:1042 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "%s's birthday" -msgstr "%s's verjaardag" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gefeliciteerd %s" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "Item bewaard" - -#: src/Model/Group.php:92 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. " +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "%s als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed." -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy groep voor nieuwe contacten" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Iedereen" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "verander" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "toevoegen" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Verander groep" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Contacten bestaan in geen enkele groep" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "Groepsnaam:" - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Bewerk groepen" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "activiteit" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "bericht" - -#: src/Model/Item.php:3576 +#: src/Module/Notifications/Introductions.php:127 #, php-format -msgid "Content warning: %s" -msgstr "Waarschuwing inhoud: %s" +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "%s als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed." -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "bytes" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Vriend" -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "Bekijk op aparte pagina" +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Volger" -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "bekijk op aparte pagina" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "Website:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 msgid "About:" msgstr "Over:" -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "Stop volgen" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Atom feed" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 msgid "Network:" msgstr "Netwerk:" -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "G l j F" +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "d F" +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" +msgstr "Een gedecentraliseerd sociaal netwerk" -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[vandaag]" +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Uitgelogd." -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Ongeldige code, probeer het opnieuw." -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "Evenementen de komende 7 dagen:" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s verwelkomt %2$s" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Database opslag faalde om %s te vernieuwen" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Database opslag mislukt om gegevens in te voegen" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "" - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Geef een geldige bestaande folder in" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "Login mislukt" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "Niet genoeg informatie om te authentificeren" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "Wachtwoord mag niet leeg zijn" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "Lege wachtwoorden zijn niet toegestaan" - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander." - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "Het wachtwoord mag geen geaccentueerde letters, spaties of dubbele punten bevatten (:)" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid." - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "Gebruikersnaam moet minimaal %s tekens bevatten." -msgstr[1] "Gebruikersnaam moet minimaal %s tekens bevatten" - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "Gebruikersnaam mag maximaal %s tekens bevatten." -msgstr[1] "Gebruikersnaam mag maximaal %s tekens bevatten." - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." - -#: src/Model/User.php:701 -msgid "Your email domain is not among those allowed on this site." -msgstr "Je e-maildomein is op deze website niet toegestaan." - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "De bijnaam werd geblokkeerd voor registratie door de node admin" - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Je bijnaam mag alleen a-z, 0-9 of _ bevatten." - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "Er is een fout opgetreden tijdens de registratie. Probeer opnieuw." - -#: src/Model/User.php:806 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw." - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw." - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "Vrienden" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Er is een fout opgetreden bij het aanmaken van je standaard contact groep. Probeer opnieuw." - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\tBeste %1$s,\n\t\t\tde administrator van %2$s heeft een gebruiker voor je aangemaakt." - -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "\n\t\tDe logingegevens zijn als volgt:\n\n\t\tSite Locatie:\t%1$s\n\t\tLogin Naam:\t\t%2$s\n\t\tWachtwoord:\t\t%3$s\n\n\t\tJe kunt je wachtwoord wijzigen vanuit je gebruikers \"Instellingen\" pagina\n\t\tnadat je bent ingelogd.\n\n\t\tGelieve even de tijd te nemen om de andere gebruikersinstellingen te controleren op die pagina.\n\n\t\tAls je wilt kun je ook wat basisinformatie aan je standaard profiel toevoegen\n\t\t(op de \"Profielen\" pagina) zodat ander mensen je makkelijk kunnen vinden.\n\n\t\tWe bevelen je aan om je volledige naam in te vullen, een profielfoto en\n\t\tenkele profiel \"sleutelwoorden\" toe te voegen (zeer zinvol om nieuwe vrienden te maken) - en\n\t\tmisschien aangeven in welk land je woont; als je niet specifieker dan dat wenst te zijn.\n\n\t\tWe respecteren volledig je recht op privésfeer en geen van deze items zijn noodzakelijk.\n\t\tAls je hier nieuw bent en nog niemand kent, dan kunnen zij\n\t\tje helpen om enkele nieuwe en interessante vrienden te maken.\n\n\t\tAls je ooit je gebruiker wenst te verwijderen, dan kan je dat doen op %1$s/removeme\n\n\t\tBedankt en welkom bij %4$s." - -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "Registratie details voor %s" - -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tBedankt voor uw registratie op %2$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3$s\n\t\t\tGebruikersnaam:\t\t%4$s\n\t\t\tWachtwoord:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "Registratie bij %s" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\tBedankt voor je inschrijving op %2$s. Je gebruiker is aangemaakt.\n\t\t\t" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tDe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%3$s\n\t\t\tLogin Naam:\t\t%1$s\n\t\t\tWachtwoord:\t\t%5$s\n\n\t\t\tJe kunt je wachtwoord in de \"Instellingen\" pagina veranderen nadat je bent ingelogd.\n\n\t\t\tNeem een ogenblik de tijd om je andere instellingen na te kijken op die pagina.\n\n\t\t\tJe kunt ook wat basis informatie toevoegen aan je standaard profiel\n\t\t\t(in de \"Profielen\" pagina) zodat anderen je gemakkelijk kunnen vinden.\n\n\t\t\tWe raden aan je volledige naam in te vullen, een profiel foto toe te voegen,\n\t\t\tenkele profiel \"sleutelwoorden\" (zeer handig om nieuwe vrienden te leren kennen) - en\n\t\t\tmisschien in welk land je woont; als je niet meer details wil geven.\n\t\t\tWe respecteren je privacy volledig, en geen van deze velden zijn verplicht.\n\t\t\tAls je nieuw bent en niemand kent, dan kunnen zij je misschien\n\t\t\thelpen om enkele nieuwe en interessante vrienden te leren kennen.\n\n\t\t\tAls je ooit je account wil verwijderen, dan kan je dat via %3$s/removeme\n\n\t\t\tBedankt en welkom bij %2$s." - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "Addon niet gevonden." - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "Addon %s gedeactiveerd" - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "Addon %s geactiveerd" - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "Uitschakelen" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "Inschakelen" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "Beheer" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Addons" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "Schakelaar" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "Auteur:" - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "Onderhoud:" - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "Installatie Addon %s is mislukt." - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Herlaad actieve addons" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2$s" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact is niet langer geblokkeerd" -msgstr[1] "%s contacten zijn niet langer geblokkeerd" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Remote Contact Blokkeerlijst" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Blokkeer Remote Contact" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "Alles selecteren" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "selecteer geen" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "Geen enkel remote contact is geblokkeerd van deze node." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Geblokkeerde Remote Contacts" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Blokkeer Nieuwe Remote Contacten" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Foto" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Reden" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s geblokkeerde contacten in totaal" -msgstr[1] "%s geblokkeerde contacten in totaal" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "URL van de remote contact die je wil blokkeren." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Reden voor blokkeren" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "Site blokkeerlijst opgeslagen" - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "Reden van de blokkering" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "Vink aan om dit item van de blokkeerlijst te verwijderen" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "Voeg nieuw item toe aan de blokkeerlijst" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "Reden voor blokkering" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "Voeg Item toe" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "Sla veranderingen in de blokkeerlijst op" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "Huidige Items in de blokkeerlijst" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "Verwijder item uit de blokkeerlijst" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "Item verwijderen uit de blokkeerlijst?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Wijziging succesvol gemarkeerd " - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Database structuur update %s werd met succes toegepast." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Uitvoering van de database structuur update %s is mislukt met fout: %s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Uitvoering van %s mislukt met fout: %s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Wijziging %s geslaagd." - -#: src/Module/Admin/DBSync.php:86 -#, 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." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Er was geen bijkomende update functie %s die moest opgeroepen worden." - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "Geen mislukte wijzigingen" - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "Controleer de database structuur" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "Mislukte wijzigingen" - -#: src/Module/Admin/DBSync.php:116 -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." - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "Probeer deze stap automatisch uit te voeren" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Fixeer feature %s " - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Beheer Bijkomende Features" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "Anders" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "onbekend" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent." - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "Het Automatisch Achterhaalde Contact Gids feature is niet geactiveerd, het zal de hier getoonde informatie verbeteren." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Federatie Statistieken" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Op dit moment kent deze node %d nodes met %d geregistreerde gebruikers op basis van de volgende patformen:" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Item gemarkeerd om te verwijderen." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Verwijder Item" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Verwijder dit Item" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "De GUID van het item dat je wil verwijderen." - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "Item identificatie" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "" - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "Log instellingen opgeslagen" - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "PHP log momenteel geactiveerd" - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "PHP log momenteel gedeactiveerd" - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "Logs" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "Wis" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "Activeer Debugging" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Logbestand" - -#: src/Module/Admin/Logs/Settings.php:87 -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. de hoogste folder binnen je Friendica-installatie." - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "Log niveau" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "PHP logging" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de 'error_log' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie '1' voor 'log_errors' en 'display_errors' activeert deze opties, configureer '0' om ze te deactiveren. " - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Fout bij het openen van log file %1$s .\\r\\n
Kijk na of bestand %1$s bestaat en mag gelezen worden." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Kon log file %1$s niet openen.\\r\\n
Kijk na of bestand %1$s mag gelezen worden." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "Bekijk Logs" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Inspecteer wachtrij van uitgestelde workers" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd" - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Taakwachtrij inspecteren" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Taak parameters" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Aangemaakt" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Prioriteit" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Kan de basis url niet verwerken. Moet minstens zijn ://" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "" - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "Site instellingen opgeslagen" - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimenteel)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "Geen groepspagina voor lokale gebruikers" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "Geen groepspagina" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "Publieke berichten van gebruikers van deze site" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "Publieke berichten van het gefedereerde netwerk" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk" - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "Gebruiker" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "Gebruikers, Globale contacten" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "Gebruikers, Globale Contacten/noodoplossing" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "Een maand" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "Drie maanden" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "Een half jaar" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "Een jaar" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "Server voor meerdere gebruikers" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "Gesloten" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "Toestemming vereist" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "Open" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "Verplicht alle links om SSL te gebruiken" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "Geen rekening mee houden" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "Neem de stabiele versie in rekening" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "Neem de ontwikkel versie in rekening" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "geen" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "Directe contacten" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "Contacten van contacten" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Website" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "Opnieuw de gebruikers naar de gids publiceren" - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "Registratie" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "Uploaden bestand" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "Beleid" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "Automatisch Achterhaalde Contact Gids" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "Performantie" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "Worker" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "Boodschap Relais" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "Verhuis node" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "" - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "Site naam" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "Verzender Email" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Het email adres als afzender van notificatie emails." - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "Snelkoppeling icoon" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "Link naar een icoon dat zal gebruikt worden voor browsers." - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "Pictogram voor smartphones" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link naar een icoon dat zal gebruikt worden voor tablets en mobiele telefoons." - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "Bijkomende Info" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "Voor publieke servers: je kan bijkomende informatie hier toevoegen die zal opgelijst zijn op %s/servers." - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "Systeemtaal" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "Systeem thema" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "Mobiel systeem thema" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "Beleid SSL-links" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "Dwing SSL af" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen." - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "Verberg de 'help' uit het navigatiemenu" - -#: src/Module/Admin/Site.php:632 -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." - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "Server voor één gebruiker" - -#: src/Module/Admin/Site.php:633 -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." - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "" - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "Maximum afbeeldingsgrootte" - -#: src/Module/Admin/Site.php:637 -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." - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "Maximum afbeeldingslengte" - -#: src/Module/Admin/Site.php:638 -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." - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "JPEG afbeeldingskwaliteit" - -#: src/Module/Admin/Site.php:639 -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." - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "Registratiebeleid" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "Maximum aantal registraties per dag" - -#: src/Module/Admin/Site.php:642 -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." - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "Registratietekst" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken." - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "Verboden bijnamen" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld." - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "Verlaten accounts na x dagen" - -#: src/Module/Admin/Site.php:645 -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." - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "Toegelaten vriend domeinen" - -#: src/Module/Admin/Site.php:646 -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." - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "Toegelaten e-mail domeinen" - -#: src/Module/Admin/Site.php:647 -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." - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "Geen OEmbed richt content" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst." - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "Sta OEmbed domeinen toe" - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Met komma's gescheiden lijst van domeinen waarvoor oembed content mag getoond worden. Wildcards zijn toegelaten." - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: src/Module/Admin/Site.php:650 -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." - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "Dwing publiceren af" - -#: src/Module/Admin/Site.php:651 -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." - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden" - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "Algemene gids URL" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie." - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "Privéberichten als standaard voor nieuwe gebruikers" - -#: src/Module/Admin/Site.php:653 -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." - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" - -#: src/Module/Admin/Site.php:654 -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." - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu." - -#: src/Module/Admin/Site.php:655 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden." - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "Privé beelden in berichten niet inwerken" - -#: src/Module/Admin/Site.php:656 -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 "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren." - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "Expliciete inhoud" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina." - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "Sta Gebruikers toe om remote_self te configureren" - -#: src/Module/Admin/Site.php:658 -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 "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. " - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "Blokkeer meerdere registraties" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "Schakel OpenID uit" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "Schakel OpenID-ondersteuning uit voor registratie en logins." - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "Geen Volledige-Naamscontrole" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "" - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "Groepspagina voor bezoekers" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's." - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "Berichten per gebruiker op de groepspagina" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "" - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus ondersteuning kan alleen geactiveerd worden als de gespreksstroom geactiveerd is." - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is." - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "Diaspora ondersteuning activeren" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "Laat alleen Friendica contacten toe" - -#: src/Module/Admin/Site.php:669 -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." - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "Controleer SSL" - -#: src/Module/Admin/Site.php:670 -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." - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "Proxy-gebruiker" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "Netwerk timeout" - -#: src/Module/Admin/Site.php:673 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "Maximum gemiddelde belasting" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Gemiddelde Belasting (Frontend)" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximum systeem belasting wanneer de frontend ermee ophoudt - standaard waarde 50." - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "Minimaal Geheugen" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)." - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "Maximum tabel grootte voor optimisatie" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Maximum tabel grootte (in MB) voor de automatisch optimisatie. Geef -1 op om dit te deactiveren." - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "Minimum niveau van fragmentatie" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Minimum fragmentatie niveau om de automatische optimisatie te starten - standaard waarde is 30%." - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "Regematige controle van de globale contacten" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Als dit geactiveerd is, dan worden de globale contacten regelmatig gecheckt naar ontbrekende of verlopen data and the vitaliteit van de contacten en servers." - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "" - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "Dagen tussen herbevraging" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Aantal dagen waarna de server opnieuw bevraagd wordt naar zijn contacten." - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "Ontdek contacten van andere servers" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "" - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "Tijdspanne voor het ophalen van globale contacten" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Wanneer ontdekking is geactiveerd, dan definieert deze waarde de tijdspanne voor de activiteit van globale contacten die opgehaald worden van andere servers." - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "Doorzoek de lokale gids" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt." - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "Publiceer server informatie" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "Controleer upstream versie" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Activeer het controleren op nieuwe versies van Friendica bij github. Als er een nieuwe versie is, dan word je geïnformeerd in the administratie paneel." - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "Onderdruk Tags" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Onderdruk het tonen van een lijst van hastags op het einde van het bericht." - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "Database opruimen" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Verwijder oude remote items, database weesrecords en oude content van andere helper tabellen." - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "Levensduur van remote items" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "Als de database opruiming is geactiveerd, dan definieert dit na hoeveel dagen remote items verwijderd zullen worden. Eigen items, en gemarkeerde of opgeslagen items worden altijd behouden. 0 deactiveert dit gedrag." - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "Levensduur van niet geclaimde items" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items." - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "Levenstijd van ruwe gespreksdata" - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen." - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "Pad naar cache voor items" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Item caches bufferen gegenereerde bbcodes en externe beelden." - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "Cache tijdsduur in seconden" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Hoe lang moeten de cache bestanden bijgehouden worden? Standaard waarde is 86400 seconden (een dag). Zet de waarde op -1 om de item cache te deactiveren." - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "Maximum aantal reacties per bericht" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100." - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "Tijdelijk pad" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. " - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "Schakel beeld proxy uit" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "De beeld proxy verhoogt de performantie en privacy. Gebruik dit niet op systemen met erg lage bandbreedte." - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "Zoek alleen in tags" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Het opzoeken van tekst kan grote systemen extreem vertragen." - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "Nieuwe basis url" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Verander de basis url voor deze server. Stuurt een verhuis boodschap naar all Friendica en Diaspora* contacten." - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "RINO encryptie" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "Encryptie laag tussen nodes." - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "Geactiveerd" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "Maximum aantal parallelle workers" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d" - -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "Activeer fastlane" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit." - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "Activeer frontend worker" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "" - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "Schrijf in op relais" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Activeert het ontvangen van publieke berichten vanwege de relais. Ze zullen inbegrepen zijn in de zoekresultaten, tags waarop je ingeschreven bent en op de globale groepspagina." - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "Relais server" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Adres van de relais server waar publieke berichten naartoe moeten gezonden worden. Bijvoorbeeld https://relay.diasp.org" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "Directe relais transfer" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Activeert directe relais transfer naar andere servers zonder gebruik van relais servers" - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "Scope van de relais" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "" - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "alle" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "tags" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "Server tags" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "" - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "Sta gebruiker tags toe." - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "" - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "Start verhuis" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
" - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1$s, upstream versie is %2$s" - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken." - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "" - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "De worker werd nooit uitgevoerd. Best je database structuur eens nakijken!" - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken." - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie." - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "" - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp." - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "" - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "" - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "" - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "Normaal account" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "Automatische Volger Account" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "Publiek Forum account" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "Automatisch Vriendschapsaccount" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "Blog Account" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "Privé Forum Account" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "Bericht-wachtrijen" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "Server instellingen." - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Samenvatting" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "Registraties die in de wacht staan" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "Versie" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "Actieve addons" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "Thema-instellingen opgeslagen" - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "" - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "" - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "" - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "Thema's" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "" - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Herlaad actieve thema's" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "De instellingen voor Servicevoorwaarden zijn bijgewerkt." - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "Toon Gebruiksvoorwaarden" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina." - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "Toon Privacy Verklaring" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "Privacy Verklaring Voorbeeldweergave" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "De Gebruiksvoorwaarden" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager." - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "Je kan jezelf niet verwijderen" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s gebruiker verwijderd" -msgstr[1] "%s gebruikers verwijderd" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Account goedgekeurd." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Privé Forum" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Registratiedatum" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Laatste login" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "Type" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Gebruiker toevoegen" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "Gebruikersregistraties wachten op een bevestiging" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "Gebruiker wacht op permanente verwijdering" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Registratiedatum" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "Geen registraties." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Nota van de gebruiker" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Weiger" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "Gebruiker geblokeerd" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Sitebeheerder" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Account verlopen" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "Nieuwe gebruiker" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "" - -#: src/Module/Admin/Users.php:267 -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?" - -#: src/Module/Admin/Users.php:268 -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?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Naam van nieuwe gebruiker" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Bijnaam" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Bijnaam van nieuwe gebruiker" - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "E-mailadres van nieuwe gebruiker" - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Toepassingen" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "Beheerde gebruiker heeft geen toegang tot de beheerpagina's. Log opnieuw in als de hoofdgebruiker." - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Overzicht" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Configuratie" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "Extra functies" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "Database" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "DB aanpassingen" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Inspecteer uitgestelde workers" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Taakwachtrij inspecteren" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Hulpmiddelen" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Contact Blokkeerlijst" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Server Blokkeerlijst" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Diagnostiek" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "PHP Info" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "probe adres" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "check webfinger" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "" - -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "Addon Features" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "Gebruikersregistraties wachten op bevestiging" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "Profieldetails" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "Mensen Zoeken - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "Forum doorzoeken - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Account" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 #: src/Module/Settings/TwoFactor/Index.php:105 msgid "Two-factor authentication" msgstr "2-factor authenticatie" -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Weergave" - -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" -msgstr "Beheer Gebruikers" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Account verwijderen" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "" - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "Het bericht is aangemaakt" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "Contactinstellingen toegepast." - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: src/Module/Contact/Advanced.php:113 +#: src/Module/Security/TwoFactor/Verify.php:81 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "WAARSCHUWING: Dit is zeer geavanceerd en als je verkeerde informatie invult, zal je mogelijk niet meer kunnen communiceren met deze contactpersoon." +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

" -#: src/Module/Contact/Advanced.php:114 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "Geen mirroring" - -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "Spiegel als geforward bericht" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "Spiegel als mijn eigen bericht" - -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" - -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "Contact data opnieuw ophalen" - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "Mijn identiteit elders" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "Berichten van dit contact spiegelen" - -#: src/Module/Contact/Advanced.php:148 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten." - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "Bijnaam account" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "URL account" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" -msgstr "Account URL Alias" - -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "URL vriendschapsbevestiging" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "Notificatie Endpoint URL" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" - -#: src/Module/Contact.php:88 +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contact bewerkt." -msgstr[1] "%d contacten bewerkt." +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Heb je je telefoon niet? Geef een twee-factor herstelcodecode in" -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Voer een code in van uw authenticatie-app" -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "Contact opgeslagen" +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "Controleer de code en voltooi de login" -#: src/Module/Contact.php:385 -msgid "Contact not found" -msgstr "" - -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: src/Module/Contact.php:448 -msgid "Drop contact" -msgstr "Contact vergeten" - -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: src/Module/Contact.php:495 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" +msgid "Remaining recovery codes: %d" +msgstr "Resterende herstelcodes: %d" -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Twee-factorenherstel" -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "Nooit" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "Haal meer informatie op van de feeds" - -#: src/Module/Contact.php:553 +#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags." +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" +msgstr "

U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

" -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "Haal informatie op" +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Voer een herstelcode in" -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "Haal sleutelwoorden op" +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Voer de herstelcode in en voltooi de login" -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "Haal informatie en sleutelwoorden op" +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Registreer" -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "Contact instellingen" +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "Uw OpenID" -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "Contact" - -#: src/Module/Contact.php:585 -msgid "Their personal note" -msgstr "Hun persoonlijke nota" - -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "Toon gesprekken" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "Wijzig nu" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "Wait op bevestiging van de connectie" - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: src/Module/Contact.php:613 +#: src/Module/Security/Login.php:129 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" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker." -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Stuur een notificatie voor elk bericht van dit contact" +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Uitloggen" -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "Sleutelwoorden op de zwarte lijst" +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Login" -#: src/Module/Contact.php:616 +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Wachtwoord:" + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Onthoud mij" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "servicevoorwaarden" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "privacybeleid" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "OpenID-protocolfout. Geen ID terug ontvangen" + +#: src/Module/Security/OpenID.php:92 msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen." -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "Acties" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "In behandeling" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "Toon alleen contacten in behandeling" - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "Genegeerd" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "Gearchiveerd" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "Verborgen" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "Organiseer je contact groepen" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 -#, php-format -msgid "Results for: %s" -msgstr "Resultaten voor: %s" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "Archiveer" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "Bulk Acties" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "Gesprekken gestart door dit contact" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "Berichten en reacties" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "Alle contacten zien" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "Bekijk alle gemeenschappelijke vrienden" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "Is een fan van jou" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "Jij bent een fan van" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "In afwachting van uitgaande contactaanvraag" - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "In afwachting van inkomende contactaanvraag" - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "Contact bewerken" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Lokale Groep" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Berichten van lokale gebruikers op deze server" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Globale gemeenschap" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Berichten van gebruikers van het hele gefedereerde netwerk" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "Geen resultaten." - -#: src/Module/Conversation/Community.php:125 +#: src/Module/Security/OpenID.php:94 msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen." +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen." -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "Groepsoptie niet beschikbaar" - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Credits" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!" - -#: src/Module/Debug/Babel.php:49 -msgid "Source input" -msgstr "Bron input" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "Bron ingave (Diaspora formaat):" - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (Ruwe HTML)" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "Onverwerkte HTML input" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "HTML Input" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (Ruwe HTML)" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "Brontekst" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "Je moet ingelogd zijn om deze module te gebruiken" - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "Bron URL" +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7883,94 +4775,549 @@ msgstr "Omgerekende lokale tijd: %s" msgid "Please select your timezone:" msgstr "Selecteer je tijdzone:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "Bron input" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "BBCode::convert" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::convert" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "Bron ingave (Diaspora formaat):" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (Ruwe HTML)" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "Markdown::convert" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "Onverwerkte HTML input" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "HTML Input" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "HTML::toBBCode => BBCode::convert" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "HTML::toBBCode => BBCode::convert (Ruwe HTML)" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "HTML::toMarkdown" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "Brontekst" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "BBCode" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "Alleen ingelogde gebruikers hebben toelating om aan probing te doen." -#: src/Module/Debug/Probe.php:54 -msgid "Lookup address" +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" msgstr "" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Beheer Identiteiten en/of Pagina's" +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" -#: src/Module/Delegation.php:148 -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 forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Selecteer een identiteit om te beheren:" +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "Op deze website zoeken" +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "Resultaten voor:" +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "Je moet ingelogd zijn om deze module te gebruiken" -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "Websitegids" +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "Bron URL" -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Debug/Probe.php:54 +msgid "Lookup address" +msgstr "Opzoekadres" + +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" -msgstr "Bestandstag %s bewaard bij item" +msgid "%s's timeline" +msgstr "Tijdslijn van %s" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "- Kies -" - -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "Geïnstalleerde addons/applicaties:" - -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "Geen geïnstalleerde addons/applicaties" - -#: src/Module/Friendica.php:68 +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 #, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Lees de Gebruiksvoorwaarden van deze node na." +msgid "%s's posts" +msgstr "Berichten van %s" -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "De volgende remote servers zijn geblokkeerd." +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "reactie van %s" -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "Geen contacten." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Volger (%s)" +msgstr[1] "Volgers (%s)" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Volgend (%s)" +msgstr[1] "Volgend (%s)" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Gemeenschappelijke vriend (%s)" +msgstr[1] "Gemeenschappelijke vrienden (%s)" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Contact (%s)" +msgstr[1] "Contacten (%s)" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "Alle contacten" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "Volgend" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "Gemeenschappelijke vrienden" + +#: src/Module/Profile/Profile.php:135 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s." +"You're currently viewing your profile as %s Cancel" +msgstr "" -#: src/Module/Friendica.php:98 +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Lid sinds:" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "F j Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "F j" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Verjaardag:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Leeftijd:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d jaar oud" +msgstr[1] "%d jaar oud" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Website:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Fora:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "Bekijk profiel als:" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Bewerk profiel" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken." + +#: src/Module/Register.php:101 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Ga naar Friendi.ca om meer te vernemen over het Friendica project." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken." -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" +#: src/Module/Register.php:102 +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." -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "de github bugtracker" +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca" +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Nota voor de beheerder" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "Je uitnodigingscode:" + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Registratie" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Je volledige naam (bvb. Jan Smit, echt of echt lijkend):" + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "Herhaal uw e-mailadres:" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord." + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn." + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Importeer je profiel op deze friendica server" + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen." + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Ouderlijk wachtwoord:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren." + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "Wachtwoorden komen niet overeen." + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "Voer uw wachtwoord in." + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "U heeft te veel informatie ingevoerd." + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "Voer in het tweede veld het identieke mailadres in." + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "De toegevoegde gebruiker is aangemaakt." + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Kon email niet verzenden. Hier zijn je account details:
login: %s
wachtwoord: %s

Je kan je wachtwoord aanpassen nadat je ingelogd bent." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Registratie succes." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "U dient een verzoekmelding achter te laten voor de beheerder." + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Bad Request" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Onbevoegd" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Niet toegestaan" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Niet gevonden" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "" + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "" + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "" + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "" + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "" + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "De server is momenteel niet beschikbaar (omdat deze overbelast is of niet beschikbaar is door onderhoud). Probeer het later opnieuw." + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "Ga terug" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." @@ -7989,114 +5336,16 @@ msgstr "Stel vrienden voor" msgid "Suggest a friend for %s" msgstr "Stel een vriend voor aan %s" -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "Groep aangemaakt." +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Credits" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "Groep niet gevonden." - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "Groepsnaam gewijzigd." - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "Onbekende groep." - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Contact is verwijderd." - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Kan het contact niet aan de groep toevoegen." - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Contact succesvol aan de groep toegevoegd." - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Kan het contact niet uit de groep verwijderen." - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Contact succesvol verwijderd uit groep." - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "Onbekende groepsopdracht." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Verkeerde aanvraag." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Bewaar groep" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "filter" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "Groep verwijderd." - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "Verwijder Groep" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "Bewerk Groep Naam" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "Leden" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "Verwijder contact uit de groep" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "Voeg contact toe aan de groep" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Help:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Geen profiel" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "" +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8110,9 +5359,29 @@ msgstr "Systeemcontrole" msgid "Check again" msgstr "Controleer opnieuw" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "Verplicht alle links om SSL te gebruiken" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" + #: src/Module/Install.php:208 msgid "Base settings" -msgstr "" +msgstr "Basisinstellingen" + +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "Beleid SSL-links" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" #: src/Module/Install.php:215 msgid "Host name" @@ -8122,7 +5391,7 @@ msgstr "Host naam" msgid "" "Overwrite this field in case the determinated hostname isn't right, " "otherweise leave it as is." -msgstr "" +msgstr "Overschrijf dit veld voor het geval de bepaalde hostnaam niet juist is, laat het anders zoals het is." #: src/Module/Install.php:220 msgid "Base path to installation" @@ -8137,14 +5406,14 @@ msgstr "Als het systeem het correcte pad naar je installatie niet kan detecteren #: src/Module/Install.php:225 msgid "Sub path of the URL" -msgstr "" +msgstr "Subpad van de URL" #: src/Module/Install.php:227 msgid "" "Overwrite this field in case the sub path determination isn't right, " "otherwise leave it as is. Leaving this field blank means the installation is" " at the base URL without sub path." -msgstr "" +msgstr "Overschrijf dit veld voor het geval de bepaling van het subpad niet juist is, laat het anders zoals het is. Als u dit veld leeg laat, betekent dit dat de installatie zich op de basis-URL bevindt zonder subpad." #: src/Module/Install.php:238 msgid "Database connection" @@ -8242,6 +5511,811 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen." +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- Kies -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Privacyinformatie op afstand niet beschikbaar." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Beheer Identiteiten en/of Pagina's" + +#: src/Module/Delegation.php:148 +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 forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Selecteer een identiteit om te beheren:" + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "Lokale Groep" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "Berichten van lokale gebruikers op deze server" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "Globale gemeenschap" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "Berichten van gebruikers van het hele gefedereerde netwerk" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "Geen resultaten." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen." + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "Groepsoptie niet beschikbaar" + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Welkom bij Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Checklist voor nieuwe leden" + +#: src/Module/Welcome.php:46 +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 "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." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Aan de slag" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Doorloop Friendica" + +#: src/Module/Welcome.php:50 +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 "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." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Ga naar je instellingen" + +#: src/Module/Welcome.php:54 +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 "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." + +#: src/Module/Welcome.php:55 +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 "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." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: src/Module/Welcome.php:59 +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 "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." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Bewerk je profiel" + +#: src/Module/Welcome.php:61 +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 "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Sleutelwoorden voor dit profiel" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "Stel een aantal openbare zoekwoorden in voor uw profiel die uw interesses beschrijven. Mogelijk kunnen we andere mensen met dezelfde interesses vinden en vriendschappen voorstellen." + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Verbinding aan het maken" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "E-mails importeren" + +#: src/Module/Welcome.php:68 +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 "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" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Ga naar je contactenpagina" + +#: src/Module/Welcome.php:70 +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 "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." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Ga naar de gids van je website" + +#: src/Module/Welcome.php:72 +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 "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." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Nieuwe mensen vinden" + +#: src/Module/Welcome.php:74 +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 "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." + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Groepen" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Groepeer je contacten" + +#: src/Module/Welcome.php:78 +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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Waarom zijn mijn berichten niet openbaar?" + +#: src/Module/Welcome.php:81 +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 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." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Hulp krijgen" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Ga naar de help" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "Deze pagina mist een url-parameter." + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "Het bericht is aangemaakt" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Informatie" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Overzicht" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Federatie Statistieken" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Configuratie" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Website" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Gebruiker" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Addons" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Thema's" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Extra functies" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "Database" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "DB aanpassingen" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "Inspecteer uitgestelde workers" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "Taakwachtrij inspecteren" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Hulpmiddelen" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Contact Blokkeerlijst" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Server Blokkeerlijst" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Verwijder Item" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Logs" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "Bekijk Logs" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Diagnostiek" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "PHP Info" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "probe adres" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "check webfinger" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Beheer" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "Addon Features" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "Gebruikersregistraties wachten op bevestiging" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact bewerkt." +msgstr[1] "%d contacten bewerkt." + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "Volg" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "Stop volgen" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "Contact niet gevonden" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Contact vergeten" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Nooit" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Haal meer informatie op van de feeds" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags." + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Haal informatie op" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "Haal sleutelwoorden op" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Haal informatie en sleutelwoorden op" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Contact instellingen" + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Contact" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Hun persoonlijke nota" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "Toon gesprekken" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Wijzig nu" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "Wait op bevestiging van de connectie" + +#: src/Module/Contact.php:604 +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" + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Stuur een notificatie voor elk bericht van dit contact" + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Acties" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "Alle Contacten" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "In behandeling" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "Toon alleen contacten in behandeling" + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Genegeerd" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Gearchiveerd" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Verborgen" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "Organiseer je contact groepen" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Resultaten voor: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Archiveer" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Bulk Acties" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "Gesprekken gestart door dit contact" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "Berichten en reacties" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Profieldetails" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "Bekijk alle gemeenschappelijke vrienden" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "In afwachting van uitgaande contactaanvraag" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "In afwachting van inkomende contactaanvraag" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Contact data opnieuw ophalen" + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie." + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners." + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "Op elk gewenst moment kan een aangemelde gebruiker zijn gebruikersgegevens uitvoeren vanaf de gebruikersinstellingen. Als de gebruiker zichzelf wenst te verwijderen, dan kan dat op %1$s/removeme. De verwijdering van de gebruiker is niet ongedaan te maken. Verwijdering van de gegevens zal tevens worden aangevraagd bij de nodes van de communicatiepartners." + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "Privacy Verklaring" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Help:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "Methode niet toegestaan." + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "Totale uitnodigingslimiet overschreden." @@ -8346,6 +6420,1844 @@ msgid "" "important, please visit http://friendi.ca" msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken" +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "Mensen Zoeken - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Forum doorzoeken - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Uitschakelen" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Inschakelen" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Beheer" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Schakelaar" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Auteur:" + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Onderhoud:" + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Herlaad actieve thema's" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Fixeer feature %s " + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Beheer Bijkomende Features" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "Je kan jezelf niet verwijderen" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s gebruiker verwijderd" +msgstr[1] "%s gebruikers verwijderd" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Account goedgekeurd." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "Privé Forum" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "E-mail" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Registratiedatum" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Laatste login" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "Type" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Gebruiker toevoegen" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "Alles selecteren" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "Gebruikersregistraties wachten op een bevestiging" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "Gebruiker wacht op permanente verwijdering" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Registratiedatum" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "Geen registraties." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Nota van de gebruiker" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Weiger" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "Gebruiker geblokeerd" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Sitebeheerder" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Account verlopen" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "Nieuwe gebruiker" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Admin/Users.php:267 +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?" + +#: src/Module/Admin/Users.php:268 +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?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Naam van nieuwe gebruiker" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Bijnaam" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Bijnaam van nieuwe gebruiker" + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "E-mailadres van nieuwe gebruiker" + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "Inspecteer wachtrij van uitgestelde workers" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd" + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "Taakwachtrij inspecteren" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie." + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "Taak parameters" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Aangemaakt" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "Prioriteit" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "Wijziging succesvol gemarkeerd " + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Database structuur update %s werd met succes toegepast." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Uitvoering van de database structuur update %s is mislukt met fout: %s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Uitvoering van %s mislukt met fout: %s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Wijziging %s geslaagd." + +#: src/Module/Admin/DBSync.php:86 +#, 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." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Er was geen bijkomende update functie %s die moest opgeroepen worden." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "Geen mislukte wijzigingen" + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Controleer de database structuur" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Mislukte wijzigingen" + +#: src/Module/Admin/DBSync.php:117 +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." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Probeer deze stap automatisch uit te voeren" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Anders" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "onbekend" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent." + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Op dit moment kent deze node %d nodes met %d geregistreerde gebruikers op basis van de volgende patformen:" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Fout bij het openen van log file %1$s .\\r\\n
Kijk na of bestand %1$s bestaat en mag gelezen worden." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Kon log file %1$s niet openen.\\r\\n
Kijk na of bestand %1$s mag gelezen worden." + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "PHP log momenteel geactiveerd" + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "PHP log momenteel gedeactiveerd" + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "Wis" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Activeer Debugging" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Logbestand" + +#: src/Module/Admin/Logs/Settings.php:86 +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. de hoogste folder binnen je Friendica-installatie." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Log niveau" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP logging" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de 'error_log' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie '1' voor 'log_errors' en 'display_errors' activeert deze opties, configureer '0' om ze te deactiveren. " + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "Kan de basis url niet verwerken. Moet minstens zijn ://" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimenteel)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "Geen groepspagina voor lokale gebruikers" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "Geen groepspagina" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Publieke berichten van gebruikers van deze site" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "Publieke berichten van het gefedereerde netwerk" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Server voor meerdere gebruikers" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Gesloten" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Toestemming vereist" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Open" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "Geen rekening mee houden" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "Neem de stabiele versie in rekening" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "Neem de ontwikkel versie in rekening" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "geen" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Opnieuw de gebruikers naar de gids publiceren" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "Uploaden bestand" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Beleid" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch Achterhaalde Contact Gids" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Performantie" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "Boodschap Relais" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "Verhuis node" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "" + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Site naam" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "Verzender Email" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Het email adres als afzender van notificatie emails." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Snelkoppeling icoon" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Link naar een icoon dat zal gebruikt worden voor browsers." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Pictogram voor smartphones" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link naar een icoon dat zal gebruikt worden voor tablets en mobiele telefoons." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Bijkomende Info" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "Voor publieke servers: je kan bijkomende informatie hier toevoegen die zal opgelijst zijn op %s/servers." + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "Systeemtaal" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "Systeem thema" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Mobiel systeem thema" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "Dwing SSL af" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Verberg de 'help' uit het navigatiemenu" + +#: src/Module/Admin/Site.php:613 +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." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Server voor één gebruiker" + +#: src/Module/Admin/Site.php:614 +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." + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "" + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Maximum afbeeldingsgrootte" + +#: src/Module/Admin/Site.php:618 +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." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Maximum afbeeldingslengte" + +#: src/Module/Admin/Site.php:619 +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." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "JPEG afbeeldingskwaliteit" + +#: src/Module/Admin/Site.php:620 +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." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Registratiebeleid" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maximum aantal registraties per dag" + +#: src/Module/Admin/Site.php:623 +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." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Registratietekst" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken." + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "Verboden bijnamen" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld." + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Verlaten accounts na x dagen" + +#: src/Module/Admin/Site.php:626 +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." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Toegelaten vriend domeinen" + +#: src/Module/Admin/Site.php:627 +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." + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Toegelaten e-mail domeinen" + +#: src/Module/Admin/Site.php:628 +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." + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "Geen OEmbed richt content" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst." + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "Sta OEmbed domeinen toe" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "Met komma's gescheiden lijst van domeinen waarvoor oembed content mag getoond worden. Wildcards zijn toegelaten." + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: src/Module/Admin/Site.php:631 +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." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Dwing publiceren af" + +#: src/Module/Admin/Site.php:632 +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." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden" + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "Algemene gids URL" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Privéberichten als standaard voor nieuwe gebruikers" + +#: src/Module/Admin/Site.php:634 +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." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" + +#: src/Module/Admin/Site.php:635 +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." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu." + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "Privé beelden in berichten niet inwerken" + +#: src/Module/Admin/Site.php:637 +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 "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "Expliciete inhoud" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina." + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Sta Gebruikers toe om remote_self te configureren" + +#: src/Module/Admin/Site.php:639 +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 "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. " + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Blokkeer meerdere registraties" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "Schakel OpenID uit" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "Schakel OpenID-ondersteuning uit voor registratie en logins." + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "Geen Volledige-Naamscontrole" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "Groepspagina voor bezoekers" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's." + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Berichten per gebruiker op de groepspagina" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus ondersteuning kan alleen geactiveerd worden als de gespreksstroom geactiveerd is." + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Diaspora ondersteuning activeren" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Laat alleen Friendica contacten toe" + +#: src/Module/Admin/Site.php:650 +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." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "Controleer SSL" + +#: src/Module/Admin/Site.php:651 +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." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Proxy-gebruiker" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Netwerk timeout" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Maximum gemiddelde belasting" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Gemiddelde Belasting (Frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximum systeem belasting wanneer de frontend ermee ophoudt - standaard waarde 50." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Minimaal Geheugen" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)." + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Dagen tussen herbevraging" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Aantal dagen waarna de server opnieuw bevraagd wordt naar zijn contacten." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Ontdek contacten van andere servers" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Doorzoek de lokale gids" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Publiceer server informatie" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Controleer upstream versie" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Activeer het controleren op nieuwe versies van Friendica bij github. Als er een nieuwe versie is, dan word je geïnformeerd in the administratie paneel." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Onderdruk Tags" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Onderdruk het tonen van een lijst van hastags op het einde van het bericht." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "Database opruimen" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Verwijder oude remote items, database weesrecords en oude content van andere helper tabellen." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "Levensduur van remote items" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "Als de database opruiming is geactiveerd, dan definieert dit na hoeveel dagen remote items verwijderd zullen worden. Eigen items, en gemarkeerde of opgeslagen items worden altijd behouden. 0 deactiveert dit gedrag." + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "Levensduur van niet geclaimde items" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items." + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "Levenstijd van ruwe gespreksdata" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen." + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Pad naar cache voor items" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Item caches bufferen gegenereerde bbcodes en externe beelden." + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Cache tijdsduur in seconden" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Hoe lang moeten de cache bestanden bijgehouden worden? Standaard waarde is 86400 seconden (een dag). Zet de waarde op -1 om de item cache te deactiveren." + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Maximum aantal reacties per bericht" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100." + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Tijdelijk pad" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. " + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Schakel beeld proxy uit" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "De beeld proxy verhoogt de performantie en privacy. Gebruik dit niet op systemen met erg lage bandbreedte." + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Zoek alleen in tags" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Het opzoeken van tekst kan grote systemen extreem vertragen." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "Nieuwe basis url" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Verander de basis url voor deze server. Stuurt een verhuis boodschap naar all Friendica en Diaspora* contacten." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "RINO encryptie" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Encryptie laag tussen nodes." + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "Geactiveerd" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Maximum aantal parallelle workers" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d" + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "" + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Activeer fastlane" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit." + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Activeer frontend worker" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "Schrijf in op relais" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "Activeert het ontvangen van publieke berichten vanwege de relais. Ze zullen inbegrepen zijn in de zoekresultaten, tags waarop je ingeschreven bent en op de globale groepspagina." + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "Relais server" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "Adres van de relais server waar publieke berichten naartoe moeten gezonden worden. Bijvoorbeeld https://relay.diasp.org" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "Directe relais transfer" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Activeert directe relais transfer naar andere servers zonder gebruik van relais servers" + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "Scope van de relais" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "alle" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "tags" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "Server tags" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "Sta gebruiker tags toe." + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "" + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "Start verhuis" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1$s, upstream versie is %2$s" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken." + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "De worker werd nooit uitgevoerd. Best je database structuur eens nakijken!" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie." + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp." + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Normaal account" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "Automatische Volger Account" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Publiek Forum account" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "Automatisch Vriendschapsaccount" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Blog Account" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Privé Forum Account" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Bericht-wachtrijen" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "Server instellingen." + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Registraties die in de wacht staan" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Versie" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "Actieve addons" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Toon Gebruiksvoorwaarden" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Toon Privacy Verklaring" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Privacy Verklaring Voorbeeldweergave" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "De Gebruiksvoorwaarden" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Reden van de blokkering" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Vink aan om dit item van de blokkeerlijst te verwijderen" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Voeg nieuw item toe aan de blokkeerlijst" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Reden voor blokkering" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Voeg Item toe" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Sla veranderingen in de blokkeerlijst op" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Huidige Items in de blokkeerlijst" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Verwijder item uit de blokkeerlijst" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Item verwijderen uit de blokkeerlijst?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact is niet langer geblokkeerd" +msgstr[1] "%s contacten zijn niet langer geblokkeerd" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Remote Contact Blokkeerlijst" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Blokkeer Remote Contact" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "selecteer geen" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "Geen enkel remote contact is geblokkeerd van deze node." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Geblokkeerde Remote Contacts" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Blokkeer Nieuwe Remote Contacten" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "Reden" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s geblokkeerde contacten in totaal" +msgstr[1] "%s geblokkeerde contacten in totaal" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "URL van de remote contact die je wil blokkeren." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "Reden voor blokkeren" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "Item identificatie" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Item gemarkeerd om te verwijderen." + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Verwijder dit Item" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "De GUID van het item dat je wil verwijderen." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "Addon niet gevonden." + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Addon %s gedeactiveerd" + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Addon %s geactiveerd" + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Installatie Addon %s is mislukt." + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Herlaad actieve addons" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2$s" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Resultaten voor:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Websitegids" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Item niet gevonden" + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "Voer een berichttekst in." @@ -8364,7 +8276,7 @@ msgstr "Nieuw bericht opstellen" #: src/Module/Item/Compose.php:135 msgid "Visibility" -msgstr "" +msgstr "Zichtbaarheid" #: src/Module/Item/Compose.php:156 msgid "Clear the location" @@ -8380,575 +8292,863 @@ msgid "" "your device" msgstr "Locatiediensten zijn uitgeschakeld. Controleer de toestemmingen van de website op uw apparaat" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "Systeem onbeschikbaar wegens onderhoud" +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "Geïnstalleerde addons/applicaties:" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "" +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "Geen geïnstalleerde addons/applicaties" -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Lees de Gebruiksvoorwaarden van deze node na." -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "De volgende remote servers zijn geblokkeerd." -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Notificatiesoort:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "Voorgesteld door:" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Denkt dat je hem of haar kent:" - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Zal je connectie bidirectioneel zijn of niet?" - -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "%s als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed." +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s." -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "%s als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Ga naar Friendi.ca om meer te vernemen over het Friendica project." -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Vriend" +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Volger" +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "de github bugtracker" -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca" -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "Geen %s notificaties meer." +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "" - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Toon ongelezen" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Toon alles" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" #: src/Module/Photo.php:87 #, php-format msgid "The Photo with id %s is not available." -msgstr "" +msgstr "De foto met id %s is niet beschikbaar" #: src/Module/Photo.php:102 #, php-format msgid "Invalid photo with id %s." msgstr "Ongeldige foto met ID %s" -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "Gebruiker niet gevonden." - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "Geen contacten." - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Volger (%s)" -msgstr[1] "Volgers (%s)" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Volgend (%s)" -msgstr[1] "Volgend (%s)" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "Gemeenschappelijke vriend (%s)" -msgstr[1] "Gemeenschappelijke vrienden (%s)" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Contact (%s)" -msgstr[1] "Contacten (%s)" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "Alle contacten" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "Lid sinds:" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "F j Y" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "F j" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "Leeftijd:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%d jaar oud" -msgstr[1] "%d jaar oud" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "Fora:" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "Tijdslijn van %s" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "Berichten van %s" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "reactie van %s" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken." - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken." - -#: src/Module/Register.php:102 -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." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Nota voor de beheerder" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Je uitnodigingscode:" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Je volledige naam (bvb. Jan Smit, echt of echt lijkend):" - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord." - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Importeer je profiel op deze friendica server" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen." - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "Ouderlijk wachtwoord:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "" - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "De toegevoegde gebruiker is aangemaakt." - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Kon email niet verzenden. Hier zijn je account details:
login: %s
wachtwoord: %s

Je kan je wachtwoord aanpassen nadat je ingelogd bent." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Registratie succes." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "" - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" -msgstr "" +msgstr "De verstrekte profiellink lijkt niet geldig te zijn" -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " "isn't supported by your system, you have to subscribe to %s" " or %s directly on your system." +msgstr "Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem." + +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Account" + +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Weergave" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "Beheer Gebruikers" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Account verwijderen" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Kon de groep niet aanmaken." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Groep niet gevonden." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." msgstr "" -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." -msgstr "" +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Onbekende groep." -#: src/Module/Search/Index.php:52 +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "Contact is verwijderd." + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Kan het contact niet aan de groep toevoegen." + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "Contact succesvol aan de groep toegevoegd." + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Kan het contact niet uit de groep verwijderen." + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "Contact succesvol verwijderd uit groep." + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Onbekende groepsopdracht." + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Verkeerde aanvraag." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Bewaar groep" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "filter" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Maak een groep contacten/vrienden aan." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Groepsnaam:" + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Contacten bestaan in geen enkele groep" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Niet in staat om groep te verwijderen." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Verwijder Groep" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Bewerk Groep Naam" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Leden" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Verwijder contact uit de groep" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "Voeg contact toe aan de groep" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "Alleen ingelogde gebruikers mogen een zoekopdracht starten." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut" -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Zoeken" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "Items getagd met: %s" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "Je moet ingelogd zijn om deze module te gebruiken." + +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." +msgstr "Zoekterm is al opgeslagen." + +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." msgstr "" -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "Geen profiel" + +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." msgstr "" -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Nieuwe account aanmaken" +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Uw OpenID" +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" -#: src/Module/Security/Login.php:129 +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Dit bericht privé maken" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "WAARSCHUWING: Dit is zeer geavanceerd en als je verkeerde informatie invult, zal je mogelijk niet meer kunnen communiceren met deze contactpersoon." -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Wachtwoord:" - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Onthoud mij" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "servicevoorwaarden" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "privacybeleid" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Uitgelogd." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "" - -#: src/Module/Security/OpenID.php:92 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "Geen mirroring" + +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Spiegel als geforward bericht" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Spiegel als mijn eigen bericht" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Mijn identiteit elders" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Berichten van dit contact spiegelen" + +#: src/Module/Contact/Advanced.php:146 msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten." -#: src/Module/Security/TwoFactor/Recovery.php:60 +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Bijnaam account" + +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" + +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "URL account" + +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" +msgstr "Account URL Alias" + +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "URL vriendschapsverzoek" + +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "URL vriendschapsbevestiging" + +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "Notificatie Endpoint URL" + +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "URL poll/feed" + +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "Nieuwe foto van deze URL" + +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Toepassingen" + +#: src/Module/Settings/Profile/Index.php:85 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: src/Module/Settings/Profile/Index.php:137 +msgid "Profile couldn't be updated." +msgstr "Profiel kan niet worden bijgewerkt." + +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 +msgid "Label:" +msgstr "Label:" + +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 +msgid "Value:" +msgstr "Waarde:" + +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 +msgid "Field Permissions" +msgstr "Veldrechten" + +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: src/Module/Settings/Profile/Index.php:205 +msgid "Add a new profile field" +msgstr "Voeg nieuw profielveld toe" + +#: src/Module/Settings/Profile/Index.php:235 +msgid "Profile Actions" +msgstr "Profiel Acties" + +#: src/Module/Settings/Profile/Index.php:236 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" + +#: src/Module/Settings/Profile/Index.php:238 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: src/Module/Settings/Profile/Index.php:243 +msgid "Profile picture" +msgstr "Profiel foto" + +#: src/Module/Settings/Profile/Index.php:244 +msgid "Location" +msgstr "Plaats" + +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 +#: src/Util/Temporal.php:95 +msgid "Miscellaneous" +msgstr "Diversen" + +#: src/Module/Settings/Profile/Index.php:246 +msgid "Custom Profile Fields" +msgstr "Aangepaste profielvelden" + +#: src/Module/Settings/Profile/Index.php:252 +msgid "Display name:" +msgstr "Weergave naam:" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Street Address:" +msgstr "Postadres:" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: src/Module/Settings/Profile/Index.php:257 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: src/Module/Settings/Profile/Index.php:259 +msgid "Country:" +msgstr "Land:" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) adres:" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "Het XMPP adres zal doorgegeven worden aan je contacten zodat zij je kunnen volgen." + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: src/Module/Settings/Profile/Index.php:265 #, php-format -msgid "Remaining recovery codes: %d" -msgstr "" - -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "" - -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "" - -#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "" +"

Custom fields appear on your profile page.

\n" +"\t\t\t\t

You can use BBCodes in the field values.

\n" +"\t\t\t\t

Reorder by dragging the field title.

\n" +"\t\t\t\t

Empty the label field to remove a custom field.

\n" +"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" +msgstr "

Aangepaste velden verschijnen op je profielpagina.

\n\t\t\t\t

Je kunt BBCodes in de veldwaarden gebruiken.

\n\t\t\t\t

Sorteer opnieuw door de veldtitel te slepen.

\n\t\t\t\t

Maak het labelveld leeg om een ​​aangepast veld te verwijderen.

\n\t\t\t\t

Niet-openbare velden zijn alleen zichtbaar voor de geselecteerde Friendica-contacten of de Friendica-contacten in de geselecteerde groepen.

" -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Settings/Profile/Photo/Crop.php:102 +#: src/Module/Settings/Profile/Photo/Crop.php:118 +#: src/Module/Settings/Profile/Photo/Crop.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "" +msgid "Image size reduction [%s] failed." +msgstr "Verkleining van de afbeelding [%s] mislukt." -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "" - -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "" - -#: src/Module/Security/TwoFactor/Verify.php:81 +#: src/Module/Settings/Profile/Photo/Crop.php:139 msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "" +"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." -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "" +#: src/Module/Settings/Profile/Photo/Crop.php:147 +msgid "Unable to process image" +msgstr "Ik kan de afbeelding niet verwerken" -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "" +#: src/Module/Settings/Profile/Photo/Crop.php:166 +msgid "Photo not found." +msgstr "Foto niet gevonden." + +#: src/Module/Settings/Profile/Photo/Crop.php:190 +msgid "Profile picture successfully updated." +msgstr "Profielfoto geüpdatet." + +#: src/Module/Settings/Profile/Photo/Crop.php:213 +#: src/Module/Settings/Profile/Photo/Crop.php:217 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: src/Module/Settings/Profile/Photo/Crop.php:214 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." + +#: src/Module/Settings/Profile/Photo/Crop.php:216 +msgid "Use Image As Is" +msgstr "Gebruik afbeelding zoals deze is" + +#: src/Module/Settings/Profile/Photo/Index.php:47 +msgid "Missing uploaded image." +msgstr "Ontbrekende geüploade afbeelding." + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Profile Picture Settings" +msgstr "Profiel afbeelding instellingen" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Current Profile Picture" +msgstr "Huidige profielafbeelding" + +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload Profile Picture" +msgstr "Upload profiel afbeelding" + +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload Picture:" +msgstr "Upload afbeelding" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "or" +msgstr "of" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "skip this step" +msgstr "Deze stap overslaan" + +#: src/Module/Settings/Profile/Photo/Index.php:138 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit je fotoalbums" #: src/Module/Settings/Delegation.php:53 msgid "Delegation successfully granted." -msgstr "" +msgstr "Delegatie met succes verleend." #: src/Module/Settings/Delegation.php:55 msgid "Parent user not found, unavailable or password doesn't match." -msgstr "" +msgstr "Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen." #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully revoked." -msgstr "" +msgstr "Delegatie is ingetrokken." #: src/Module/Settings/Delegation.php:81 #: src/Module/Settings/Delegation.php:103 msgid "" "Delegated administrators can view but not change delegation permissions." -msgstr "" +msgstr "Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen." #: src/Module/Settings/Delegation.php:95 msgid "Delegate user not found." -msgstr "" +msgstr "Gemachtigde gebruiker niet gevonden." -#: src/Module/Settings/Delegation.php:142 +#: src/Module/Settings/Delegation.php:143 msgid "No parent user" msgstr "Ouderlijke gebruiker ontbreekt" -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 msgid "Parent User" msgstr "Ouderlijke gebruiker" -#: src/Module/Settings/Delegation.php:161 +#: src/Module/Settings/Delegation.php:162 msgid "Additional Accounts" msgstr "Toegevoegde gebruikers" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:163 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren." -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:164 msgid "Register an additional account" msgstr "Registreer een toegevoegde gebruiker" -#: src/Module/Settings/Delegation.php:167 +#: src/Module/Settings/Delegation.php:168 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft." -#: src/Module/Settings/Delegation.php:171 +#: src/Module/Settings/Delegation.php:172 msgid "Delegates" msgstr "Gemachtigden" -#: src/Module/Settings/Delegation.php:173 +#: src/Module/Settings/Delegation.php:174 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 vertrouwt." -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:175 msgid "Existing Page Delegates" msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" -#: src/Module/Settings/Delegation.php:176 +#: src/Module/Settings/Delegation.php:177 msgid "Potential Delegates" msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " -#: src/Module/Settings/Delegation.php:179 +#: src/Module/Settings/Delegation.php:180 msgid "Add" msgstr "Toevoegen" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:181 msgid "No entries." msgstr "Geen gegevens." +#: src/Module/Settings/TwoFactor/Index.php:67 +msgid "Two-factor authentication successfully disabled." +msgstr "Twee-factor-authenticatie succesvol uitgeschakeld." + +#: src/Module/Settings/TwoFactor/Index.php:88 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: src/Module/Settings/TwoFactor/Index.php:108 +msgid "" +"

Use an application on a mobile device to get two-factor authentication " +"codes when prompted on login.

" +msgstr "

Gebruik een applicatie op een mobiel apparaat om tweefactorauthenticatiecodes te krijgen wanneer daarom wordt gevraagd bij het inloggen.

" + +#: src/Module/Settings/TwoFactor/Index.php:112 +msgid "Authenticator app" +msgstr "Authenticatie-app" + +#: src/Module/Settings/TwoFactor/Index.php:113 +msgid "Configured" +msgstr "Geconfigureerd" + +#: src/Module/Settings/TwoFactor/Index.php:113 +msgid "Not Configured" +msgstr "Niet geconfigureerd" + +#: src/Module/Settings/TwoFactor/Index.php:114 +msgid "

You haven't finished configuring your authenticator app.

" +msgstr "

U bent nog niet klaar met het configureren van uw authenticator-app.

" + +#: src/Module/Settings/TwoFactor/Index.php:115 +msgid "

Your authenticator app is correctly configured.

" +msgstr "

Uw authenticator-app is correct geconfigureerd.

" + +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Recovery codes" +msgstr "Herstelcodes" + +#: src/Module/Settings/TwoFactor/Index.php:118 +msgid "Remaining valid codes" +msgstr "Resterende geldige codes" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

These one-use codes can replace an authenticator app code in case you " +"have lost access to it.

" +msgstr "

Deze codes voor eenmalig gebruik kunnen een authenticator-app-code vervangen als u er geen toegang toe heeft.

" + +#: src/Module/Settings/TwoFactor/Index.php:122 +msgid "App-specific passwords" +msgstr "App-specifieke wachtwoorden" + +#: src/Module/Settings/TwoFactor/Index.php:123 +msgid "Generated app-specific passwords" +msgstr "App-specifieke wachtwoorden gegenereerd" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "" +"

These randomly generated passwords allow you to authenticate on apps not " +"supporting two-factor authentication.

" +msgstr "

Met deze willekeurig gegenereerde wachtwoorden kunt u verifiëren bij apps die geen tweefactorauthenticatie ondersteunen.

" + +#: src/Module/Settings/TwoFactor/Index.php:128 +msgid "Current password:" +msgstr "Huidig wachtwoord:" + +#: src/Module/Settings/TwoFactor/Index.php:128 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "U moet uw huidige wachtwoord opgeven om de instellingen voor tweefactorauthenticatie te wijzigen." + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Enable two-factor authentication" +msgstr "Schakel tweefactorauthenticatie in" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Disable two-factor authentication" +msgstr "Schakel tweefactorauthenticatie uit" + +#: src/Module/Settings/TwoFactor/Index.php:131 +msgid "Show recovery codes" +msgstr "Toon herstelcodes" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "Manage app-specific passwords" +msgstr "Beheer app-specifieke wachtwoorden" + +#: src/Module/Settings/TwoFactor/Index.php:133 +msgid "Finish app configuration" +msgstr "Voltooi de app-configuratie" + +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "Voer uw wachtwoord in om deze pagina te openen." + +#: src/Module/Settings/TwoFactor/Verify.php:78 +msgid "Two-factor authentication successfully activated." +msgstr "Twee-factor-authenticatie succesvol geactiveerd." + +#: src/Module/Settings/TwoFactor/Verify.php:111 +#, php-format +msgid "" +"

Or you can submit the authentication settings manually:

\n" +"
\n" +"\t
Issuer
\n" +"\t
%s
\n" +"\t
Account Name
\n" +"\t
%s
\n" +"\t
Secret Key
\n" +"\t
%s
\n" +"\t
Type
\n" +"\t
Time-based
\n" +"\t
Number of digits
\n" +"\t
6
\n" +"\t
Hashing algorithm
\n" +"\t
SHA-1
\n" +"
" +msgstr "

Of je kan de autentificatie instellingen handmatig versturen:

\n
\n\t
Uitgever
\n\t
%s
\n\t
Gebruikersnaam
\n\t
%s
\n\t
Geheime sleutel
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Aantal tekens
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
" + +#: src/Module/Settings/TwoFactor/Verify.php:131 +msgid "Two-factor code verification" +msgstr "Tweeledige codeverificatie" + +#: src/Module/Settings/TwoFactor/Verify.php:133 +msgid "" +"

Please scan this QR Code with your authenticator app and submit the " +"provided code.

" +msgstr "

Scan deze QR-code met uw authenticator-app en verzend de opgegeven code.

" + +#: src/Module/Settings/TwoFactor/Verify.php:135 +#, php-format +msgid "" +"

Or you can open the following URL in your mobile devicde:

%s

" +msgstr "

Of je kan de volgende link op je mobiel openen:

%s

" + +#: src/Module/Settings/TwoFactor/Verify.php:142 +msgid "Verify code and enable two-factor authentication" +msgstr "Controleer de code en schakel tweefactorauthenticatie in" + +#: src/Module/Settings/TwoFactor/Recovery.php:66 +msgid "New recovery codes successfully generated." +msgstr "Nieuwe herstelcodes zijn succesvol gegenereerd." + +#: src/Module/Settings/TwoFactor/Recovery.php:92 +msgid "Two-factor recovery codes" +msgstr "Twee-factor herstelcodes" + +#: src/Module/Settings/TwoFactor/Recovery.php:94 +msgid "" +"

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "

Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.

Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.

" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "Wanneer u nieuwe herstelcodes genereert, moet u de nieuwe codes kopiëren. Uw oude codes werken niet meer." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Genereer nieuwe herstelcodes" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Volgende: verificatie" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "Nieuw app-specifiek wachtwoord gegenereerd." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "App-specifieke wachtwoorden succesvol ingetrokken." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "App-specifiek wachtwoord succesvol ingetrokken." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "Twee-factor app-specifieke wachtwoorden" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "

App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.

" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "Omschrijving" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "Laatst gebruikt" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "Intrekken" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "Alles intrekken" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "Wanneer u een nieuw app-specifiek wachtwoord genereert, moet u dit meteen gebruiken, het wordt u een keer getoond nadat u het hebt gegenereerd." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "Genereer een nieuw app-specifiek wachtwoord" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "Genereer" + #: src/Module/Settings/Display.php:101 msgid "The theme you chose isn't available." msgstr "Het thema dat je koos is niet beschikbaar" @@ -8974,12 +9174,6 @@ msgstr "Speciale Thema Instellingen" msgid "Content Settings" msgstr "Content Instellingen" -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Thema-instellingen" - #: src/Module/Settings/Display.php:187 msgid "Calendar" msgstr "Kalender" @@ -9047,474 +9241,20 @@ msgstr "" #: src/Module/Settings/Display.php:203 msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "" +msgstr "Schakel de automatische onderdrukking van vreemd inspringen uit." #: src/Module/Settings/Display.php:204 msgid "Hide the Dislike feature" -msgstr "" +msgstr "Verberg de Afkeeroptie" #: src/Module/Settings/Display.php:204 msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "" +msgstr "Verbergt de knop Niet Leuk en Niet Leuke Reacties op berichten en opmerkingen." #: src/Module/Settings/Display.php:206 msgid "Beginning of week:" msgstr "Begin van de week:" -#: src/Module/Settings/Profile/Index.php:86 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "Profiel opgeslagen" - -#: src/Module/Settings/Profile/Index.php:140 -msgid "Profile couldn't be updated." -msgstr "" - -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 -msgid "Label:" -msgstr "" - -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 -msgid "Value:" -msgstr "Waarde:" - -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 -msgid "Field Permissions" -msgstr "Veldrechten" - -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: src/Module/Settings/Profile/Index.php:211 -msgid "Add a new profile field" -msgstr "Voeg nieuw profielveld toe" - -#: src/Module/Settings/Profile/Index.php:241 -msgid "Profile Actions" -msgstr "Profiel Acties" - -#: src/Module/Settings/Profile/Index.php:242 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: src/Module/Settings/Profile/Index.php:249 -msgid "Profile picture" -msgstr "Profiel foto" - -#: src/Module/Settings/Profile/Index.php:250 -msgid "Location" -msgstr "Plaats" - -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 -msgid "Miscellaneous" -msgstr "Diversen" - -#: src/Module/Settings/Profile/Index.php:252 -msgid "Custom Profile Fields" -msgstr "Aangepaste profielvelden" - -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Display name:" -msgstr "Weergave naam:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "Street Address:" -msgstr "Postadres:" - -#: src/Module/Settings/Profile/Index.php:262 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: src/Module/Settings/Profile/Index.php:265 -msgid "Country:" -msgstr "Land:" - -#: src/Module/Settings/Profile/Index.php:267 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) adres:" - -#: src/Module/Settings/Profile/Index.php:267 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Het XMPP adres zal doorgegeven worden aan je contacten zodat zij je kunnen volgen." - -#: src/Module/Settings/Profile/Index.php:268 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: src/Module/Settings/Profile/Index.php:269 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: src/Module/Settings/Profile/Index.php:269 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: src/Module/Settings/Profile/Index.php:270 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: src/Module/Settings/Profile/Index.php:270 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: src/Module/Settings/Profile/Index.php:271 -#, php-format -msgid "" -"

Custom fields appear on your profile page.

\n" -"\t\t\t\t

You can use BBCodes in the field values.

\n" -"\t\t\t\t

Reorder by dragging the field title.

\n" -"\t\t\t\t

Empty the label field to remove a custom field.

\n" -"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Crop.php:102 -#: src/Module/Settings/Profile/Photo/Crop.php:118 -#: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleining van de afbeelding [%s] mislukt." - -#: src/Module/Settings/Profile/Photo/Crop.php:139 -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." - -#: src/Module/Settings/Profile/Photo/Crop.php:147 -msgid "Unable to process image" -msgstr "Ik kan de afbeelding niet verwerken" - -#: src/Module/Settings/Profile/Photo/Crop.php:166 -msgid "Photo not found." -msgstr "Foto niet gevonden." - -#: src/Module/Settings/Profile/Photo/Crop.php:190 -msgid "Profile picture successfully updated." -msgstr "" - -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: src/Module/Settings/Profile/Photo/Crop.php:214 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." - -#: src/Module/Settings/Profile/Photo/Crop.php:216 -msgid "Use Image As Is" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:47 -msgid "Missing uploaded image." -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "Uploaden van afbeelding gelukt." - -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Profile Picture Settings" -msgstr "Profiel afbeelding instellingen" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Current Profile Picture" -msgstr "Huidige profielafbeelding" - -#: src/Module/Settings/Profile/Photo/Index.php:130 -msgid "Upload Profile Picture" -msgstr "Upload profiel afbeelding" - -#: src/Module/Settings/Profile/Photo/Index.php:131 -msgid "Upload Picture:" -msgstr "Upload afbeelding" - -#: src/Module/Settings/Profile/Photo/Index.php:136 -msgid "or" -msgstr "of" - -#: src/Module/Settings/Profile/Photo/Index.php:138 -msgid "skip this step" -msgstr "Deze stap overslaan" - -#: src/Module/Settings/Profile/Photo/Index.php:140 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit je fotoalbums" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "Voer uw wachtwoord in om deze pagina te openen." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 -msgid "" -"App-specific password generation failed: This description already exists." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "Nieuw app-specifiek wachtwoord gegenereerd." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "App-specifieke wachtwoorden succesvol ingetrokken." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "App-specifiek wachtwoord succesvol ingetrokken." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Twee-factor app-specifieke wachtwoorden" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 -msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "

App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.

" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 -msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Omschrijving" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Laatst gebruikt" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Intrekken" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Alles intrekken" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 -msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "Genereer" - -#: src/Module/Settings/TwoFactor/Index.php:67 -msgid "Two-factor authentication successfully disabled." -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:88 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: src/Module/Settings/TwoFactor/Index.php:108 -msgid "" -"

Use an application on a mobile device to get two-factor authentication " -"codes when prompted on login.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:112 -msgid "Authenticator app" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Configured" -msgstr "Geconfigureerd" - -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Not Configured" -msgstr "Niet geconfigureerd" - -#: src/Module/Settings/TwoFactor/Index.php:114 -msgid "

You haven't finished configuring your authenticator app.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:115 -msgid "

Your authenticator app is correctly configured.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:117 -msgid "Recovery codes" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Remaining valid codes" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:120 -msgid "" -"

These one-use codes can replace an authenticator app code in case you " -"have lost access to it.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:122 -msgid "App-specific passwords" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:123 -msgid "Generated app-specific passwords" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:125 -msgid "" -"

These randomly generated passwords allow you to authenticate on apps not " -"supporting two-factor authentication.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:128 -msgid "Current password:" -msgstr "Huidig wachtwoord:" - -#: src/Module/Settings/TwoFactor/Index.php:128 -msgid "" -"You need to provide your current password to change two-factor " -"authentication settings." -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:129 -msgid "Enable two-factor authentication" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:130 -msgid "Disable two-factor authentication" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:131 -msgid "Show recovery codes" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:132 -msgid "Manage app-specific passwords" -msgstr "" - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "Finish app configuration" -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "

Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.

Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.

" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "" - -#: src/Module/Settings/TwoFactor/Verify.php:78 -msgid "Two-factor authentication successfully activated." -msgstr "" - -#: src/Module/Settings/TwoFactor/Verify.php:111 -#, php-format -msgid "" -"

Or you can submit the authentication settings manually:

\n" -"
\n" -"\t
Issuer
\n" -"\t
%s
\n" -"\t
Account Name
\n" -"\t
%s
\n" -"\t
Secret Key
\n" -"\t
%s
\n" -"\t
Type
\n" -"\t
Time-based
\n" -"\t
Number of digits
\n" -"\t
6
\n" -"\t
Hashing algorithm
\n" -"\t
SHA-1
\n" -"
" -msgstr "

Of je kan de autentificatie instellingen handmatig versturen:

\n
\n\t
Uitgever
\n\t
%s
\n\t
Gebruikersnaam
\n\t
%s
\n\t
Geheime sleutel
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Aantal tekens
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
" - -#: src/Module/Settings/TwoFactor/Verify.php:131 -msgid "Two-factor code verification" -msgstr "" - -#: src/Module/Settings/TwoFactor/Verify.php:133 -msgid "" -"

Please scan this QR Code with your authenticator app and submit the " -"provided code.

" -msgstr "" - -#: src/Module/Settings/TwoFactor/Verify.php:135 -#, php-format -msgid "" -"

Or you can open the following URL in your mobile devicde:

%s

" -msgstr "

Of je kan de volgende link op je mobiel openen:

%s

" - -#: src/Module/Settings/TwoFactor/Verify.php:142 -msgid "Verify code and enable two-factor authentication" -msgstr "" - #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "Account exporteren" @@ -9546,574 +9286,31 @@ msgid "" " e.g. Mastodon." msgstr "Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Bad Request" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "Systeem onbeschikbaar wegens onderhoud" -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Onbevoegd" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Niet toegestaan" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Niet gevonden" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "" - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "" - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "" - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "" - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "" - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "" - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie." - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners." - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "Op elk gewenst moment kan een aangemelde gebruiker zijn gebruikersgegevens uitvoeren vanaf de gebruikersinstellingen. Als de gebruiker zichzelf wenst te verwijderen, dan kan dat op %1$s/removeme. De verwijdering van de gebruiker is niet ongedaan te maken. Verwijdering van de gegevens zal tevens worden aangevraagd bij de nodes van de communicatiepartners." - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "Privacy Verklaring" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Welkom bij Friendica" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "Checklist voor nieuwe leden" - -#: src/Module/Welcome.php:46 -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 "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." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Aan de slag" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Doorloop Friendica" - -#: src/Module/Welcome.php:50 -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 "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." - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Ga naar je instellingen" - -#: src/Module/Welcome.php:54 -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 "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." - -#: src/Module/Welcome.php:55 -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 "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." - -#: src/Module/Welcome.php:59 -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 "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." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "Bewerk je profiel" - -#: src/Module/Welcome.php:61 -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 "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Sleutelwoorden voor dit profiel" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "" - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Verbinding aan het maken" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "E-mails importeren" - -#: src/Module/Welcome.php:68 -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 "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" - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Ga naar je contactenpagina" - -#: src/Module/Welcome.php:70 -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 "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." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Ga naar de gids van je website" - -#: src/Module/Welcome.php:72 -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 "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." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Nieuwe mensen vinden" - -#: src/Module/Welcome.php:74 -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 "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." - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Groepeer je contacten" - -#: src/Module/Welcome.php:78 -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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Waarom zijn mijn berichten niet openbaar?" - -#: src/Module/Welcome.php:81 -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 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." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Hulp krijgen" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Ga naar de help" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." - -#: src/Object/EMail/ItemCCEMail.php:39 -#, 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." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" - -#: src/Object/EMail/ItemCCEMail.php:42 -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." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Deze entry werd bewerkt" - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "Privébericht" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "Verwijder lokaal" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "Verwijder globaal" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "Verwijder lokaal" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "Bewaren in map" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "Ik zal er zijn" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "Ik zal er niet zijn" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "Ik ga misschien" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "Negeer gesprek" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "Stop met gesprek te negeren" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "verwissel negeer status" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "ster toevoegen" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "ster verwijderen" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "met ster" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "label toevoegen" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "leuk" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "niet leuk" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "Delen" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "Delen" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "aan" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "via" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "wall-to-wall" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "via wall-to-wall" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "Antwoord aan %s" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "Meer" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "Meldingstaak is in behandeling" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "Levering aan externe servers is in behandeling" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "Toon meer" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "Toon minder" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s volgt nu %s." -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "volgend" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s stopte %s te volgen." -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "is gestopt met volgen" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "Met:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Sinds:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Geloof:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Houdt van:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Televisie" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Werk" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "School/opleiding" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Friendica Notificatie" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Bijlagen:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10134,6 +9331,10 @@ msgstr "%s Beheerder" msgid "thanks" msgstr "bedankt" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Friendica Notificatie" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-DD of MM-DD" @@ -10200,230 +9401,1004 @@ msgstr "in %1$d%2$s" msgid "%1$d %2$s ago" msgstr "%1$d %2$s geleden" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: author-id en owner-id in item en gesprekstabel aan het updaten." +msgid "Database storage failed to update %s" +msgstr "Database opslag faalde om %s te vernieuwen" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Database opslag mislukt om gegevens in te voegen" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." -msgstr "%s: bericht-type bewerken" +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "" -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "standaard" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Variaties" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "Aangepast" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "Nota" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Controleer of alle gebruikers permissie hebben om het beeld te zien " - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "Selecteer kleurschema" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "Kopieer of plak schemastring" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Je kan deze string kopiëren om uw je kleurenschema met anderen te delen. Een schemastring plakken past deze toe." +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "" -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "Navigatie balk achtergrondkleur" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "Navigatie balk icoon kleur" - -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "Link kleur" - -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "Stel de achtergrondkleur in" - -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "Content achtergrond opaciteit" - -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "Stel het achtergrondbeeld in" - -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "Achtergrond beeld stijl" - -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "Achtergrondafbeelding aanmeldpagina" - -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "Achtergrondkleur aanmeldpagina" - -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken" - -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "Ga naar hoofdinhoud" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Banner Bovenaan" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Pas het beeld aan aan de breedte van het scherm en toon achtergrondkleur onder lange pagina's" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Volledig scherm" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Geef een geldige bestaande folder in" -#: view/theme/frio/php/Image.php:41 +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "activiteit" + +#: src/Model/Item.php:3339 +msgid "post" +msgstr "bericht" + +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "Waarschuwing inhoud: %s" + +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "bytes" + +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "Bekijk op aparte pagina" + +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "bekijk op aparte pagina" + +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "Ontvolgen" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Verwijder contact" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Organisatie" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "Nieuws" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Forum" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Connectie URL ontbreekt." + +#: src/Model/Contact.php:2307 msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Pas het beeld aan om het hele scherm te vullen, met ofwel de rechter- of de onderkant afgeknipt." +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken." -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Enkele rij mozaïek" - -#: view/theme/frio/php/Image.php:42 +#: src/Model/Contact.php:2348 msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Pas het beeld aan zodat het herhaald wordt op een enkele rij, ofwel vertikaal ofwel horizontaal" +"This site is not configured to allow communications with other networks." +msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mozaïek" +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Herhaal beeld om het scherm te vullen." +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "Het opgegeven profiel adres bevat geen adequate informatie." -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "Gast" +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "Er werd geen auteur of naam gevonden." -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "Bezoeker" +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "Er kan geen browser URL gematcht worden met dit adres." -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Uitlijning" +#: src/Model/Contact.php:2371 +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." -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Links" +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Gecentreerd" +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site." -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Kleurschema" +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen." -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Lettergrootte berichten" +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "Het was niet mogelijk informatie over dit contact op te halen." -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Begint:" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Kommagescheiden lijst van de helper forums" +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Eindigt:" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "niet tonen" +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "de hele dag" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "tonen" +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Sep" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Stijl instellen" +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "Geen gebeurtenissen te tonen" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Forum/groepspagina's" +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l j F" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "Forum/groepsprofielen" +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Help of @NewHere ?" +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Duplicate gebeurtenis" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "Diensten verbinden" +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Verwijder gebeurtenis" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Zoek vrienden" +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D g:i A" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "Laatste gebruikers" +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "g:i A" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "Snelstart" +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Toon kaart" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Verberg kaart" + +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "%s's verjaardag" + +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gefeliciteerd %s" + +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "Login mislukt" + +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "Niet genoeg informatie om te authentificeren" + +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "Wachtwoord mag niet leeg zijn" + +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "Lege wachtwoorden zijn niet toegestaan" + +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander." + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "Het wachtwoord mag geen geaccentueerde letters, spaties of dubbele punten bevatten (:)" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid." + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Gebruikersnaam moet minimaal %s tekens bevatten." +msgstr[1] "Gebruikersnaam moet minimaal %s tekens bevatten" + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Gebruikersnaam mag maximaal %s tekens bevatten." +msgstr[1] "Gebruikersnaam mag maximaal %s tekens bevatten." + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." + +#: src/Model/User.php:703 +msgid "Your email domain is not among those allowed on this site." +msgstr "Je e-maildomein is op deze website niet toegestaan." + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "De bijnaam werd geblokkeerd voor registratie door de node admin" + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Je bijnaam mag alleen a-z, 0-9 of _ bevatten." + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "Er is een fout opgetreden tijdens de registratie. Probeer opnieuw." + +#: src/Model/User.php:808 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw." + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw." + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Vrienden" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "Er is een fout opgetreden bij het aanmaken van je standaard contact groep. Probeer opnieuw." + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\tBeste %1$s,\n\t\t\tde administrator van %2$s heeft een gebruiker voor je aangemaakt." + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "\n\t\tDe logingegevens zijn als volgt:\n\n\t\tSite Locatie:\t%1$s\n\t\tLogin Naam:\t\t%2$s\n\t\tWachtwoord:\t\t%3$s\n\n\t\tJe kunt je wachtwoord wijzigen vanuit je gebruikers \"Instellingen\" pagina\n\t\tnadat je bent ingelogd.\n\n\t\tGelieve even de tijd te nemen om de andere gebruikersinstellingen te controleren op die pagina.\n\n\t\tAls je wilt kun je ook wat basisinformatie aan je standaard profiel toevoegen\n\t\t(op de \"Profielen\" pagina) zodat ander mensen je makkelijk kunnen vinden.\n\n\t\tWe bevelen je aan om je volledige naam in te vullen, een profielfoto en\n\t\tenkele profiel \"sleutelwoorden\" toe te voegen (zeer zinvol om nieuwe vrienden te maken) - en\n\t\tmisschien aangeven in welk land je woont; als je niet specifieker dan dat wenst te zijn.\n\n\t\tWe respecteren volledig je recht op privésfeer en geen van deze items zijn noodzakelijk.\n\t\tAls je hier nieuw bent en nog niemand kent, dan kunnen zij\n\t\tje helpen om enkele nieuwe en interessante vrienden te maken.\n\n\t\tAls je ooit je gebruiker wenst te verwijderen, dan kan je dat doen op %1$s/removeme\n\n\t\tBedankt en welkom bij %4$s." + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Registratie details voor %s" + +#: src/Model/User.php:1068 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tBedankt voor uw registratie op %2$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3$s\n\t\t\tGebruikersnaam:\t\t%4$s\n\t\t\tWachtwoord:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "Registratie bij %s" + +#: src/Model/User.php:1111 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\tBedankt voor je inschrijving op %2$s. Je gebruiker is aangemaakt.\n\t\t\t" + +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tDe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%3$s\n\t\t\tLogin Naam:\t\t%1$s\n\t\t\tWachtwoord:\t\t%5$s\n\n\t\t\tJe kunt je wachtwoord in de \"Instellingen\" pagina veranderen nadat je bent ingelogd.\n\n\t\t\tNeem een ogenblik de tijd om je andere instellingen na te kijken op die pagina.\n\n\t\t\tJe kunt ook wat basis informatie toevoegen aan je standaard profiel\n\t\t\t(in de \"Profielen\" pagina) zodat anderen je gemakkelijk kunnen vinden.\n\n\t\t\tWe raden aan je volledige naam in te vullen, een profiel foto toe te voegen,\n\t\t\tenkele profiel \"sleutelwoorden\" (zeer handig om nieuwe vrienden te leren kennen) - en\n\t\t\tmisschien in welk land je woont; als je niet meer details wil geven.\n\t\t\tWe respecteren je privacy volledig, en geen van deze velden zijn verplicht.\n\t\t\tAls je nieuw bent en niemand kent, dan kunnen zij je misschien\n\t\t\thelpen om enkele nieuwe en interessante vrienden te leren kennen.\n\n\t\t\tAls je ooit je account wil verwijderen, dan kan je dat via %3$s/removeme\n\n\t\t\tBedankt en welkom bij %2$s." + +#: src/Model/Group.php:92 +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. " + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy groep voor nieuwe contacten" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Iedereen" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "verander" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "toevoegen" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Verander groep" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Bewerk groepen" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Atom feed" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "G l j F" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "d F" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[vandaag]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "Evenementen de komende 7 dagen:" + +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s verwelkomt %2$s" + +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Nieuw Contact toevoegen" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Voeg een webadres of -locatie in:" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Verbinden" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "Iedereen" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "Relaties" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "Protocollen" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "Alle protocollen" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Bewaarde Mappen" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Alles" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Categorieën" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gedeeld contact" +msgstr[1] "%d gedeelde contacten" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Archieven" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "Frequent" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "Ieder uur" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "Twee maal daags" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "Dagelijks" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "Wekelijks" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "Maandelijks" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "Toespraak" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "Diaspora Connector" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "GNU Social Connector" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Algemene functies" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Foto Locatie" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Populaire Tags" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Toon een widget voor communitypagina met een lijst van de populairste tags in recente openbare berichten." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Auto-vermelding Forums" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Voeg toe/verwijder vermelding wanneer een forum pagina geselecteerd/gedeselecteerd wordt in het ACL venster." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Expliciete vermeldingen" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Geavanceerde Profiel Instellingen" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "Lijst Fora op" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina" + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Tag Wolk" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Voorzie een persoonlijk tag wolk op je profiel pagina" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Toon Lidmaatschap Datum" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Toon lidmaatschap datum in profiel" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@naam, !forum, #labels, inhoud" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Inloggen" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "Je persoonlijke nota's" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Tijdlijn" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Maak een accoount" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Apps" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Volledige tekst" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Labels" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Website" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "Gesprekken op deze en andere servers" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Gids" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "Personengids" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "informatie over deze friendica server" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "Gebruiksvoorwaarden op deze Friendica server" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Verzoeken" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Inbox" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "Gebruikers" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Navigatie" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Sitemap" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Exporteer" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Exporteer kalender als ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Exporteer kalender als csv" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Populaire Tags (laatste %d uur)" +msgstr[1] "Populaire Tags (laatste %d uur)" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "Meer Populaire Tags" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "Geen contacten" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "nieuwere berichten" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "oudere berichten" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Inbedden uitgeschakeld" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Ingebedde inhoud" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "vorige" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "laatste" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "Meer berichten aan het laden..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "Het einde" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Ongeldig bron protocol" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Ongeldig verbinding protocol" + +#: src/BaseModule.php:150 +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 "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd." diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index 7f898eb835..aaa33eb9fc 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -6,16 +6,97 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.", - 1 => "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.", - 1 => "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "De maandelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard."; -$a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["default"] = "standaard"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "Verstuur"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Variations"] = "Variaties"; +$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["Comma separated list of helper forums"] = "Kommagescheiden lijst van de helper forums"; +$a->strings["don't show"] = "niet tonen"; +$a->strings["show"] = "tonen"; +$a->strings["Set style"] = "Stijl instellen"; +$a->strings["Community Pages"] = "Forum/groepspagina's"; +$a->strings["Community Profiles"] = "Forum/groepsprofielen"; +$a->strings["Help or @NewHere ?"] = "Help of @NewHere ?"; +$a->strings["Connect Services"] = "Diensten verbinden"; +$a->strings["Find Friends"] = "Zoek vrienden"; +$a->strings["Last users"] = "Laatste gebruikers"; +$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["Find"] = "Zoek"; +$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; +$a->strings["Similar Interests"] = "Dezelfde interesses"; +$a->strings["Random Profile"] = "Willekeurig Profiel"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; +$a->strings["Global Directory"] = "Globale gids"; +$a->strings["Local Directory"] = "Lokale gids"; +$a->strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "Externe link naar het forum"; +$a->strings["show more"] = "toon meer"; +$a->strings["Quick Start"] = "Snelstart"; +$a->strings["Help"] = "Help"; +$a->strings["Custom"] = "Aangepast"; +$a->strings["Note"] = "Nota"; +$a->strings["Check image permissions if all users are allowed to see the image"] = "Controleer of alle gebruikers permissie hebben om het beeld te zien "; +$a->strings["Select color scheme"] = "Selecteer kleurschema"; +$a->strings["Copy or paste schemestring"] = "Kopieer of plak schemastring"; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Je kan deze string kopiëren om uw je kleurenschema met anderen te delen. Een schemastring plakken past deze toe."; +$a->strings["Navigation bar background color"] = "Navigatie balk achtergrondkleur"; +$a->strings["Navigation bar icon color "] = "Navigatie balk icoon kleur"; +$a->strings["Link color"] = "Link kleur"; +$a->strings["Set the background color"] = "Stel de achtergrondkleur in"; +$a->strings["Content background opacity"] = "Content achtergrond opaciteit"; +$a->strings["Set the background image"] = "Stel het achtergrondbeeld in"; +$a->strings["Background image style"] = "Achtergrond beeld stijl"; +$a->strings["Login page background image"] = "Achtergrondafbeelding aanmeldpagina"; +$a->strings["Login page background color"] = "Achtergrondkleur aanmeldpagina"; +$a->strings["Leave background image and color empty for theme defaults"] = "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken"; +$a->strings["Guest"] = "Gast"; +$a->strings["Visitor"] = "Bezoeker"; +$a->strings["Status"] = "Tijdlijn"; +$a->strings["Your posts and conversations"] = "Jouw berichten en gesprekken"; +$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["Videos"] = "Video's"; +$a->strings["Your videos"] = "Je video's"; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Network"] = "Netwerk"; +$a->strings["Conversations from your friends"] = "Gesprekken van je vrienden"; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$a->strings["Messages"] = "Privéberichten"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["Settings"] = "Instellingen"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Contacts"] = "Contacten"; +$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; +$a->strings["Follow Thread"] = "Gesprek volgen"; +$a->strings["Skip to main content"] = "Ga naar hoofdinhoud"; +$a->strings["Top Banner"] = "Banner Bovenaan"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Pas het beeld aan aan de breedte van het scherm en toon achtergrondkleur onder lange pagina's"; +$a->strings["Full screen"] = "Volledig scherm"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Pas het beeld aan om het hele scherm te vullen, met ofwel de rechter- of de onderkant afgeknipt."; +$a->strings["Single row mosaic"] = "Enkele rij mozaïek"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Pas het beeld aan zodat het herhaald wordt op een enkele rij, ofwel vertikaal ofwel horizontaal"; +$a->strings["Mosaic"] = "Mozaïek"; +$a->strings["Repeat image to fill the screen."] = "Herhaal beeld om het scherm te vullen."; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: author-id en owner-id in item en gesprekstabel aan het updaten."; +$a->strings["%s: Updating post-type."] = "%s: bericht-type bewerken"; $a->strings["%1\$s poked %2\$s"] = "%1\$s porde %2\$s aan"; $a->strings["event"] = "gebeurtenis"; $a->strings["status"] = "status"; @@ -31,7 +112,6 @@ $a->strings["View in context"] = "In context bekijken"; $a->strings["Please wait"] = "Even geduld"; $a->strings["remove"] = "verwijder"; $a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; -$a->strings["Follow Thread"] = "Gesprek volgen"; $a->strings["View Status"] = "Bekijk status"; $a->strings["View Profile"] = "Bekijk profiel"; $a->strings["View Photos"] = "Bekijk foto's"; @@ -41,7 +121,6 @@ $a->strings["Send PM"] = "Stuur een privébericht"; $a->strings["Block"] = "Blokkeren"; $a->strings["Ignore"] = "Negeren"; $a->strings["Poke"] = "Porren"; -$a->strings["Connect/Follow"] = "Verbind/Volg"; $a->strings["%s likes this."] = "%s vindt dit leuk."; $a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; $a->strings["%s attends."] = "%s neemt deel"; @@ -160,34 +239,34 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "J $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Je kreeg een [url=%1\$s]registratieaanvraag[/url] van %2\$s."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Volledige naam:\t%s\nAdres van de site:\t%s\nLoginnaam:\t%s (%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Bezoek %s om de aanvraag goed of af te keuren."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Authorize application connection"] = "Verbinding met de applicatie goedkeuren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Keer terug naar jouw app en voeg deze beveiligingscode in:"; -$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"] = "Nee"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.", + 1 => "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard.", + 1 => "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "De maandelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard."; +$a->strings["Profile Photos"] = "Profielfoto's"; $a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; -$a->strings["Events"] = "Gebeurtenissen"; -$a->strings["View"] = "Beeld"; -$a->strings["Previous"] = "Vorige"; -$a->strings["Next"] = "Volgende"; -$a->strings["today"] = "vandaag"; -$a->strings["month"] = "maand"; -$a->strings["week"] = "week"; -$a->strings["day"] = "dag"; -$a->strings["list"] = "lijst"; -$a->strings["User not found"] = "Gebruiker niet gevonden"; -$a->strings["This calendar format is not supported"] = "Dit kalender formaat is niet ondersteund"; -$a->strings["No exportable data found"] = "Geen exporteerbare data gevonden"; -$a->strings["calendar"] = "kalender"; -$a->strings["No contacts in common."] = "Geen gedeelde contacten."; -$a->strings["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["Profile not found."] = "Profiel niet gevonden"; +$a->strings["Bad Request."] = ""; $a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen."; +$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["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["Insert web link"] = "Voeg een webadres in"; +$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:"; @@ -204,265 +283,21 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; $a->strings["Unable to update your contact profile details on our system"] = "Kan je contact profiel details op ons systeem niet aanpassen"; $a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; -$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"] = [ - 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["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; -$a->strings["Apparently you are already friends with %s."] = "Blijkbaar ben je al bevriend met %s."; -$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; -$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; -$a->strings["Blocked domain"] = "Domein geblokeerd"; -$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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven."; -$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["Confirm"] = "Bevestig"; -$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["Public access denied."] = "Niet vrij toegankelijk"; -$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Voer hier uw webvingeradres (gebruiker@domein.tld) ​​of profiel-URL in. Als dit niet wordt ondersteund door uw systeem (het werkt bijvoorbeeld niet met Diaspora), moet u zich rechtstreeks op uw systeem abonneren met %s"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan."; -$a->strings["Your Webfinger address or profile URL:"] = "Uw Webfinger adres of profiel-URL:"; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["%s knows you"] = "%s kent je"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "Het gevraagde item bestaat niet of is verwijderd"; -$a->strings["The feed for this item is unavailable."] = "De tijdlijn voor dit item is niet beschikbaar"; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["Save"] = "Bewaren"; -$a->strings["Insert web link"] = "Voeg een webadres in"; -$a->strings["web link"] = "webadres"; -$a->strings["Insert video link"] = "Voeg video toe"; -$a->strings["video link"] = "video adres"; -$a->strings["Insert audio link"] = "Voeg audio adres toe"; -$a->strings["audio link"] = "audio adres"; -$a->strings["CC: email addresses"] = "CC: e-mailadressen"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; -$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voor het begin."; -$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; -$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; -$a->strings["Event details"] = "Gebeurtenis details"; -$a->strings["Starting date and Title are required."] = "Start datum en Titel zijn verplicht."; -$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["Submit"] = "Verstuur"; -$a->strings["Basic"] = "Basis"; -$a->strings["Advanced"] = "Geavanceerd"; -$a->strings["Permissions"] = "Rechten"; -$a->strings["Failed to remove event"] = "Kon remote event niet verwijderen"; -$a->strings["Event removed"] = "Gebeurtenis verwijderd"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Contact Photos"] = "Contactfoto's"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["Files"] = "Bestanden"; -$a->strings["The contact could not be added."] = "Het contact kon niet toegevoegd worden."; -$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd"; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden."; -$a->strings["Your Identity Address:"] = "Adres van je identiteit:"; -$a->strings["Profile URL"] = "Profiel url"; -$a->strings["Tags:"] = "Labels:"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$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["Post updated."] = "Post geupdate."; -$a->strings["Item wasn't stored."] = "Item is niet opgeslagen."; -$a->strings["Item couldn't be fetched."] = "Item kan niet worden opgehaald."; -$a->strings["Post published."] = "Post gepubliceerd."; -$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["Followers"] = "Volgers"; -$a->strings["Mutuals"] = "Gemeenschappelijk"; -$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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tBeste %1\$s,\n\t\t\tEr is recent om \"%2\$s\" een verzoek gekomen om je wachtwoord te resetten.\n\t\tOm dit verzoek te bevestigen, gelieve de verificatie link hieronder te volgen of in je browser te kopiëren.\n\n\t\tAls je dit verzoek NIET hebt gedaan, volg deze link dan NIET en negeer \n\t\ten/of verwijder deze email, het verzoek zal binnenkort vanzelf ongeldig worden.\n\n\t\tJe wachtwoord zal niet aangepast worden tenzij we kunnen verifiëren\n\t\tdat je dit verzoek verzonden hebt."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tVolg nu deze link om je identiteit te bevestigen:\n\n\t\t%1\$s\n\n\t\tJe zal dan een boodschap krijgen met je nieuw wachtwoord.\n\t\tJe kunt je wachtwoord veranderen in je instelling pagina nadat je ingelogd bent.\n\n\t\tDe login details zijn de volgende:\n\n\t\tSite locatie:\t%2\$s\n\t\tLogin naam:\t%3\$s"; -$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["Request has expired, please make a new one."] = "Aanvraag is verlopen, gelieve een nieuwe aan te maken."; -$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["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["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tBeste %1\$s,\n\t\t\t\tJe wachtwoord is aangepast zoals je gevraagd hebt. Hou deze informatie\n\t\t\talstublieft bij (of pas je wachtwoord onmiddellijk aan\n\t\t\tnaar iets wat je je kan herinneren).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1\$s\n\t\t\tLogin Naam:\t%2\$s\n\t\t\tWachtwwoord:\t%3\$s\n\n\t\t\tJe kan dit wachtwoord in het account instellingen aanpassen nadat je ingelogd bent.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; +$a->strings["No videos selected"] = "Geen video's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["View Video"] = "Bekijk Video"; +$a->strings["View Album"] = "Album bekijken"; +$a->strings["Recent Videos"] = "Recente video's"; +$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; $a->strings["No keywords to match. Please add keywords to your profile."] = "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel."; -$a->strings["Connect"] = "Verbinden"; $a->strings["first"] = "eerste"; $a->strings["next"] = "volgende"; $a->strings["No matches"] = "Geen resultaten"; $a->strings["Profile Match"] = "Profielmatch"; -$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["Discard"] = "Verwerpen"; -$a->strings["Messages"] = "Privéberichten"; -$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; -$a->strings["Conversation not found."] = "Gesprek niet gevonden."; -$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["No messages."] = "Geen berichten."; -$a->strings["Message not available."] = "Bericht niet beschikbaar."; -$a->strings["Delete message"] = "Verwijder bericht"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "Verwijder gesprek"; -$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["Unknown sender - %s"] = "Onbekende afzender - %s"; -$a->strings["You and %s"] = "Jij en %s"; -$a->strings["%s and You"] = "%s en jij"; -$a->strings["%d message"] = [ - 0 => "%d bericht", - 1 => "%d berichten", -]; -$a->strings["No such group"] = "Zo'n groep bestaat niet"; -$a->strings["Group is empty"] = "De groep is leeg"; -$a->strings["Group: %s"] = "Groep: %s"; -$a->strings["Invalid contact."] = "Ongeldig contact."; -$a->strings["Latest Activity"] = "Laatste activiteit"; -$a->strings["Sort by latest activity"] = "Sorteer naar laatste activiteit"; -$a->strings["Latest Posts"] = "Laatste Berichten"; -$a->strings["Sort by post received date"] = "Sorteren naar ontvangstdatum bericht"; -$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["Personal Notes"] = "Persoonlijke Nota's"; -$a->strings["Post successful."] = "Bericht succesvol geplaatst."; -$a->strings["Subscribing to OStatus contacts"] = "Inschrijven bij OStatus contacten"; -$a->strings["No contact provided."] = "Geen contact opgegeven."; -$a->strings["Couldn't fetch information for contact."] = "Kon de informatie voor het contact niet ophalen."; -$a->strings["Couldn't fetch friends for contact."] = "Kon de vrienden van contact niet ophalen."; -$a->strings["Done"] = "Klaar"; -$a->strings["success"] = "Succesvol"; -$a->strings["failed"] = "Mislukt"; -$a->strings["ignored"] = "Verboden"; -$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; -$a->strings["Album not found."] = "Album niet gevonden"; -$a->strings["Album successfully deleted"] = "Album succesvol gedeeld"; -$a->strings["Album was empty."] = "Het album was leeg"; -$a->strings["a photo"] = "een foto"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; -$a->strings["Image exceeds size limit of %s"] = "Beeld is groter dan de limiet ( %s )"; -$a->strings["Image upload didn't complete, please try again"] = "Opladen van het beeld is niet compleet, probeer het opnieuw"; -$a->strings["Image file is missing"] = "Beeld bestand ontbreekt"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder"; -$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["Upload Photos"] = "Upload foto's"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or select existing album:"] = "Of selecteer bestaand album:"; -$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; -$a->strings["Show to Groups"] = "Tonen aan groepen"; -$a->strings["Show to Contacts"] = "Tonen aan contacten"; -$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 Album"] = "Verwijder album"; -$a->strings["Edit Album"] = "Album wijzigen"; -$a->strings["Drop Album"] = "Album verwijderen"; -$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["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["View photo"] = "Bekijk foto"; -$a->strings["Edit photo"] = "Bewerk foto"; -$a->strings["Delete photo"] = "Foto verwijderen"; -$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; -$a->strings["Private Photo"] = "Privé foto"; -$a->strings["View Full Size"] = "Bekijk in volledig formaat"; -$a->strings["Tags: "] = "Labels: "; -$a->strings["[Select tags to remove]"] = "[Selecteer tags om te verwijderen]"; -$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["Do not rotate"] = "Niet roteren"; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Comment"] = "Reacties"; -$a->strings["Map"] = "Kaart"; -$a->strings["View Album"] = "Album bekijken"; -$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; -$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; -$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["User deleted their account"] = "Gebruiker verwijderde zijn of haar account"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups."; -$a->strings["The user id is %d"] = "De gebruikers id is %d"; -$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["Resubscribing to OStatus contacts"] = "Opnieuw inschrijven bij OStatus contacten"; -$a->strings["Error"] = [ - 0 => "Fout", - 1 => "Fouten", -]; $a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; $a->strings["Update"] = "Wijzigen"; $a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; -$a->strings["Email settings updated."] = "E-mail instellingen opgeslagen"; -$a->strings["Features updated"] = "Functies opgeslagen"; $a->strings["Contact CSV file upload error"] = ""; $a->strings["Importing Contacts done"] = "Importeren Contacten voltooid"; $a->strings["Relocate message has been send to your contacts"] = "Verhuis boodschap is verzonden naar je contacten"; @@ -477,7 +312,7 @@ $a->strings["Invalid email."] = "Ongeldig email adres."; $a->strings["Cannot change to that email."] = "Kan niet naar dat email adres veranderen."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; -$a->strings["Settings updated."] = "Instellingen opgeslagen"; +$a->strings["Settings were not updated."] = ""; $a->strings["Add application"] = "Toepassing toevoegen"; $a->strings["Save Settings"] = "Instellingen opslaan"; $a->strings["Name"] = "Naam"; @@ -635,15 +470,158 @@ $a->strings["Upload File"] = "Upload bestand"; $a->strings["Relocate"] = "Verhuis"; $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."] = "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop."; $a->strings["Resend relocate message to contacts"] = "Stuur verhuis boodschap naar contacten"; -$a->strings["Contact suggestion successfully ignored."] = "Contact suggestie succesvol genegeerd"; -$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["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; -$a->strings["Tag(s) removed"] = "Tag(s) verwijderd"; +$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; +$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["No items found"] = ""; +$a->strings["No such group"] = "Zo'n groep bestaat niet"; +$a->strings["Group is empty"] = "De groep is leeg"; +$a->strings["Group: %s"] = "Groep: %s"; +$a->strings["Invalid contact."] = "Ongeldig contact."; +$a->strings["Latest Activity"] = "Laatste activiteit"; +$a->strings["Sort by latest activity"] = "Sorteer naar laatste activiteit"; +$a->strings["Latest Posts"] = "Laatste Berichten"; +$a->strings["Sort by post received date"] = "Sorteren naar ontvangstdatum bericht"; +$a->strings["Personal"] = "Persoonlijk"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Resubscribing to OStatus contacts"] = "Opnieuw inschrijven bij OStatus contacten"; +$a->strings["Error"] = [ + 0 => "Fout", + 1 => "Fouten", +]; +$a->strings["Done"] = "Klaar"; +$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is"; +$a->strings["You aren't following this contact."] = "Je volgt dit contact niet."; +$a->strings["Unfollowing is currently not supported by your network."] = "Ontvolgen is momenteel niet gesupporteerd door je netwerk."; +$a->strings["Disconnect/Unfollow"] = "Disconnecteer/stop met volgen"; +$a->strings["Your Identity Address:"] = "Adres van je identiteit:"; +$a->strings["Submit Request"] = "Aanvraag indienen"; +$a->strings["Profile URL"] = "Profiel url"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["New Message"] = "Nieuw Bericht"; +$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; +$a->strings["Discard"] = "Verwerpen"; +$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["Conversation not found."] = "Gesprek niet gevonden."; +$a->strings["Message was not deleted."] = ""; +$a->strings["Conversation was not removed."] = ""; +$a->strings["No messages."] = "Geen berichten."; +$a->strings["Message not available."] = "Bericht niet beschikbaar."; +$a->strings["Delete message"] = "Verwijder bericht"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "Verwijder gesprek"; +$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["Unknown sender - %s"] = "Onbekende afzender - %s"; +$a->strings["You and %s"] = "Jij en %s"; +$a->strings["%s and You"] = "%s en jij"; +$a->strings["%d message"] = [ + 0 => "%d bericht", + 1 => "%d berichten", +]; +$a->strings["Subscribing to OStatus contacts"] = "Inschrijven bij OStatus contacten"; +$a->strings["No contact provided."] = "Geen contact opgegeven."; +$a->strings["Couldn't fetch information for contact."] = "Kon de informatie voor het contact niet ophalen."; +$a->strings["Couldn't fetch friends for contact."] = "Kon de vrienden van contact niet ophalen."; +$a->strings["success"] = "Succesvol"; +$a->strings["failed"] = "Mislukt"; +$a->strings["ignored"] = "Verboden"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; +$a->strings["User deleted their account"] = "Gebruiker verwijderde zijn of haar account"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups."; +$a->strings["The user id is %d"] = "De gebruikers id is %d"; +$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["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["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["The requested item doesn't exist or has been deleted."] = "Het gevraagde item bestaat niet of is verwijderd"; +$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; +$a->strings["The feed for this item is unavailable."] = "De tijdlijn voor dit item is niet beschikbaar"; +$a->strings["Invalid request."] = "Ongeldige aanvraag."; +$a->strings["Image exceeds size limit of %s"] = "Beeld is groter dan de limiet ( %s )"; +$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; +$a->strings["Wall Photos"] = "Tijdlijn foto's"; +$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; +$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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tBeste %1\$s,\n\t\t\tEr is recent om \"%2\$s\" een verzoek gekomen om je wachtwoord te resetten.\n\t\tOm dit verzoek te bevestigen, gelieve de verificatie link hieronder te volgen of in je browser te kopiëren.\n\n\t\tAls je dit verzoek NIET hebt gedaan, volg deze link dan NIET en negeer \n\t\ten/of verwijder deze email, het verzoek zal binnenkort vanzelf ongeldig worden.\n\n\t\tJe wachtwoord zal niet aangepast worden tenzij we kunnen verifiëren\n\t\tdat je dit verzoek verzonden hebt."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tVolg nu deze link om je identiteit te bevestigen:\n\n\t\t%1\$s\n\n\t\tJe zal dan een boodschap krijgen met je nieuw wachtwoord.\n\t\tJe kunt je wachtwoord veranderen in je instelling pagina nadat je ingelogd bent.\n\n\t\tDe login details zijn de volgende:\n\n\t\tSite locatie:\t%2\$s\n\t\tLogin naam:\t%3\$s"; +$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["Request has expired, please make a new one."] = "Aanvraag is verlopen, gelieve een nieuwe aan te maken."; +$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["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 reset."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tBeste %1\$s,\n\t\t\t\tJe wachtwoord is aangepast zoals je gevraagd hebt. Hou deze informatie\n\t\t\talstublieft bij (of pas je wachtwoord onmiddellijk aan\n\t\t\tnaar iets wat je je kan herinneren).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1\$s\n\t\t\tLogin Naam:\t%2\$s\n\t\t\tWachtwwoord:\t%3\$s\n\n\t\t\tJe kan dit wachtwoord in het account instellingen aanpassen nadat je ingelogd bent.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %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"] = [ + 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["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; +$a->strings["Apparently you are already friends with %s."] = "Blijkbaar ben je al bevriend met %s."; +$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; +$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; +$a->strings["Blocked domain"] = "Domein geblokeerd"; +$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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven."; +$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["Confirm"] = "Bevestig"; +$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["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Voer hier uw webvingeradres (gebruiker@domein.tld) ​​of profiel-URL in. Als dit niet wordt ondersteund door uw systeem (het werkt bijvoorbeeld niet met Diaspora), moet u zich rechtstreeks op uw systeem abonneren met %s"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan."; +$a->strings["Your Webfinger address or profile URL:"] = "Uw Webfinger adres of profiel-URL:"; +$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; +$a->strings["%s knows you"] = "%s kent je"; +$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; +$a->strings["Authorize application connection"] = "Verbinding met de applicatie goedkeuren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Keer terug naar jouw app en voeg deze beveiligingscode in:"; +$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"] = "Nee"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat"; +$a->strings["Or - did you try to upload an empty file?"] = "Of - probeerde je een lege file op te laden?"; +$a->strings["File exceeds size limit of %s"] = "Bestand is groter dan de limiet ( %s )"; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; +$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["Post updated."] = "Post geupdate."; +$a->strings["Item wasn't stored."] = "Item is niet opgeslagen."; +$a->strings["Item couldn't be fetched."] = "Item kan niet worden opgehaald."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; $a->strings["User imports on closed servers can only be done by an administrator."] = "Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator"; $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["Import"] = "Importeren"; @@ -653,236 +631,139 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren."; $a->strings["Account file"] = "Account bestand"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Om je account te exporteren, ga naar \"Instellingen->Exporteer je persoonlijke data\" en selecteer \"Exporteer account\""; -$a->strings["You aren't following this contact."] = "Je volgt dit contact niet."; -$a->strings["Unfollowing is currently not supported by your network."] = "Ontvolgen is momenteel niet gesupporteerd door je netwerk."; -$a->strings["Contact unfollowed"] = "Contact ontvolgd."; -$a->strings["Disconnect/Unfollow"] = "Disconnecteer/stop met volgen"; -$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["Number of daily wall messages for %s exceeded. Message failed."] = "Maximum aantal dagelijkse tijdlijn boodschappen van %s overschreden. Kon boodschap niet plaatsen."; -$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["Invalid request."] = "Ongeldige aanvraag."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat"; -$a->strings["Or - did you try to upload an empty file?"] = "Of - probeerde je een lege file op te laden?"; -$a->strings["File exceeds size limit of %s"] = "Bestand is groter dan de limiet ( %s )"; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$a->strings["Wall Photos"] = "Tijdlijn foto's"; +$a->strings["User not found."] = "Gebruiker niet gevonden."; +$a->strings["View"] = "Beeld"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Next"] = "Volgende"; +$a->strings["today"] = "vandaag"; +$a->strings["month"] = "maand"; +$a->strings["week"] = "week"; +$a->strings["day"] = "dag"; +$a->strings["list"] = "lijst"; +$a->strings["User not found"] = "Gebruiker niet gevonden"; +$a->strings["This calendar format is not supported"] = "Dit kalender formaat is niet ondersteund"; +$a->strings["No exportable data found"] = "Geen exporteerbare data gevonden"; +$a->strings["calendar"] = "kalender"; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["Save"] = "Bewaren"; +$a->strings["web link"] = "webadres"; +$a->strings["Insert video link"] = "Voeg video toe"; +$a->strings["video link"] = "video adres"; +$a->strings["Insert audio link"] = "Voeg audio adres toe"; +$a->strings["audio link"] = "audio adres"; +$a->strings["CC: email addresses"] = "CC: e-mailadressen"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; +$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voor het begin."; +$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; +$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; +$a->strings["Event details"] = "Gebeurtenis details"; +$a->strings["Starting date and Title are required."] = "Start datum en Titel zijn verplicht."; +$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["Basic"] = "Basis"; +$a->strings["Advanced"] = "Geavanceerd"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Failed to remove event"] = "Kon remote event niet verwijderen"; +$a->strings["The contact could not be added."] = "Het contact kon niet toegevoegd worden."; +$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd"; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren."; +$a->strings["Tags:"] = "Labels:"; +$a->strings["Contact Photos"] = "Contactfoto's"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; +$a->strings["Album not found."] = "Album niet gevonden"; +$a->strings["Album successfully deleted"] = "Album succesvol gedeeld"; +$a->strings["Album was empty."] = "Het album was leeg"; +$a->strings["Failed to delete the photo."] = ""; +$a->strings["a photo"] = "een foto"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = "Opladen van het beeld is niet compleet, probeer het opnieuw"; +$a->strings["Image file is missing"] = "Beeld bestand ontbreekt"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Upload Photos"] = "Upload foto's"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or select existing album:"] = "Of selecteer bestaand album:"; +$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; +$a->strings["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$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 Album"] = "Verwijder album"; +$a->strings["Edit Album"] = "Album wijzigen"; +$a->strings["Drop Album"] = "Album verwijderen"; +$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["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["View photo"] = "Bekijk foto"; +$a->strings["Edit photo"] = "Bewerk foto"; +$a->strings["Delete photo"] = "Foto verwijderen"; +$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; +$a->strings["Private Photo"] = "Privé foto"; +$a->strings["View Full Size"] = "Bekijk in volledig formaat"; +$a->strings["Tags: "] = "Labels: "; +$a->strings["[Select tags to remove]"] = "[Selecteer tags om te verwijderen]"; +$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["Do not rotate"] = "Niet roteren"; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Comment"] = "Reacties"; +$a->strings["Map"] = "Kaart"; +$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["toggle mobile"] = "mobiel thema omwisselen"; $a->strings["Login failed."] = "Login mislukt."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Er is een probleem opgetreden bij het inloggen met het opgegeven OpenID. Kijk alsjeblieft de spelling van deze ID na."; $a->strings["The error message was:"] = "De foutboodschap was:"; $a->strings["Login failed. Please check your credentials."] = "Aanmelden mislukt. Controleer uw inloggegevens."; $a->strings["Welcome %s"] = "Welkom %s"; $a->strings["Please upload a profile photo."] = "Upload een profielfoto."; -$a->strings["Welcome back %s"] = "Welkom terug %s"; -$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["toggle mobile"] = "mobiel thema omwisselen"; $a->strings["Method not allowed for this module. Allowed method(s): %s"] = ""; $a->strings["Page not found."] = "Pagina niet gevonden"; -$a->strings["No system theme config value set."] = "Geen systeem thema configuratie ingesteld."; -$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."] = "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd."; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)"; -$a->strings["The contact entries have been archived"] = "The contacten zijn gearchiveerd"; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Kon geen contact vinden op deze URL (%s)"; -$a->strings["The contact has been blocked from the node"] = "Het contact is geblokkeerd van deze node"; -$a->strings["Post update version number has been set to %s."] = "Bericht update versie is ingesteld op %s"; -$a->strings["Check for pending update actions."] = "Controleren op uitgestelde update acties."; -$a->strings["Done."] = "Gedaan"; -$a->strings["Execute pending post updates."] = "uitgestelde bericht update acties uitvoeren"; -$a->strings["All pending post updates are done."] = "Alle uitgestelde bericht update acties zijn uitgevoerd"; -$a->strings["Enter new password: "] = "Geef nieuw wachtwoord:"; -$a->strings["Enter user name: "] = "Geef gebruikersnaam in:"; -$a->strings["Enter user nickname: "] = "Geef een bijnaam in:"; -$a->strings["Enter user email address: "] = "Geef een gebruiker email adres in:"; -$a->strings["Enter a language (optional): "] = "Geef uw taalkeuze in (optioneel):"; -$a->strings["User is not pending."] = "Gebruiker is niet in behandeling."; -$a->strings["Type \"yes\" to delete %s"] = "Type \"Ja\" om te wissen %s"; -$a->strings["newer"] = "nieuwere berichten"; -$a->strings["older"] = "oudere berichten"; -$a->strings["Frequently"] = "Frequent"; -$a->strings["Hourly"] = "Ieder uur"; -$a->strings["Twice daily"] = "Twee maal daags"; -$a->strings["Daily"] = "Dagelijks"; -$a->strings["Weekly"] = "Wekelijks"; -$a->strings["Monthly"] = "Maandelijks"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Zot!"] = "Zot!"; -$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["Discourse"] = "Toespraak"; -$a->strings["Diaspora Connector"] = "Diaspora Connector"; -$a->strings["GNU Social Connector"] = "GNU Social Connector"; -$a->strings["ActivityPub"] = "ActivityPub"; -$a->strings["pnut"] = "pnut"; -$a->strings["%s (via %s)"] = ""; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Photo Location"] = "Foto Locatie"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart."; -$a->strings["Export Public Calendar"] = "Exporteer Publieke Kalender"; -$a->strings["Ability for visitors to download the public calendar"] = "Mogelijkheid voor bezoekers om de publieke kalender te downloaden"; -$a->strings["Trending Tags"] = "Populaire Tags"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Toon een widget voor communitypagina met een lijst van de populairste tags in recente openbare berichten."; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Auto-mention Forums"] = "Auto-vermelding Forums"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Voeg toe/verwijder vermelding wanneer een forum pagina geselecteerd/gedeselecteerd wordt in het ACL venster."; -$a->strings["Explicit Mentions"] = "Expliciete vermeldingen"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld."; -$a->strings["Network Sidebar"] = "Netwerk Zijbalk"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; -$a->strings["Protocol Filter"] = "Proctocol Filter"; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde protocollen"; -$a->strings["Network Tabs"] = "Netwerktabs"; -$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"] = "Netwerk Gedeelde Links Tab"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Activeer tab om alleen Netwerk berichten met links in te tonen"; -$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Advanced Profile Settings"] = "Geavanceerde Profiel Instellingen"; -$a->strings["List Forums"] = "Lijst Fora op"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina"; -$a->strings["Tag Cloud"] = "Tag Wolk"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Voorzie een persoonlijk tag wolk op je profiel pagina"; -$a->strings["Display Membership Date"] = "Toon Lidmaatschap Datum"; -$a->strings["Display membership date in profile"] = "Toon lidmaatschap datum in profiel"; -$a->strings["Forums"] = "Forums"; -$a->strings["External link to forum"] = "Externe link naar het forum"; -$a->strings["show more"] = "toon meer"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Go back"] = "Ga terug"; -$a->strings["Clear notifications"] = "Notificaties verwijderen"; -$a->strings["@name, !forum, #tags, content"] = "@naam, !forum, #labels, inhoud"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Deze sessie beëindigen"; -$a->strings["Login"] = "Login"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Your posts and conversations"] = "Jouw berichten en gesprekken"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Your profile page"] = "Jouw profiel pagina"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Videos"] = "Video's"; -$a->strings["Your videos"] = "Je video's"; -$a->strings["Your events"] = "Jouw gebeurtenissen"; -$a->strings["Personal notes"] = "Persoonlijke nota's"; -$a->strings["Your personal notes"] = "Je persoonlijke nota's"; -$a->strings["Home"] = "Tijdlijn"; -$a->strings["Home Page"] = "Jouw tijdlijn"; -$a->strings["Register"] = "Registreer"; -$a->strings["Create an account"] = "Maak een accoount"; -$a->strings["Help"] = "Help"; -$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"] = "Zoeken"; -$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; -$a->strings["Full Text"] = "Volledige tekst"; -$a->strings["Tags"] = "Labels"; -$a->strings["Contacts"] = "Contacten"; -$a->strings["Community"] = "Website"; -$a->strings["Conversations on this and other servers"] = "Gesprekken op deze en andere servers"; -$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; -$a->strings["Directory"] = "Gids"; -$a->strings["People directory"] = "Personengids"; -$a->strings["Information"] = "Informatie"; -$a->strings["Information about this friendica instance"] = "informatie over deze friendica server"; -$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; -$a->strings["Terms of Service of this Friendica instance"] = "Gebruiksvoorwaarden op deze Friendica server"; -$a->strings["Network"] = "Netwerk"; -$a->strings["Conversations from your friends"] = "Gesprekken van je vrienden"; -$a->strings["Introductions"] = "Verzoeken"; -$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; -$a->strings["Notifications"] = "Notificaties"; -$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["Accounts"] = "Gebruikers"; -$a->strings["Manage other pages"] = "Andere pagina's beheren"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Account settings"] = "Account instellingen"; -$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; -$a->strings["Navigation"] = "Navigatie"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; -$a->strings["Embedded content"] = "Ingebedde inhoud"; -$a->strings["prev"] = "vorige"; -$a->strings["last"] = "laatste"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["Click to open/close"] = "klik om te openen/sluiten"; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Invalid source protocol"] = "Ongeldig bron protocol"; -$a->strings["Invalid link protocol"] = "Ongeldig verbinding protocol"; -$a->strings["Loading more entries..."] = "Meer berichten aan het laden..."; -$a->strings["The end"] = "Het einde"; -$a->strings["Follow"] = "Volg"; -$a->strings["Export"] = "Exporteer"; -$a->strings["Export calendar as ical"] = "Exporteer kalender als ical"; -$a->strings["Export calendar as csv"] = "Exporteer kalender als csv"; -$a->strings["No contacts"] = "Geen contacten"; -$a->strings["%d Contact"] = [ - 0 => "%d contact", - 1 => "%d contacten", -]; -$a->strings["View Contacts"] = "Bekijk contacten"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "Populaire Tags (laatste %d uur)", - 1 => "Populaire Tags (laatste %d uur)", -]; -$a->strings["More Trending Tags"] = "Meer Populaire Tags"; -$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"] = [ - 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["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; -$a->strings["Find"] = "Zoek"; -$a->strings["Similar Interests"] = "Dezelfde interesses"; -$a->strings["Random Profile"] = "Willekeurig Profiel"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Global Directory"] = "Globale gids"; -$a->strings["Local Directory"] = "Lokale gids"; -$a->strings["Groups"] = "Groepen"; -$a->strings["Everyone"] = "Iedereen"; -$a->strings["Following"] = "Volgend"; -$a->strings["Mutual friends"] = "Gemeenschappelijke vrienden"; -$a->strings["Relationships"] = "Relaties"; -$a->strings["All Contacts"] = "Alle Contacten"; -$a->strings["Protocols"] = "Protocollen"; -$a->strings["All Protocols"] = "Alle protocollen"; -$a->strings["Saved Folders"] = "Bewaarde Mappen"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$a->strings["%d contact in common"] = [ - 0 => "%d gedeeld contact", - 1 => "%d gedeelde contacten", -]; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFout %d is opgetreden tijdens database update:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Fouten opgetreden tijdens database aanpassingen:"; +$a->strings["Another database update is currently running."] = ""; +$a->strings["%s: Database update"] = "%s: Database update"; +$a->strings["%s: updating %s table."] = "%s: tabel %s aan het updaten."; +$a->strings["Database error %d \"%s\" at \"%s\""] = ""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "De foutboodschap is\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = ""; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tDe Friendica database is succesvol geupdatet van %s naar %s"; $a->strings["Yourself"] = "Jezelf"; +$a->strings["Followers"] = "Volgers"; +$a->strings["Mutuals"] = "Gemeenschappelijk"; $a->strings["Post to Email"] = "Verzenden per e-mail"; $a->strings["Public"] = "Openbaar"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina's en door iedereen met de link."; @@ -895,7 +776,7 @@ $a->strings["The database configuration file \"config/local.config.php\" could n $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["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 your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Als je geen command line versie van PHP geïnstalleerd hebt op je server, dan kan je de achtergrondprocessen niet draaien. Zie 'Installatie van de worker'"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; $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 pad in naar het php programma. Je kunt dit leeg laten om de installatie verder te zetten."; $a->strings["Command line PHP"] = "PHP-opdrachtregel"; @@ -998,11 +879,6 @@ $a->strings["finger"] = "finger"; $a->strings["fingered"] = "gerfingerd"; $a->strings["rebuff"] = "afpoeieren"; $a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "De foutboodschap is\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = ""; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tDe Friendica database is succesvol geupdatet van %s naar %s"; $a->strings["Error decoding account file"] = "Fout bij decoderen van het account bestand"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?"; $a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; @@ -1013,11 +889,104 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; $a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFout %d is opgetreden tijdens database update:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Fouten opgetreden tijdens database aanpassingen:"; -$a->strings["%s: Database update"] = "%s: Database update"; -$a->strings["%s: updating %s table."] = "%s: tabel %s aan het updaten."; +$a->strings["Legacy module file not found: %s"] = "Legacy module bestand niet gevonden: %s"; +$a->strings["(no subject)"] = "(geen onderwerp)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; +$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["This entry was edited"] = "Deze entry werd bewerkt"; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["pinned item"] = ""; +$a->strings["Delete locally"] = "Verwijder lokaal"; +$a->strings["Delete globally"] = "Verwijder globaal"; +$a->strings["Remove locally"] = "Verwijder lokaal"; +$a->strings["save to folder"] = "Bewaren in map"; +$a->strings["I will attend"] = "Ik zal er zijn"; +$a->strings["I will not attend"] = "Ik zal er niet zijn"; +$a->strings["I might attend"] = "Ik ga misschien"; +$a->strings["ignore thread"] = "Negeer gesprek"; +$a->strings["unignore thread"] = "Stop met gesprek te negeren"; +$a->strings["toggle ignore status"] = "verwissel negeer status"; +$a->strings["pin"] = ""; +$a->strings["unpin"] = ""; +$a->strings["toggle pin status"] = ""; +$a->strings["pinned"] = ""; +$a->strings["add star"] = "ster toevoegen"; +$a->strings["remove star"] = "ster verwijderen"; +$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["add tag"] = "label toevoegen"; +$a->strings["like"] = "leuk"; +$a->strings["dislike"] = "niet leuk"; +$a->strings["Share this"] = "Delen"; +$a->strings["share"] = "Delen"; +$a->strings["%s (Received %s)"] = ""; +$a->strings["Comment this item on your system"] = ""; +$a->strings["remote comment"] = ""; +$a->strings["Pushed"] = ""; +$a->strings["Pulled"] = ""; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; +$a->strings["Reply to %s"] = "Antwoord aan %s"; +$a->strings["More"] = "Meer"; +$a->strings["Notifier task is pending"] = "Meldingstaak is in behandeling"; +$a->strings["Delivery to remote servers is pending"] = "Levering aan externe servers is in behandeling"; +$a->strings["Delivery to remote servers is underway"] = ""; +$a->strings["Delivery to remote servers is mostly done"] = ""; +$a->strings["Delivery to remote servers is done"] = ""; +$a->strings["%d comment"] = [ + 0 => "%d reactie", + 1 => "%d reacties", +]; +$a->strings["Show more"] = "Toon meer"; +$a->strings["Show fewer"] = "Toon minder"; +$a->strings["comment"] = [ + 0 => "reactie", + 1 => "reacties", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)"; +$a->strings["The contact entries have been archived"] = "The contacten zijn gearchiveerd"; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Kon geen contact vinden op deze URL (%s)"; +$a->strings["The contact has been blocked from the node"] = "Het contact is geblokkeerd van deze node"; +$a->strings["Enter new password: "] = "Geef nieuw wachtwoord:"; +$a->strings["Enter user name: "] = "Geef gebruikersnaam in:"; +$a->strings["Enter user nickname: "] = "Geef een bijnaam in:"; +$a->strings["Enter user email address: "] = "Geef een gebruiker email adres in:"; +$a->strings["Enter a language (optional): "] = "Geef uw taalkeuze in (optioneel):"; +$a->strings["User is not pending."] = "Gebruiker is niet in behandeling."; +$a->strings["User has already been marked for deletion."] = ""; +$a->strings["Type \"yes\" to delete %s"] = "Type \"Ja\" om te wissen %s"; +$a->strings["Deletion aborted."] = ""; +$a->strings["Post update version number has been set to %s."] = "Bericht update versie is ingesteld op %s"; +$a->strings["Check for pending update actions."] = "Controleren op uitgestelde update acties."; +$a->strings["Done."] = "Gedaan"; +$a->strings["Execute pending post updates."] = "uitgestelde bericht update acties uitvoeren"; +$a->strings["All pending post updates are done."] = "Alle uitgestelde bericht update acties zijn uitgevoerd"; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "Woonplaats:"; +$a->strings["Marital Status:"] = ""; +$a->strings["With:"] = "Met:"; +$a->strings["Since:"] = "Sinds:"; +$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; +$a->strings["Political Views:"] = "Politieke standpunten:"; +$a->strings["Religious Views:"] = "Geloof:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Title/Description:"] = "Titel/Beschrijving:"; +$a->strings["Summary"] = "Samenvatting"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken, literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; +$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; +$a->strings["Love/romance"] = "Liefde/romance"; +$a->strings["Work/employment"] = "Werk"; +$a->strings["School/education"] = "School/opleiding"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["No system theme config value set."] = "Geen systeem thema configuratie ingesteld."; $a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; $a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; $a->strings["New Follower"] = "Nieuwe Volger"; @@ -1029,182 +998,526 @@ $a->strings["%s is attending %s's event"] = "%s woont het event van %s bij"; $a->strings["%s is not attending %s's event"] = "%s woont het event van %s niet bij"; $a->strings["%s may attending %s's event"] = "%s kan aanwezig zijn op %s's gebeurtenis"; $a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; -$a->strings["Legacy module file not found: %s"] = "Legacy module bestand niet gevonden: %s"; -$a->strings["UnFollow"] = "Ontvolgen"; -$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Network Notifications"] = "Netwerknotificaties"; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; +$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; +$a->strings["No more %s notifications."] = "Geen %s notificaties meer."; +$a->strings["Show unread"] = "Toon ongelezen"; +$a->strings["Show all"] = "Toon alles"; +$a->strings["You must be logged in to show this page."] = "Je moet ingelogd zijn om deze pagina te tonen."; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; +$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; +$a->strings["Notification type:"] = "Notificatiesoort:"; +$a->strings["Suggested by:"] = "Voorgesteld door:"; +$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; $a->strings["Approve"] = "Goedkeuren"; -$a->strings["Organisation"] = "Organisatie"; -$a->strings["News"] = "Nieuws"; -$a->strings["Forum"] = "Forum"; -$a->strings["Connect URL missing."] = "Connectie URL ontbreekt."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken."; -$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."; -$a->strings["The profile address specified does not provide adequate information."] = "Het opgegeven profiel adres bevat geen adequate informatie."; -$a->strings["An author or name was not found."] = "Er werd geen auteur of naam gevonden."; -$a->strings["No browser URL could be matched to this address."] = "Er kan geen browser URL gematcht worden met dit adres."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; -$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen."; -$a->strings["Unable to retrieve contact information."] = "Het was niet mogelijk informatie over dit contact op te halen."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$a->strings["all-day"] = "de hele dag"; -$a->strings["Sept"] = "Sep"; -$a->strings["No events to display"] = "Geen gebeurtenissen te tonen"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Duplicate event"] = "Duplicate gebeurtenis"; -$a->strings["Delete event"] = "Verwijder gebeurtenis"; -$a->strings["link to source"] = "Verwijzing naar bron"; -$a->strings["D g:i A"] = "D g:i A"; -$a->strings["g:i A"] = "g:i A"; -$a->strings["Show map"] = "Toon kaart"; -$a->strings["Hide map"] = "Verberg kaart"; -$a->strings["%s's birthday"] = "%s's verjaardag"; -$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; -$a->strings["Item filed"] = "Item bewaard"; -$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"] = "Standaard privacy groep voor nieuwe contacten"; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["edit"] = "verander"; -$a->strings["add"] = "toevoegen"; -$a->strings["Edit group"] = "Verander groep"; -$a->strings["Contacts not in any group"] = "Contacten bestaan in geen enkele groep"; -$a->strings["Create a new group"] = "Maak nieuwe groep"; -$a->strings["Group Name: "] = "Groepsnaam:"; -$a->strings["Edit groups"] = "Bewerk groepen"; -$a->strings["activity"] = "activiteit"; -$a->strings["comment"] = [ - 0 => "reactie", - 1 => "reacties", -]; -$a->strings["post"] = "bericht"; -$a->strings["Content warning: %s"] = "Waarschuwing inhoud: %s"; -$a->strings["bytes"] = "bytes"; -$a->strings["View on separate page"] = "Bekijk op aparte pagina"; -$a->strings["view on separate page"] = "bekijk op aparte pagina"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Change profile photo"] = "Profiel foto wijzigen"; -$a->strings["Homepage:"] = "Website:"; +$a->strings["Claims to be known to you: "] = "Denkt dat je hem of haar kent:"; +$a->strings["Shall your connection be bidirectional or not?"] = "Zal je connectie bidirectioneel zijn of niet?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "%s als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "%s als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed."; +$a->strings["Friend"] = "Vriend"; +$a->strings["Subscriber"] = "Volger"; $a->strings["About:"] = "Over:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Unfollow"] = "Stop volgen"; -$a->strings["Atom feed"] = "Atom feed"; $a->strings["Network:"] = "Netwerk:"; -$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 omschrijving]"; -$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; -$a->strings["Upcoming events the next 7 days:"] = "Evenementen de komende 7 dagen:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s verwelkomt %2\$s"; -$a->strings["Database storage failed to update %s"] = "Database opslag faalde om %s te vernieuwen"; -$a->strings["Database storage failed to insert data"] = "Database opslag mislukt om gegevens in te voegen"; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = ""; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = ""; -$a->strings["Storage base path"] = ""; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = ""; -$a->strings["Enter a valid existing folder"] = "Geef een geldige bestaande folder in"; -$a->strings["Login failed"] = "Login mislukt"; -$a->strings["Not enough information to authenticate"] = "Niet genoeg informatie om te authentificeren"; -$a->strings["Password can't be empty"] = "Wachtwoord mag niet leeg zijn"; -$a->strings["Empty passwords are not allowed."] = "Lege wachtwoorden zijn niet toegestaan"; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Het wachtwoord mag geen geaccentueerde letters, spaties of dubbele punten bevatten (:)"; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; -$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["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid."; -$a->strings["Username should be at least %s character."] = [ - 0 => "Gebruikersnaam moet minimaal %s tekens bevatten.", - 1 => "Gebruikersnaam moet minimaal %s tekens bevatten", +$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; +$a->strings["A Decentralized Social Network"] = "Een gedecentraliseerd sociaal netwerk"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Invalid code, please retry."] = "Ongeldige code, probeer het opnieuw."; +$a->strings["Two-factor authentication"] = "2-factor authenticatie"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Heb je je telefoon niet? Geef een twee-factor herstelcodecode in"; +$a->strings["Please enter a code from your authentication app"] = "Voer een code in van uw authenticatie-app"; +$a->strings["Verify code and complete login"] = "Controleer de code en voltooi de login"; +$a->strings["Remaining recovery codes: %d"] = "Resterende herstelcodes: %d"; +$a->strings["Two-factor recovery"] = "Twee-factorenherstel"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

"; +$a->strings["Please enter a recovery code"] = "Voer een herstelcode in"; +$a->strings["Submit recovery code and complete login"] = "Voer de herstelcode in en voltooi de login"; +$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; +$a->strings["Register"] = "Registreer"; +$a->strings["Your OpenID: "] = "Uw OpenID"; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker."; +$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["Login"] = "Login"; +$a->strings["Password: "] = "Wachtwoord:"; +$a->strings["Remember me"] = "Onthoud mij"; +$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["OpenID protocol error. No ID returned"] = "OpenID-protocolfout. Geen ID terug ontvangen"; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen."; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen."; +$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."; +$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["Source input"] = "Bron input"; +$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw HTML)"; +$a->strings["BBCode::convert"] = "BBCode::convert"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; +$a->strings["Item Body"] = ""; +$a->strings["Item Tags"] = ""; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = "Bron ingave (Diaspora formaat):"; +$a->strings["Source input (Markdown)"] = ""; +$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (Ruwe HTML)"; +$a->strings["Markdown::convert"] = "Markdown::convert"; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Onverwerkte HTML input"; +$a->strings["HTML Input"] = "HTML Input"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (Ruwe HTML)"; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; +$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["HTML::toPlaintext (compact)"] = ""; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = "Brontekst"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = "Alleen ingelogde gebruikers hebben toelating om aan probing te doen."; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = "Je moet ingelogd zijn om deze module te gebruiken"; +$a->strings["Source URL"] = "Bron URL"; +$a->strings["Lookup address"] = "Opzoekadres"; +$a->strings["%s's timeline"] = "Tijdslijn van %s"; +$a->strings["%s's posts"] = "Berichten van %s"; +$a->strings["%s's comments"] = "reactie van %s"; +$a->strings["No contacts."] = "Geen contacten."; +$a->strings["Follower (%s)"] = [ + 0 => "Volger (%s)", + 1 => "Volgers (%s)", ]; -$a->strings["Username should be at most %s character."] = [ - 0 => "Gebruikersnaam mag maximaal %s tekens bevatten.", - 1 => "Gebruikersnaam mag maximaal %s tekens bevatten.", +$a->strings["Following (%s)"] = [ + 0 => "Volgend (%s)", + 1 => "Volgend (%s)", ]; -$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["The nickname was blocked from registration by the nodes admin."] = "De bijnaam werd geblokkeerd voor registratie door de node admin"; -$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 _."] = "Je bijnaam mag alleen a-z, 0-9 of _ bevatten."; -$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. 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."] = "Er is een fout opgetreden tijdens de registratie. Probeer opnieuw."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw."; -$a->strings["An error occurred creating your self contact. Please try again."] = "Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw."; -$a->strings["Friends"] = "Vrienden"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "Er is een fout opgetreden bij het aanmaken van je standaard contact groep. Probeer opnieuw."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tBeste %1\$s,\n\t\t\tde administrator van %2\$s heeft een gebruiker voor je aangemaakt."; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tDe logingegevens zijn als volgt:\n\n\t\tSite Locatie:\t%1\$s\n\t\tLogin Naam:\t\t%2\$s\n\t\tWachtwoord:\t\t%3\$s\n\n\t\tJe kunt je wachtwoord wijzigen vanuit je gebruikers \"Instellingen\" pagina\n\t\tnadat je bent ingelogd.\n\n\t\tGelieve even de tijd te nemen om de andere gebruikersinstellingen te controleren op die pagina.\n\n\t\tAls je wilt kun je ook wat basisinformatie aan je standaard profiel toevoegen\n\t\t(op de \"Profielen\" pagina) zodat ander mensen je makkelijk kunnen vinden.\n\n\t\tWe bevelen je aan om je volledige naam in te vullen, een profielfoto en\n\t\tenkele profiel \"sleutelwoorden\" toe te voegen (zeer zinvol om nieuwe vrienden te maken) - en\n\t\tmisschien aangeven in welk land je woont; als je niet specifieker dan dat wenst te zijn.\n\n\t\tWe respecteren volledig je recht op privésfeer en geen van deze items zijn noodzakelijk.\n\t\tAls je hier nieuw bent en nog niemand kent, dan kunnen zij\n\t\tje helpen om enkele nieuwe en interessante vrienden te maken.\n\n\t\tAls je ooit je gebruiker wenst te verwijderen, dan kan je dat doen op %1\$s/removeme\n\n\t\tBedankt en welkom bij %4\$s."; -$a->strings["Registration details for %s"] = "Registratie details voor %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tHallo %1\$s,\n\t\t\t\tBedankt voor uw registratie op %2\$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3\$s\n\t\t\tGebruikersnaam:\t\t%4\$s\n\t\t\tWachtwoord:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Registratie bij %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\tBedankt voor je inschrijving op %2\$s. Je gebruiker is aangemaakt.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%3\$s\n\t\t\tLogin Naam:\t\t%1\$s\n\t\t\tWachtwoord:\t\t%5\$s\n\n\t\t\tJe kunt je wachtwoord in de \"Instellingen\" pagina veranderen nadat je bent ingelogd.\n\n\t\t\tNeem een ogenblik de tijd om je andere instellingen na te kijken op die pagina.\n\n\t\t\tJe kunt ook wat basis informatie toevoegen aan je standaard profiel\n\t\t\t(in de \"Profielen\" pagina) zodat anderen je gemakkelijk kunnen vinden.\n\n\t\t\tWe raden aan je volledige naam in te vullen, een profiel foto toe te voegen,\n\t\t\tenkele profiel \"sleutelwoorden\" (zeer handig om nieuwe vrienden te leren kennen) - en\n\t\t\tmisschien in welk land je woont; als je niet meer details wil geven.\n\t\t\tWe respecteren je privacy volledig, en geen van deze velden zijn verplicht.\n\t\t\tAls je nieuw bent en niemand kent, dan kunnen zij je misschien\n\t\t\thelpen om enkele nieuwe en interessante vrienden te leren kennen.\n\n\t\t\tAls je ooit je account wil verwijderen, dan kan je dat via %3\$s/removeme\n\n\t\t\tBedankt en welkom bij %2\$s."; -$a->strings["Addon not found."] = "Addon niet gevonden."; -$a->strings["Addon %s disabled."] = "Addon %s gedeactiveerd"; -$a->strings["Addon %s enabled."] = "Addon %s geactiveerd"; +$a->strings["Mutual friend (%s)"] = [ + 0 => "Gemeenschappelijke vriend (%s)", + 1 => "Gemeenschappelijke vrienden (%s)", +]; +$a->strings["Contact (%s)"] = [ + 0 => "Contact (%s)", + 1 => "Contacten (%s)", +]; +$a->strings["All contacts"] = "Alle contacten"; +$a->strings["Following"] = "Volgend"; +$a->strings["Mutual friends"] = "Gemeenschappelijke vrienden"; +$a->strings["You're currently viewing your profile as %s Cancel"] = ""; +$a->strings["Member since:"] = "Lid sinds:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["%d year old"] = [ + 0 => "%d jaar oud", + 1 => "%d jaar oud", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Website:"; +$a->strings["Forums:"] = "Fora:"; +$a->strings["View profile as:"] = "Bekijk profiel als:"; +$a->strings["Edit profile"] = "Bewerk profiel"; +$a->strings["View as"] = ""; +$a->strings["Only parent users can create additional accounts."] = "Alleen bovenliggende gebruikers kunnen extra gebruikers maken."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen 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["Note for the admin"] = "Nota voor de beheerder"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen"; +$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; +$a->strings["Your invitation code: "] = "Je uitnodigingscode:"; +$a->strings["Registration"] = "Registratie"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Je volledige naam (bvb. Jan Smit, echt of echt lijkend):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)"; +$a->strings["Please repeat your e-mail address:"] = "Herhaal uw e-mailadres:"; +$a->strings["Leave empty for an auto generated password."] = "Laat leeg voor een automatisch gegenereerd wachtwoord."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn."; +$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; +$a->strings["Import your profile to this friendica instance"] = "Importeer je profiel op deze friendica server"; +$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; +$a->strings["Note: This node explicitly contains adult content"] = "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen."; +$a->strings["Parent Password:"] = "Ouderlijk wachtwoord:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren."; +$a->strings["Password doesn't match."] = "Wachtwoorden komen niet overeen."; +$a->strings["Please enter your password."] = "Voer uw wachtwoord in."; +$a->strings["You have entered too much information."] = "U heeft te veel informatie ingevoerd."; +$a->strings["Please enter the identical mail address in the second field."] = "Voer in het tweede veld het identieke mailadres in."; +$a->strings["The additional account was created."] = "De toegevoegde gebruiker is aangemaakt."; +$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 your accout details:
login: %s
password: %s

You can change your password after login."] = "Kon email niet verzenden. Hier zijn je account details:
login: %s
wachtwoord: %s

Je kan je wachtwoord aanpassen nadat je ingelogd bent."; +$a->strings["Registration successful."] = "Registratie succes."; +$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; +$a->strings["You have to leave a request note for the admin."] = "U dient een verzoekmelding achter te laten voor de beheerder."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; +$a->strings["Bad Request"] = "Bad Request"; +$a->strings["Unauthorized"] = "Onbevoegd"; +$a->strings["Forbidden"] = "Niet toegestaan"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Internal Server Error"] = ""; +$a->strings["Service Unavailable"] = ""; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; +$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; +$a->strings["The requested resource could not be found but may be available in the future."] = ""; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "De server is momenteel niet beschikbaar (omdat deze overbelast is of niet beschikbaar is door onderhoud). Probeer het later opnieuw."; +$a->strings["Go back"] = "Ga terug"; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["Suggested contact not found."] = "Voorgesteld contact werd 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["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Communicatie Server - Setup"; +$a->strings["System check"] = "Systeemcontrole"; +$a->strings["Check again"] = "Controleer opnieuw"; +$a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid, links zullen SSL status van pagina volgen"; +$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["Base settings"] = "Basisinstellingen"; +$a->strings["SSL link policy"] = "Beleid SSL-links"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"; +$a->strings["Host name"] = "Host naam"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Overschrijf dit veld voor het geval de bepaalde hostnaam niet juist is, laat het anders zoals het is."; +$a->strings["Base path to installation"] = "Basispad voor installatie"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot."; +$a->strings["Sub path of the URL"] = "Subpad van de URL"; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Overschrijf dit veld voor het geval de bepaling van het subpad niet juist is, laat het anders zoals het is. Als u dit veld leeg laat, betekent dit dat de installatie zich op de basis-URL bevindt zonder subpad."; +$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["For security reasons the password must not be empty"] = "Om veiligheidsreden mag het wachtwoord niet leeg zijn"; +$a->strings["Database Name"] = "Naam database"; +$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor je website"; +$a->strings["Site settings"] = "Website-instellingen"; +$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["System Language:"] = "Systeem taal:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Stel de standaard taal in voor je Friendica installatie interface en emails."; +$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; +$a->strings["Installation finished"] = "Installaitie beëindigd"; +$a->strings["

What next

"] = "

Wat nu

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen."; +$a->strings["- select -"] = "- Kies -"; +$a->strings["Item was not removed"] = ""; +$a->strings["Item was not deleted"] = ""; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$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 forum/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["Local Community"] = "Lokale Groep"; +$a->strings["Posts from local users on this server"] = "Berichten van lokale gebruikers op deze server"; +$a->strings["Global Community"] = "Globale gemeenschap"; +$a->strings["Posts from users of the whole federated network"] = "Berichten van gebruikers van het hele gefedereerde netwerk"; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen."; +$a->strings["Community option not available."] = "Groepsoptie niet beschikbaar"; +$a->strings["Not available."] = "Niet beschikbaar"; +$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 profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel een aantal openbare zoekwoorden in voor uw profiel die uw interesses beschrijven. Mogelijk kunnen we andere mensen met dezelfde interesses vinden en vriendschappen voorstellen."; +$a->strings["Connecting"] = "Verbinding aan het maken"; +$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 gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' 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["This page is missing a url parameter."] = "Deze pagina mist een url-parameter."; +$a->strings["The post was created"] = "Het bericht is aangemaakt"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "Informatie"; +$a->strings["Overview"] = "Overzicht"; +$a->strings["Federation Statistics"] = "Federatie Statistieken"; +$a->strings["Configuration"] = "Configuratie"; +$a->strings["Site"] = "Website"; +$a->strings["Users"] = "Gebruiker"; +$a->strings["Addons"] = "Addons"; +$a->strings["Themes"] = "Thema's"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Database"] = "Database"; +$a->strings["DB updates"] = "DB aanpassingen"; +$a->strings["Inspect Deferred Workers"] = "Inspecteer uitgestelde workers"; +$a->strings["Inspect worker Queue"] = "Taakwachtrij inspecteren"; +$a->strings["Tools"] = "Hulpmiddelen"; +$a->strings["Contact Blocklist"] = "Contact Blokkeerlijst"; +$a->strings["Server Blocklist"] = "Server Blokkeerlijst"; +$a->strings["Delete Item"] = "Verwijder Item"; +$a->strings["Logs"] = "Logs"; +$a->strings["View Logs"] = "Bekijk Logs"; +$a->strings["Diagnostics"] = "Diagnostiek"; +$a->strings["PHP Info"] = "PHP Info"; +$a->strings["probe address"] = "probe adres"; +$a->strings["check webfinger"] = "check webfinger"; +$a->strings["Item Source"] = ""; +$a->strings["Babel"] = ""; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "Beheer"; +$a->strings["Addon Features"] = "Addon Features"; +$a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; +$a->strings["%d contact edited."] = [ + 0 => "%d contact bewerkt.", + 1 => "%d contacten bewerkt.", +]; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; +$a->strings["Follow"] = "Volg"; +$a->strings["Unfollow"] = "Stop volgen"; +$a->strings["Contact not found"] = "Contact niet gevonden"; +$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; +$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; +$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; +$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; +$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; +$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; +$a->strings["Drop contact"] = "Contact vergeten"; +$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; +$a->strings["Contact has been removed."] = "Contact is verwijderd."; +$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; +$a->strings["You are sharing with %s"] = "Je deelt met %s"; +$a->strings["%s is sharing with you"] = "%s deelt met jou"; +$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; +$a->strings["Never"] = "Nooit"; +$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; +$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; +$a->strings["Suggest friends"] = "Stel vrienden voor"; +$a->strings["Network type: %s"] = "Netwerk type: %s"; +$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; +$a->strings["Fetch further information for feeds"] = "Haal meer informatie op van de feeds"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags."; +$a->strings["Disabled"] = "Uitgeschakeld"; +$a->strings["Fetch information"] = "Haal informatie op"; +$a->strings["Fetch keywords"] = "Haal sleutelwoorden op"; +$a->strings["Fetch information and keywords"] = "Haal informatie en sleutelwoorden op"; +$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; +$a->strings["Contact Settings"] = "Contact instellingen"; +$a->strings["Contact"] = "Contact"; +$a->strings["Their personal note"] = "Hun persoonlijke nota"; +$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["View conversations"] = "Toon gesprekken"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare posts aanpassen"; +$a->strings["Update now"] = "Wijzig nu"; +$a->strings["Unblock"] = "Blokkering opheffen"; +$a->strings["Unignore"] = "Negeer niet meer"; +$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["Awaiting connection acknowledge"] = "Wait op bevestiging van de connectie"; +$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"] = "Meldingen voor nieuwe berichten"; +$a->strings["Send a notification of every new post of this contact"] = "Stuur een notificatie voor elk bericht van dit contact"; +$a->strings["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd"; +$a->strings["Actions"] = "Acties"; +$a->strings["All Contacts"] = "Alle Contacten"; +$a->strings["Show all contacts"] = "Toon alle contacten"; +$a->strings["Pending"] = "In behandeling"; +$a->strings["Only show pending contacts"] = "Toon alleen contacten in behandeling"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; +$a->strings["Organize your contact groups"] = "Organiseer je contact groepen"; +$a->strings["Search your contacts"] = "Doorzoek je contacten"; +$a->strings["Results for: %s"] = "Resultaten voor: %s"; +$a->strings["Archive"] = "Archiveer"; +$a->strings["Unarchive"] = "Archiveer niet meer"; +$a->strings["Batch Actions"] = "Bulk Acties"; +$a->strings["Conversations started by this contact"] = "Gesprekken gestart door dit contact"; +$a->strings["Posts and Comments"] = "Berichten en reacties"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["View all contacts"] = "Alle contacten zien"; +$a->strings["View all common friends"] = "Bekijk alle gemeenschappelijke vrienden"; +$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor 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["Pending outgoing contact request"] = "In afwachting van uitgaande contactaanvraag"; +$a->strings["Pending incoming contact request"] = "In afwachting van inkomende contactaanvraag"; +$a->strings["Refetch contact data"] = "Contact data opnieuw ophalen"; +$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; +$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; +$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; +$a->strings["Delete contact"] = "Verwijder contact"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie."; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "Op elk gewenst moment kan een aangemelde gebruiker zijn gebruikersgegevens uitvoeren vanaf de gebruikersinstellingen. Als de gebruiker zichzelf wenst te verwijderen, dan kan dat op %1\$s/removeme. De verwijdering van de gebruiker is niet ongedaan te maken. Verwijdering van de gegevens zal tevens worden aangevraagd bij de nodes van de communicatiepartners."; +$a->strings["Privacy Statement"] = "Privacy Verklaring"; +$a->strings["Help:"] = "Help:"; +$a->strings["Method Not Allowed."] = "Methode niet toegestaan."; +$a->strings["Profile not found"] = ""; +$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."] = [ + 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["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."] = "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."; +$a->strings["To accept this invitation, please visit and register at %s."] = "Om deze uitnodiging te accepteren, ga naar en registreer op %s."; +$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://friendi.ca"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken"; +$a->strings["People Search - %s"] = "Mensen Zoeken - %s"; +$a->strings["Forum Search - %s"] = "Forum doorzoeken - %s"; $a->strings["Disable"] = "Uitschakelen"; $a->strings["Enable"] = "Inschakelen"; +$a->strings["Theme %s disabled."] = ""; +$a->strings["Theme %s successfully enabled."] = ""; +$a->strings["Theme %s failed to install."] = ""; +$a->strings["Screenshot"] = "Schermafdruk"; $a->strings["Administration"] = "Beheer"; -$a->strings["Addons"] = "Addons"; $a->strings["Toggle"] = "Schakelaar"; $a->strings["Author: "] = "Auteur:"; $a->strings["Maintainer: "] = "Onderhoud:"; -$a->strings["Addon %s failed to install."] = "Installatie Addon %s is mislukt."; -$a->strings["Reload active addons"] = "Herlaad actieve addons"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1\$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2\$s"; -$a->strings["%s contact unblocked"] = [ - 0 => "%s contact is niet langer geblokkeerd", - 1 => "%s contacten zijn niet langer geblokkeerd", +$a->strings["Unknown theme."] = ""; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Herlaad actieve thema's"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1\$s"; +$a->strings["[Experimental]"] = "[Experimenteel]"; +$a->strings["[Unsupported]"] = "[Niet ondersteund]"; +$a->strings["Lock feature %s"] = "Fixeer feature %s "; +$a->strings["Manage Additional Features"] = "Beheer Bijkomende Features"; +$a->strings["%s user blocked"] = [ + 0 => "", + 1 => "", ]; -$a->strings["Remote Contact Blocklist"] = "Remote Contact Blokkeerlijst"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken."; -$a->strings["Block Remote Contact"] = "Blokkeer Remote Contact"; +$a->strings["%s user unblocked"] = [ + 0 => "", + 1 => "", +]; +$a->strings["You can't remove yourself"] = "Je kan jezelf niet verwijderen"; +$a->strings["%s user deleted"] = [ + 0 => "%s gebruiker verwijderd", + 1 => "%s gebruikers verwijderd", +]; +$a->strings["%s user approved"] = [ + 0 => "", + 1 => "", +]; +$a->strings["%s registration revoked"] = [ + 0 => "", + 1 => "", +]; +$a->strings["User \"%s\" deleted"] = ""; +$a->strings["User \"%s\" blocked"] = ""; +$a->strings["User \"%s\" unblocked"] = ""; +$a->strings["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked"] = ""; +$a->strings["Private Forum"] = "Privé Forum"; +$a->strings["Relay"] = ""; +$a->strings["Email"] = "E-mail"; +$a->strings["Register date"] = "Registratiedatum"; +$a->strings["Last login"] = "Laatste login"; +$a->strings["Last public item"] = ""; +$a->strings["Type"] = "Type"; +$a->strings["Add User"] = "Gebruiker toevoegen"; $a->strings["select all"] = "Alles selecteren"; -$a->strings["select none"] = "selecteer geen"; -$a->strings["Unblock"] = "Blokkering opheffen"; -$a->strings["No remote contact is blocked from this node."] = "Geen enkel remote contact is geblokkeerd van deze node."; -$a->strings["Blocked Remote Contacts"] = "Geblokkeerde Remote Contacts"; -$a->strings["Block New Remote Contact"] = "Blokkeer Nieuwe Remote Contacten"; -$a->strings["Photo"] = "Foto"; -$a->strings["Reason"] = "Reden"; -$a->strings["%s total blocked contact"] = [ - 0 => "%s geblokkeerde contacten in totaal", - 1 => "%s geblokkeerde contacten in totaal", -]; -$a->strings["URL of the remote contact to block."] = "URL van de remote contact die je wil blokkeren."; -$a->strings["Block Reason"] = "Reden voor blokkeren"; -$a->strings["Server domain pattern added to blocklist."] = ""; -$a->strings["Site blocklist updated."] = "Site blokkeerlijst opgeslagen"; -$a->strings["Blocked server domain pattern"] = ""; -$a->strings["Reason for the block"] = "Reden van de blokkering"; -$a->strings["Delete server domain pattern"] = ""; -$a->strings["Check to delete this entry from the blocklist"] = "Vink aan om dit item van de blokkeerlijst te verwijderen"; -$a->strings["Server Domain Pattern Blocklist"] = ""; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; -$a->strings["Add new entry to block list"] = "Voeg nieuw item toe aan de blokkeerlijst"; -$a->strings["Server Domain Pattern"] = ""; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = ""; -$a->strings["Block reason"] = "Reden voor blokkering"; -$a->strings["The reason why you blocked this server domain pattern."] = ""; -$a->strings["Add Entry"] = "Voeg Item toe"; -$a->strings["Save changes to the blocklist"] = "Sla veranderingen in de blokkeerlijst op"; -$a->strings["Current Entries in the Blocklist"] = "Huidige Items in de blokkeerlijst"; -$a->strings["Delete entry from blocklist"] = "Verwijder item uit de blokkeerlijst"; -$a->strings["Delete entry from blocklist?"] = "Item verwijderen uit de blokkeerlijst?"; +$a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; +$a->strings["User waiting for permanent deletion"] = "Gebruiker wacht op permanente verwijdering"; +$a->strings["Request date"] = "Registratiedatum"; +$a->strings["No registrations."] = "Geen registraties."; +$a->strings["Note from the user"] = "Nota van de gebruiker"; +$a->strings["Deny"] = "Weiger"; +$a->strings["User blocked"] = "Gebruiker geblokeerd"; +$a->strings["Site admin"] = "Sitebeheerder"; +$a->strings["Account expired"] = "Account verlopen"; +$a->strings["New User"] = "Nieuwe gebruiker"; +$a->strings["Permanent deletion"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; +$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?"] = "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; +$a->strings["Name of the new user."] = "Naam van nieuwe gebruiker"; +$a->strings["Nickname"] = "Bijnaam"; +$a->strings["Nickname of the new user."] = "Bijnaam van nieuwe gebruiker"; +$a->strings["Email address of the new user."] = "E-mailadres van nieuwe gebruiker"; +$a->strings["Inspect Deferred Worker Queue"] = "Inspecteer wachtrij van uitgestelde workers"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd"; +$a->strings["Inspect Worker Queue"] = "Taakwachtrij inspecteren"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie."; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = "Taak parameters"; +$a->strings["Created"] = "Aangemaakt"; +$a->strings["Priority"] = "Prioriteit"; $a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd "; $a->strings["Database structure update %s was successfully applied."] = "Database structuur update %s werd met succes toegepast."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Uitvoering van de database structuur update %s is mislukt met fout: %s"; @@ -1218,27 +1531,15 @@ $a->strings["Failed Updates"] = "Mislukte 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["Lock feature %s"] = "Fixeer feature %s "; -$a->strings["Manage Additional Features"] = "Beheer Bijkomende Features"; $a->strings["Other"] = "Anders"; $a->strings["unknown"] = "onbekend"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent."; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "Het Automatisch Achterhaalde Contact Gids feature is niet geactiveerd, het zal de hier getoonde informatie verbeteren."; -$a->strings["Federation Statistics"] = "Federatie Statistieken"; $a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Op dit moment kent deze node %d nodes met %d geregistreerde gebruikers op basis van de volgende patformen:"; -$a->strings["Item marked for deletion."] = "Item gemarkeerd om te verwijderen."; -$a->strings["Delete Item"] = "Verwijder Item"; -$a->strings["Delete this Item"] = "Verwijder dit Item"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "De GUID van het item dat je wil verwijderen."; -$a->strings["Item Guid"] = "Item identificatie"; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Fout bij het openen van log file %1\$s .\\r\\n
Kijk na of bestand %1\$s bestaat en mag gelezen worden."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Kon log file %1\$s niet openen.\\r\\n
Kijk na of bestand %1\$s mag gelezen worden."; $a->strings["The logfile '%s' is not writable. No logging possible"] = ""; -$a->strings["Log settings updated."] = "Log instellingen opgeslagen"; $a->strings["PHP log currently enabled."] = "PHP log momenteel geactiveerd"; $a->strings["PHP log currently disabled."] = "PHP log momenteel gedeactiveerd"; -$a->strings["Logs"] = "Logs"; $a->strings["Clear"] = "Wis"; $a->strings["Enable Debugging"] = "Activeer Debugging"; $a->strings["Log file"] = "Logbestand"; @@ -1246,20 +1547,9 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Log niveau"; $a->strings["PHP logging"] = "PHP logging"; $a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de 'error_log' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie '1' voor 'log_errors' en 'display_errors' activeert deze opties, configureer '0' om ze te deactiveren. "; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Fout bij het openen van log file %1\$s .\\r\\n
Kijk na of bestand %1\$s bestaat en mag gelezen worden."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Kon log file %1\$s niet openen.\\r\\n
Kijk na of bestand %1\$s mag gelezen worden."; -$a->strings["View Logs"] = "Bekijk Logs"; -$a->strings["Inspect Deferred Worker Queue"] = "Inspecteer wachtrij van uitgestelde workers"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd"; -$a->strings["Inspect Worker Queue"] = "Taakwachtrij inspecteren"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie."; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = "Taak parameters"; -$a->strings["Created"] = "Aangemaakt"; -$a->strings["Priority"] = "Prioriteit"; $a->strings["Can not parse base url. Must have at least ://"] = "Kan de basis url niet verwerken. Moet minstens zijn ://"; +$a->strings["Relocation started. Could take a while to complete."] = ""; $a->strings["Invalid storage backend setting value."] = ""; -$a->strings["Site settings updated."] = "Site instellingen opgeslagen"; $a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; $a->strings["%s - (Experimental)"] = "%s - (Experimenteel)"; $a->strings["No community page for local users"] = "Geen groepspagina voor lokale gebruikers"; @@ -1267,31 +1557,18 @@ $a->strings["No community page"] = "Geen groepspagina"; $a->strings["Public postings from users of this site"] = "Publieke berichten van gebruikers van deze site"; $a->strings["Public postings from the federated network"] = "Publieke berichten van het gefedereerde netwerk"; $a->strings["Public postings from local users and the federated network"] = "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk"; -$a->strings["Disabled"] = "Uitgeschakeld"; -$a->strings["Users"] = "Gebruiker"; -$a->strings["Users, Global Contacts"] = "Gebruikers, Globale contacten"; -$a->strings["Users, Global Contacts/fallback"] = "Gebruikers, Globale Contacten/noodoplossing"; -$a->strings["One month"] = "Een maand"; -$a->strings["Three months"] = "Drie maanden"; -$a->strings["Half a year"] = "Een half jaar"; -$a->strings["One year"] = "Een jaar"; $a->strings["Multi user instance"] = "Server voor meerdere gebruikers"; $a->strings["Closed"] = "Gesloten"; $a->strings["Requires approval"] = "Toestemming vereist"; $a->strings["Open"] = "Open"; -$a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid, links zullen SSL status van pagina volgen"; -$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["Don't check"] = "Geen rekening mee houden"; $a->strings["check the stable version"] = "Neem de stabiele versie in rekening"; $a->strings["check the development version"] = "Neem de ontwikkel versie in rekening"; $a->strings["none"] = "geen"; -$a->strings["Direct contacts"] = "Directe contacten"; -$a->strings["Contacts of contacts"] = "Contacten van contacten"; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; $a->strings["Database (legacy)"] = ""; -$a->strings["Site"] = "Website"; $a->strings["Republish users to directory"] = "Opnieuw de gebruikers naar de gids publiceren"; -$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Uploaden bestand"; $a->strings["Policies"] = "Beleid"; $a->strings["Auto Discovered Contact Directory"] = "Automatisch Achterhaalde Contact Gids"; @@ -1316,8 +1593,6 @@ $a->strings["System theme"] = "Systeem thema"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = ""; $a->strings["Mobile system theme"] = "Mobiel systeem thema"; $a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; -$a->strings["SSL link policy"] = "Beleid SSL-links"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"; $a->strings["Force SSL"] = "Dwing SSL af"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen."; $a->strings["Hide help entry from navigation menu"] = "Verberg de 'help' uit het navigatiemenu"; @@ -1398,20 +1673,19 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum Gemiddelde Belasting ( $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximum systeem belasting wanneer de frontend ermee ophoudt - standaard waarde 50."; $a->strings["Minimal Memory"] = "Minimaal Geheugen"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)."; -$a->strings["Maximum table size for optimization"] = "Maximum tabel grootte voor optimisatie"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maximum tabel grootte (in MB) voor de automatisch optimisatie. Geef -1 op om dit te deactiveren."; -$a->strings["Minimum level of fragmentation"] = "Minimum niveau van fragmentatie"; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimum fragmentatie niveau om de automatische optimisatie te starten - standaard waarde is 30%."; -$a->strings["Periodical check of global contacts"] = "Regematige controle van de globale contacten"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Als dit geactiveerd is, dan worden de globale contacten regelmatig gecheckt naar ontbrekende of verlopen data and the vitaliteit van de contacten en servers."; -$a->strings["Discover followers/followings from global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = ""; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Dagen tussen herbevraging"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Aantal dagen waarna de server opnieuw bevraagd wordt naar zijn contacten."; $a->strings["Discover contacts from other servers"] = "Ontdek contacten van andere servers"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = ""; -$a->strings["Timeframe for fetching global contacts"] = "Tijdspanne voor het ophalen van globale contacten"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wanneer ontdekking is geactiveerd, dan definieert deze waarde de tijdspanne voor de activiteit van globale contacten die opgehaald worden van andere servers."; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Doorzoek de lokale gids"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt."; $a->strings["Publish server information"] = "Publiceer server informatie"; @@ -1434,6 +1708,8 @@ $a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Hoe lang moeten de cache bestanden bijgehouden worden? Standaard waarde is 86400 seconden (een dag). Zet de waarde op -1 om de item cache te deactiveren."; $a->strings["Maximum numbers of comments per post"] = "Maximum aantal reacties per bericht"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100."; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Tijdelijk pad"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. "; $a->strings["Disable picture proxy"] = "Schakel beeld proxy uit"; @@ -1468,8 +1744,10 @@ $a->strings["Comma separated list of tags for the \"tags\" subscription."] = ""; $a->strings["Allow user tags"] = "Sta gebruiker tags toe."; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = ""; $a->strings["Start Relocation"] = "Start verhuis"; +$a->strings["Template engine (%s) error: %s"] = ""; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
"; $a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1\$s, upstream versie is %2\$s"; $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken."; $a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = ""; @@ -1491,23 +1769,10 @@ $a->strings["Blog Account"] = "Blog Account"; $a->strings["Private Forum Account"] = "Privé Forum Account"; $a->strings["Message queues"] = "Bericht-wachtrijen"; $a->strings["Server Settings"] = "Server instellingen."; -$a->strings["Summary"] = "Samenvatting"; $a->strings["Registered users"] = "Geregistreerde gebruikers"; $a->strings["Pending registrations"] = "Registraties die in de wacht staan"; $a->strings["Version"] = "Versie"; $a->strings["Active addons"] = "Actieve addons"; -$a->strings["Theme settings updated."] = "Thema-instellingen opgeslagen"; -$a->strings["Theme %s disabled."] = ""; -$a->strings["Theme %s successfully enabled."] = ""; -$a->strings["Theme %s failed to install."] = ""; -$a->strings["Screenshot"] = "Schermafdruk"; -$a->strings["Themes"] = "Thema's"; -$a->strings["Unknown theme."] = ""; -$a->strings["Reload active themes"] = "Herlaad actieve thema's"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1\$s"; -$a->strings["[Experimental]"] = "[Experimenteel]"; -$a->strings["[Unsupported]"] = "[Niet ondersteund]"; -$a->strings["The Terms of Service settings have been updated."] = "De instellingen voor Servicevoorwaarden zijn bijgewerkt."; $a->strings["Display Terms of Service"] = "Toon Gebruiksvoorwaarden"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina."; $a->strings["Display Privacy Statement"] = "Toon Privacy Verklaring"; @@ -1515,94 +1780,129 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Privacy Verklaring Voorbeeldweergave"; $a->strings["The Terms of Service"] = "De Gebruiksvoorwaarden"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager."; -$a->strings["%s user blocked"] = [ - 0 => "", - 1 => "", +$a->strings["Server domain pattern added to blocklist."] = ""; +$a->strings["Blocked server domain pattern"] = ""; +$a->strings["Reason for the block"] = "Reden van de blokkering"; +$a->strings["Delete server domain pattern"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = "Vink aan om dit item van de blokkeerlijst te verwijderen"; +$a->strings["Server Domain Pattern Blocklist"] = ""; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; +$a->strings["Add new entry to block list"] = "Voeg nieuw item toe aan de blokkeerlijst"; +$a->strings["Server Domain Pattern"] = ""; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = "Reden voor blokkering"; +$a->strings["The reason why you blocked this server domain pattern."] = ""; +$a->strings["Add Entry"] = "Voeg Item toe"; +$a->strings["Save changes to the blocklist"] = "Sla veranderingen in de blokkeerlijst op"; +$a->strings["Current Entries in the Blocklist"] = "Huidige Items in de blokkeerlijst"; +$a->strings["Delete entry from blocklist"] = "Verwijder item uit de blokkeerlijst"; +$a->strings["Delete entry from blocklist?"] = "Item verwijderen uit de blokkeerlijst?"; +$a->strings["%s contact unblocked"] = [ + 0 => "%s contact is niet langer geblokkeerd", + 1 => "%s contacten zijn niet langer geblokkeerd", ]; -$a->strings["%s user unblocked"] = [ - 0 => "", - 1 => "", +$a->strings["Remote Contact Blocklist"] = "Remote Contact Blokkeerlijst"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken."; +$a->strings["Block Remote Contact"] = "Blokkeer Remote Contact"; +$a->strings["select none"] = "selecteer geen"; +$a->strings["No remote contact is blocked from this node."] = "Geen enkel remote contact is geblokkeerd van deze node."; +$a->strings["Blocked Remote Contacts"] = "Geblokkeerde Remote Contacts"; +$a->strings["Block New Remote Contact"] = "Blokkeer Nieuwe Remote Contacten"; +$a->strings["Photo"] = "Foto"; +$a->strings["Reason"] = "Reden"; +$a->strings["%s total blocked contact"] = [ + 0 => "%s geblokkeerde contacten in totaal", + 1 => "%s geblokkeerde contacten in totaal", ]; -$a->strings["You can't remove yourself"] = "Je kan jezelf niet verwijderen"; -$a->strings["%s user deleted"] = [ - 0 => "%s gebruiker verwijderd", - 1 => "%s gebruikers verwijderd", -]; -$a->strings["%s user approved"] = [ - 0 => "", - 1 => "", -]; -$a->strings["%s registration revoked"] = [ - 0 => "", - 1 => "", -]; -$a->strings["User \"%s\" deleted"] = ""; -$a->strings["User \"%s\" blocked"] = ""; -$a->strings["User \"%s\" unblocked"] = ""; -$a->strings["Account approved."] = "Account goedgekeurd."; -$a->strings["Registration revoked"] = ""; -$a->strings["Private Forum"] = "Privé Forum"; -$a->strings["Relay"] = ""; -$a->strings["Register date"] = "Registratiedatum"; -$a->strings["Last login"] = "Laatste login"; -$a->strings["Last public item"] = ""; -$a->strings["Type"] = "Type"; -$a->strings["Add User"] = "Gebruiker toevoegen"; -$a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; -$a->strings["User waiting for permanent deletion"] = "Gebruiker wacht op permanente verwijdering"; -$a->strings["Request date"] = "Registratiedatum"; -$a->strings["No registrations."] = "Geen registraties."; -$a->strings["Note from the user"] = "Nota van de gebruiker"; -$a->strings["Deny"] = "Weiger"; -$a->strings["User blocked"] = "Gebruiker geblokeerd"; -$a->strings["Site admin"] = "Sitebeheerder"; -$a->strings["Account expired"] = "Account verlopen"; -$a->strings["New User"] = "Nieuwe gebruiker"; -$a->strings["Permanent deletion"] = ""; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; -$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?"] = "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; -$a->strings["Name of the new user."] = "Naam van nieuwe gebruiker"; -$a->strings["Nickname"] = "Bijnaam"; -$a->strings["Nickname of the new user."] = "Bijnaam van nieuwe gebruiker"; -$a->strings["Email address of the new user."] = "E-mailadres van nieuwe gebruiker"; -$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; -$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; -$a->strings["Applications"] = "Toepassingen"; +$a->strings["URL of the remote contact to block."] = "URL van de remote contact die je wil blokkeren."; +$a->strings["Block Reason"] = "Reden voor blokkeren"; +$a->strings["Item Guid"] = "Item identificatie"; +$a->strings["Item marked for deletion."] = "Item gemarkeerd om te verwijderen."; +$a->strings["Delete this Item"] = "Verwijder dit Item"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "De GUID van het item dat je wil verwijderen."; +$a->strings["Addon not found."] = "Addon niet gevonden."; +$a->strings["Addon %s disabled."] = "Addon %s gedeactiveerd"; +$a->strings["Addon %s enabled."] = "Addon %s geactiveerd"; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = "Installatie Addon %s is mislukt."; +$a->strings["Reload active addons"] = "Herlaad actieve addons"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1\$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2\$s"; +$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; +$a->strings["Find on this site"] = "Op deze website zoeken"; +$a->strings["Results for:"] = "Resultaten voor:"; +$a->strings["Site Directory"] = "Websitegids"; $a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = "Beheerde gebruiker heeft geen toegang tot de beheerpagina's. Log opnieuw in als de hoofdgebruiker."; -$a->strings["Overview"] = "Overzicht"; -$a->strings["Configuration"] = "Configuratie"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Database"] = "Database"; -$a->strings["DB updates"] = "DB aanpassingen"; -$a->strings["Inspect Deferred Workers"] = "Inspecteer uitgestelde workers"; -$a->strings["Inspect worker Queue"] = "Taakwachtrij inspecteren"; -$a->strings["Tools"] = "Hulpmiddelen"; -$a->strings["Contact Blocklist"] = "Contact Blokkeerlijst"; -$a->strings["Server Blocklist"] = "Server Blokkeerlijst"; -$a->strings["Diagnostics"] = "Diagnostiek"; -$a->strings["PHP Info"] = "PHP Info"; -$a->strings["probe address"] = "probe adres"; -$a->strings["check webfinger"] = "check webfinger"; -$a->strings["Item Source"] = ""; -$a->strings["Babel"] = ""; -$a->strings["Addon Features"] = "Addon Features"; -$a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; -$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Please enter a post body."] = "Voer een berichttekst in."; +$a->strings["This feature is only available with the frio theme."] = "Deze functie is alleen beschikbaar met het frio-thema."; +$a->strings["Compose new personal note"] = "Stel een nieuwe persoonlijke notitie op"; +$a->strings["Compose new post"] = "Nieuw bericht opstellen"; +$a->strings["Visibility"] = "Zichtbaarheid"; +$a->strings["Clear the location"] = "Wis de locatie"; +$a->strings["Location services are unavailable on your device"] = "Locatiediensten zijn niet beschikbaar op uw apparaat"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Locatiediensten zijn uitgeschakeld. Controleer de toestemmingen van de website op uw apparaat"; +$a->strings["Installed addons/apps:"] = "Geïnstalleerde addons/applicaties:"; +$a->strings["No installed addons/apps"] = "Geen geïnstalleerde addons/applicaties"; +$a->strings["Read about the Terms of Service of this node."] = "Lees de Gebruiksvoorwaarden van deze node na."; +$a->strings["On this server the following remote servers are blocked."] = "De volgende remote servers zijn geblokkeerd."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s."; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Ga naar Friendi.ca om meer te vernemen over het Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; +$a->strings["the bugtracker at github"] = "de github bugtracker"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca"; $a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; $a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; -$a->strings["People Search - %s"] = "Mensen Zoeken - %s"; -$a->strings["Forum Search - %s"] = "Forum doorzoeken - %s"; +$a->strings["The Photo with id %s is not available."] = "De foto met id %s is niet beschikbaar"; +$a->strings["Invalid photo with id %s."] = "Ongeldige foto met ID %s"; +$a->strings["The provided profile link doesn't seem to be valid"] = "De verstrekte profiellink lijkt niet geldig te zijn"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem."; $a->strings["Account"] = "Account"; -$a->strings["Two-factor authentication"] = "2-factor authenticatie"; $a->strings["Display"] = "Weergave"; $a->strings["Manage Accounts"] = "Beheer Gebruikers"; $a->strings["Connected apps"] = "Verbonden applicaties"; $a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; $a->strings["Remove account"] = "Account verwijderen"; -$a->strings["This page is missing a url parameter."] = ""; -$a->strings["The post was created"] = "Het bericht is aangemaakt"; -$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; +$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; +$a->strings["Group not found."] = "Groep niet gevonden."; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = "Onbekende groep."; +$a->strings["Contact is deleted."] = "Contact is verwijderd."; +$a->strings["Unable to add the contact to the group."] = "Kan het contact niet aan de groep toevoegen."; +$a->strings["Contact successfully added to group."] = "Contact succesvol aan de groep toegevoegd."; +$a->strings["Unable to remove the contact from the group."] = "Kan het contact niet uit de groep verwijderen."; +$a->strings["Contact successfully removed from group."] = "Contact succesvol verwijderd uit groep."; +$a->strings["Unknown group command."] = "Onbekende groepsopdracht."; +$a->strings["Bad request."] = "Verkeerde aanvraag."; +$a->strings["Save Group"] = "Bewaar groep"; +$a->strings["Filter"] = "filter"; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Contacts not in any group"] = "Contacten bestaan in geen enkele groep"; +$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; +$a->strings["Delete Group"] = "Verwijder Groep"; +$a->strings["Edit Group Name"] = "Bewerk Groep Naam"; +$a->strings["Members"] = "Leden"; +$a->strings["Remove contact from group"] = "Verwijder contact uit de groep"; +$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; +$a->strings["Add contact to group"] = "Voeg contact toe aan de groep"; +$a->strings["Only logged in users are permitted to perform a search."] = "Alleen ingelogde gebruikers mogen een zoekopdracht starten."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut"; +$a->strings["Search"] = "Zoeken"; +$a->strings["Items tagged with: %s"] = "Items getagd met: %s"; +$a->strings["You must be logged in to use this module."] = "Je moet ingelogd zijn om deze module te gebruiken."; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = "Zoekterm is al opgeslagen."; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "Geen profiel"; +$a->strings["Error while sending poke, please retry."] = ""; +$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["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["Contact update failed."] = "Aanpassen van contact mislukt."; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "WAARSCHUWING: Dit is zeer geavanceerd en als je verkeerde informatie invult, zal je mogelijk niet meer kunnen communiceren met deze contactpersoon."; $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."; @@ -1610,7 +1910,6 @@ $a->strings["No mirroring"] = "Geen mirroring"; $a->strings["Mirror as forwarded posting"] = "Spiegel als geforward bericht"; $a->strings["Mirror as my own posting"] = "Spiegel als mijn eigen bericht"; $a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; -$a->strings["Refetch contact data"] = "Contact data opnieuw ophalen"; $a->strings["Remote Self"] = "Mijn identiteit elders"; $a->strings["Mirror postings from this contact"] = "Berichten van dit contact spiegelen"; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markeer dit contact als remote_self, hierdoor zal friendica nieuwe berichten van dit contact opnieuw posten."; @@ -1623,377 +1922,57 @@ $a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; $a->strings["Notification Endpoint URL"] = "Notificatie Endpoint URL"; $a->strings["Poll/Feed URL"] = "URL poll/feed"; $a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; -$a->strings["%d contact edited."] = [ - 0 => "%d contact bewerkt.", - 1 => "%d contacten bewerkt.", -]; -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; -$a->strings["Contact updated."] = "Contact opgeslagen"; -$a->strings["Contact not found"] = ""; -$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; -$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; -$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; -$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; -$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; -$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; -$a->strings["Drop contact"] = "Contact vergeten"; -$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; -$a->strings["Contact has been removed."] = "Contact is verwijderd."; -$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; -$a->strings["You are sharing with %s"] = "Je deelt met %s"; -$a->strings["%s is sharing with you"] = "%s deelt met jou"; -$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; -$a->strings["Never"] = "Nooit"; -$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; -$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; -$a->strings["Suggest friends"] = "Stel vrienden voor"; -$a->strings["Network type: %s"] = "Netwerk type: %s"; -$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; -$a->strings["Fetch further information for feeds"] = "Haal meer informatie op van de feeds"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Haal informatie op zoals preview beelden, titel en teaser van het feed item. Je kan dit activeren als de feed niet veel tekst bevat. Sleutelwoorden worden opgepikt uit de meta header in het feed item en worden gepost als hash tags."; -$a->strings["Fetch information"] = "Haal informatie op"; -$a->strings["Fetch keywords"] = "Haal sleutelwoorden op"; -$a->strings["Fetch information and keywords"] = "Haal informatie en sleutelwoorden op"; -$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; -$a->strings["Contact Settings"] = "Contact instellingen"; -$a->strings["Contact"] = "Contact"; -$a->strings["Their personal note"] = "Hun persoonlijke nota"; -$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["View conversations"] = "Toon gesprekken"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare posts aanpassen"; -$a->strings["Update now"] = "Wijzig nu"; -$a->strings["Unignore"] = "Negeer niet meer"; -$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["Awaiting connection acknowledge"] = "Wait op bevestiging van de connectie"; -$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"] = "Meldingen voor nieuwe berichten"; -$a->strings["Send a notification of every new post of this contact"] = "Stuur een notificatie voor elk bericht van dit contact"; -$a->strings["Blacklisted keywords"] = "Sleutelwoorden op de zwarte lijst"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd"; -$a->strings["Actions"] = "Acties"; -$a->strings["Show all contacts"] = "Toon alle contacten"; -$a->strings["Pending"] = "In behandeling"; -$a->strings["Only show pending contacts"] = "Toon alleen contacten in behandeling"; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; -$a->strings["Organize your contact groups"] = "Organiseer je contact groepen"; -$a->strings["Search your contacts"] = "Doorzoek je contacten"; -$a->strings["Results for: %s"] = "Resultaten voor: %s"; -$a->strings["Archive"] = "Archiveer"; -$a->strings["Unarchive"] = "Archiveer niet meer"; -$a->strings["Batch Actions"] = "Bulk Acties"; -$a->strings["Conversations started by this contact"] = "Gesprekken gestart door dit contact"; -$a->strings["Posts and Comments"] = "Berichten en reacties"; -$a->strings["View all contacts"] = "Alle contacten zien"; -$a->strings["View all common friends"] = "Bekijk alle gemeenschappelijke vrienden"; -$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor 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["Pending outgoing contact request"] = "In afwachting van uitgaande contactaanvraag"; -$a->strings["Pending incoming contact request"] = "In afwachting van inkomende contactaanvraag"; -$a->strings["Edit contact"] = "Contact bewerken"; -$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; -$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; -$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; -$a->strings["Delete contact"] = "Verwijder contact"; -$a->strings["Local Community"] = "Lokale Groep"; -$a->strings["Posts from local users on this server"] = "Berichten van lokale gebruikers op deze server"; -$a->strings["Global Community"] = "Globale gemeenschap"; -$a->strings["Posts from users of the whole federated network"] = "Berichten van gebruikers van het hele gefedereerde netwerk"; -$a->strings["No results."] = "Geen resultaten."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen."; -$a->strings["Community option not available."] = "Groepsoptie niet beschikbaar"; -$a->strings["Not available."] = "Niet beschikbaar"; -$a->strings["Credits"] = "Credits"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!"; -$a->strings["Source input"] = "Bron input"; -$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw HTML)"; -$a->strings["BBCode::convert"] = "BBCode::convert"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; -$a->strings["Item Body"] = ""; -$a->strings["Item Tags"] = ""; -$a->strings["Source input (Diaspora format)"] = "Bron ingave (Diaspora formaat):"; -$a->strings["Source input (Markdown)"] = ""; -$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (Ruwe HTML)"; -$a->strings["Markdown::convert"] = "Markdown::convert"; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Onverwerkte HTML input"; -$a->strings["HTML Input"] = "HTML Input"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (Ruwe HTML)"; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; -$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["HTML::toPlaintext (compact)"] = ""; -$a->strings["Source text"] = "Brontekst"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["You must be logged in to use this module"] = "Je moet ingelogd zijn om deze module te gebruiken"; -$a->strings["Source URL"] = "Bron URL"; -$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."; -$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["Only logged in users are permitted to perform a probing."] = "Alleen ingelogde gebruikers hebben toelating om aan probing te doen."; -$a->strings["Lookup address"] = ""; -$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 forum/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 entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; -$a->strings["Find on this site"] = "Op deze website zoeken"; -$a->strings["Results for:"] = "Resultaten voor:"; -$a->strings["Site Directory"] = "Websitegids"; -$a->strings["Filetag %s saved to item"] = "Bestandstag %s bewaard bij item"; -$a->strings["- select -"] = "- Kies -"; -$a->strings["Installed addons/apps:"] = "Geïnstalleerde addons/applicaties:"; -$a->strings["No installed addons/apps"] = "Geen geïnstalleerde addons/applicaties"; -$a->strings["Read about the Terms of Service of this node."] = "Lees de Gebruiksvoorwaarden van deze node na."; -$a->strings["On this server the following remote servers are blocked."] = "De volgende remote servers zijn geblokkeerd."; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s."; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Ga naar Friendi.ca om meer te vernemen over het Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; -$a->strings["the bugtracker at github"] = "de github bugtracker"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca"; -$a->strings["Suggested contact not found."] = "Voorgesteld contact werd 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["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["Unknown group."] = "Onbekende groep."; -$a->strings["Contact is deleted."] = "Contact is verwijderd."; -$a->strings["Unable to add the contact to the group."] = "Kan het contact niet aan de groep toevoegen."; -$a->strings["Contact successfully added to group."] = "Contact succesvol aan de groep toegevoegd."; -$a->strings["Unable to remove the contact from the group."] = "Kan het contact niet uit de groep verwijderen."; -$a->strings["Contact successfully removed from group."] = "Contact succesvol verwijderd uit groep."; -$a->strings["Unknown group command."] = "Onbekende groepsopdracht."; -$a->strings["Bad request."] = "Verkeerde aanvraag."; -$a->strings["Save Group"] = "Bewaar groep"; -$a->strings["Filter"] = "filter"; -$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; -$a->strings["Group removed."] = "Groep verwijderd."; -$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; -$a->strings["Delete Group"] = "Verwijder Groep"; -$a->strings["Edit Group Name"] = "Bewerk Groep Naam"; -$a->strings["Members"] = "Leden"; -$a->strings["Remove contact from group"] = "Verwijder contact uit de groep"; -$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; -$a->strings["Add contact to group"] = "Voeg contact toe aan de groep"; -$a->strings["Help:"] = "Help:"; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["No profile"] = "Geen profiel"; -$a->strings["Method Not Allowed."] = ""; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Communicatie Server - Setup"; -$a->strings["System check"] = "Systeemcontrole"; -$a->strings["Check again"] = "Controleer opnieuw"; -$a->strings["Base settings"] = ""; -$a->strings["Host name"] = "Host naam"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = ""; -$a->strings["Base path to installation"] = "Basispad voor installatie"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot."; -$a->strings["Sub path of the URL"] = ""; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = ""; -$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["For security reasons the password must not be empty"] = "Om veiligheidsreden mag het wachtwoord niet leeg zijn"; -$a->strings["Database Name"] = "Naam database"; -$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor je website"; -$a->strings["Site settings"] = "Website-instellingen"; -$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["System Language:"] = "Systeem taal:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Stel de standaard taal in voor je Friendica installatie interface en emails."; -$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; -$a->strings["Installation finished"] = "Installaitie beëindigd"; -$a->strings["

What next

"] = "

Wat nu

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen."; -$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."] = [ - 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["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."] = "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."; -$a->strings["To accept this invitation, please visit and register at %s."] = "Om deze uitnodiging te accepteren, ga naar en registreer op %s."; -$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://friendi.ca"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken"; -$a->strings["Please enter a post body."] = "Voer een berichttekst in."; -$a->strings["This feature is only available with the frio theme."] = "Deze functie is alleen beschikbaar met het frio-thema."; -$a->strings["Compose new personal note"] = "Stel een nieuwe persoonlijke notitie op"; -$a->strings["Compose new post"] = "Nieuw bericht opstellen"; -$a->strings["Visibility"] = ""; -$a->strings["Clear the location"] = "Wis de locatie"; -$a->strings["Location services are unavailable on your device"] = "Locatiediensten zijn niet beschikbaar op uw apparaat"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Locatiediensten zijn uitgeschakeld. Controleer de toestemmingen van de website op uw apparaat"; -$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; -$a->strings["A Decentralized Social Network"] = ""; -$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; -$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; -$a->strings["Notification type:"] = "Notificatiesoort:"; -$a->strings["Suggested by:"] = "Voorgesteld door:"; -$a->strings["Claims to be known to you: "] = "Denkt dat je hem of haar kent:"; -$a->strings["Shall your connection be bidirectional or not?"] = "Zal je connectie bidirectioneel zijn of niet?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "%s als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "%s als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed."; -$a->strings["Friend"] = "Vriend"; -$a->strings["Subscriber"] = "Volger"; -$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; -$a->strings["No more %s notifications."] = "Geen %s notificaties meer."; -$a->strings["You must be logged in to show this page."] = ""; -$a->strings["Network Notifications"] = "Netwerknotificaties"; -$a->strings["System Notifications"] = "Systeemnotificaties"; -$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; -$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; -$a->strings["Show unread"] = "Toon ongelezen"; -$a->strings["Show all"] = "Toon alles"; -$a->strings["The Photo with id %s is not available."] = ""; -$a->strings["Invalid photo with id %s."] = "Ongeldige foto met ID %s"; -$a->strings["User not found."] = "Gebruiker niet gevonden."; -$a->strings["No contacts."] = "Geen contacten."; -$a->strings["Follower (%s)"] = [ - 0 => "Volger (%s)", - 1 => "Volgers (%s)", -]; -$a->strings["Following (%s)"] = [ - 0 => "Volgend (%s)", - 1 => "Volgend (%s)", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "Gemeenschappelijke vriend (%s)", - 1 => "Gemeenschappelijke vrienden (%s)", -]; -$a->strings["Contact (%s)"] = [ - 0 => "Contact (%s)", - 1 => "Contacten (%s)", -]; -$a->strings["All contacts"] = "Alle contacten"; -$a->strings["Member since:"] = "Lid sinds:"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Verjaardag:"; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["%d year old"] = [ - 0 => "%d jaar oud", - 1 => "%d jaar oud", -]; -$a->strings["Forums:"] = "Fora:"; -$a->strings["View profile as:"] = ""; -$a->strings["%s's timeline"] = "Tijdslijn van %s"; -$a->strings["%s's posts"] = "Berichten van %s"; -$a->strings["%s's comments"] = "reactie van %s"; -$a->strings["Only parent users can create additional accounts."] = "Alleen bovenliggende gebruikers kunnen extra gebruikers maken."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen 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["Note for the admin"] = "Nota voor de beheerder"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen"; -$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; -$a->strings["Your invitation code: "] = "Je uitnodigingscode:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Je volledige naam (bvb. Jan Smit, echt of echt lijkend):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)"; -$a->strings["Please repeat your e-mail address:"] = ""; -$a->strings["Leave empty for an auto generated password."] = "Laat leeg voor een automatisch gegenereerd wachtwoord."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn."; -$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; -$a->strings["Import your profile to this friendica instance"] = "Importeer je profiel op deze friendica server"; -$a->strings["Note: This node explicitly contains adult content"] = "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen."; -$a->strings["Parent Password:"] = "Ouderlijk wachtwoord:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren."; -$a->strings["Password doesn't match."] = ""; -$a->strings["Please enter your password."] = ""; -$a->strings["You have entered too much information."] = ""; -$a->strings["Please enter the identical mail address in the second field."] = ""; -$a->strings["The additional account was created."] = "De toegevoegde gebruiker is aangemaakt."; -$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 your accout details:
login: %s
password: %s

You can change your password after login."] = "Kon email niet verzenden. Hier zijn je account details:
login: %s
wachtwoord: %s

Je kan je wachtwoord aanpassen nadat je ingelogd bent."; -$a->strings["Registration successful."] = "Registratie succes."; -$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; -$a->strings["You have to leave a request note for the admin."] = ""; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; -$a->strings["The provided profile link doesn't seem to be valid"] = ""; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; -$a->strings["You must be logged in to use this module."] = ""; -$a->strings["Only logged in users are permitted to perform a search."] = "Alleen ingelogde gebruikers mogen een zoekopdracht starten."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut"; -$a->strings["Items tagged with: %s"] = "Items getagd met: %s"; -$a->strings["Search term successfully saved."] = ""; -$a->strings["Search term already saved."] = ""; -$a->strings["Search term successfully removed."] = ""; -$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; -$a->strings["Your OpenID: "] = "Uw OpenID"; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker."; -$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; -$a->strings["Password: "] = "Wachtwoord:"; -$a->strings["Remember me"] = "Onthoud mij"; -$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["Logged out."] = "Uitgelogd."; -$a->strings["OpenID protocol error. No ID returned"] = ""; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen."; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen."; -$a->strings["Remaining recovery codes: %d"] = ""; -$a->strings["Invalid code, please retry."] = ""; -$a->strings["Two-factor recovery"] = ""; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = ""; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = ""; -$a->strings["Please enter a recovery code"] = ""; -$a->strings["Submit recovery code and complete login"] = ""; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = ""; -$a->strings["Please enter a code from your authentication app"] = ""; -$a->strings["Verify code and complete login"] = ""; -$a->strings["Delegation successfully granted."] = ""; -$a->strings["Parent user not found, unavailable or password doesn't match."] = ""; -$a->strings["Delegation successfully revoked."] = ""; -$a->strings["Delegated administrators can view but not change delegation permissions."] = ""; -$a->strings["Delegate user not found."] = ""; +$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; +$a->strings["Applications"] = "Toepassingen"; +$a->strings["Profile Name is required."] = "Profielnaam is vereist."; +$a->strings["Profile couldn't be updated."] = "Profiel kan niet worden bijgewerkt."; +$a->strings["Label:"] = "Label:"; +$a->strings["Value:"] = "Waarde:"; +$a->strings["Field Permissions"] = "Veldrechten"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Add a new profile field"] = "Voeg nieuw profielveld toe"; +$a->strings["Profile Actions"] = "Profiel Acties"; +$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["Profile picture"] = "Profiel foto"; +$a->strings["Location"] = "Plaats"; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["Custom Profile Fields"] = "Aangepaste profielvelden"; +$a->strings["Display name:"] = "Weergave naam:"; +$a->strings["Street Address:"] = "Postadres:"; +$a->strings["Locality/City:"] = "Gemeente/Stad:"; +$a->strings["Region/State:"] = "Regio/Staat:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) adres:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Het XMPP adres zal doorgegeven worden aan je contacten zodat zij je kunnen volgen."; +$a->strings["Homepage URL:"] = "Adres tijdlijn:"; +$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; +$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; +$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = "

Aangepaste velden verschijnen op je profielpagina.

\n\t\t\t\t

Je kunt BBCodes in de veldwaarden gebruiken.

\n\t\t\t\t

Sorteer opnieuw door de veldtitel te slepen.

\n\t\t\t\t

Maak het labelveld leeg om een ​​aangepast veld te verwijderen.

\n\t\t\t\t

Niet-openbare velden zijn alleen zichtbaar voor de geselecteerde Friendica-contacten of de Friendica-contacten in de geselecteerde groepen.

"; +$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."; +$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; +$a->strings["Photo not found."] = "Foto niet gevonden."; +$a->strings["Profile picture successfully updated."] = "Profielfoto geüpdatet."; +$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["Use Image As Is"] = "Gebruik afbeelding zoals deze is"; +$a->strings["Missing uploaded image."] = "Ontbrekende geüploade afbeelding."; +$a->strings["Profile Picture Settings"] = "Profiel afbeelding instellingen"; +$a->strings["Current Profile Picture"] = "Huidige profielafbeelding"; +$a->strings["Upload Profile Picture"] = "Upload profiel afbeelding"; +$a->strings["Upload Picture:"] = "Upload afbeelding"; +$a->strings["or"] = "of"; +$a->strings["skip this step"] = "Deze stap overslaan"; +$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; +$a->strings["Delegation successfully granted."] = "Delegatie met succes verleend."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen."; +$a->strings["Delegation successfully revoked."] = "Delegatie is ingetrokken."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen."; +$a->strings["Delegate user not found."] = "Gemachtigde gebruiker niet gevonden."; $a->strings["No parent user"] = "Ouderlijke gebruiker ontbreekt"; $a->strings["Parent User"] = "Ouderlijke gebruiker"; $a->strings["Additional Accounts"] = "Toegevoegde gebruikers"; @@ -2006,13 +1985,62 @@ $a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginab $a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; $a->strings["Add"] = "Toevoegen"; $a->strings["No entries."] = "Geen gegevens."; +$a->strings["Two-factor authentication successfully disabled."] = "Twee-factor-authenticatie succesvol uitgeschakeld."; +$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; +$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Gebruik een applicatie op een mobiel apparaat om tweefactorauthenticatiecodes te krijgen wanneer daarom wordt gevraagd bij het inloggen.

"; +$a->strings["Authenticator app"] = "Authenticatie-app"; +$a->strings["Configured"] = "Geconfigureerd"; +$a->strings["Not Configured"] = "Niet geconfigureerd"; +$a->strings["

You haven't finished configuring your authenticator app.

"] = "

U bent nog niet klaar met het configureren van uw authenticator-app.

"; +$a->strings["

Your authenticator app is correctly configured.

"] = "

Uw authenticator-app is correct geconfigureerd.

"; +$a->strings["Recovery codes"] = "Herstelcodes"; +$a->strings["Remaining valid codes"] = "Resterende geldige codes"; +$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = "

Deze codes voor eenmalig gebruik kunnen een authenticator-app-code vervangen als u er geen toegang toe heeft.

"; +$a->strings["App-specific passwords"] = "App-specifieke wachtwoorden"; +$a->strings["Generated app-specific passwords"] = "App-specifieke wachtwoorden gegenereerd"; +$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = "

Met deze willekeurig gegenereerde wachtwoorden kunt u verifiëren bij apps die geen tweefactorauthenticatie ondersteunen.

"; +$a->strings["Current password:"] = "Huidig wachtwoord:"; +$a->strings["You need to provide your current password to change two-factor authentication settings."] = "U moet uw huidige wachtwoord opgeven om de instellingen voor tweefactorauthenticatie te wijzigen."; +$a->strings["Enable two-factor authentication"] = "Schakel tweefactorauthenticatie in"; +$a->strings["Disable two-factor authentication"] = "Schakel tweefactorauthenticatie uit"; +$a->strings["Show recovery codes"] = "Toon herstelcodes"; +$a->strings["Manage app-specific passwords"] = "Beheer app-specifieke wachtwoorden"; +$a->strings["Finish app configuration"] = "Voltooi de app-configuratie"; +$a->strings["Please enter your password to access this page."] = "Voer uw wachtwoord in om deze pagina te openen."; +$a->strings["Two-factor authentication successfully activated."] = "Twee-factor-authenticatie succesvol geactiveerd."; +$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Of je kan de autentificatie instellingen handmatig versturen:

\n
\n\t
Uitgever
\n\t
%s
\n\t
Gebruikersnaam
\n\t
%s
\n\t
Geheime sleutel
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Aantal tekens
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"; +$a->strings["Two-factor code verification"] = "Tweeledige codeverificatie"; +$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Scan deze QR-code met uw authenticator-app en verzend de opgegeven code.

"; +$a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = "

Of je kan de volgende link op je mobiel openen:

%s

"; +$a->strings["Verify code and enable two-factor authentication"] = "Controleer de code en schakel tweefactorauthenticatie in"; +$a->strings["New recovery codes successfully generated."] = "Nieuwe herstelcodes zijn succesvol gegenereerd."; +$a->strings["Two-factor recovery codes"] = "Twee-factor herstelcodes"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.

Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.

"; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Wanneer u nieuwe herstelcodes genereert, moet u de nieuwe codes kopiëren. Uw oude codes werken niet meer."; +$a->strings["Generate new recovery codes"] = "Genereer nieuwe herstelcodes"; +$a->strings["Next: Verification"] = "Volgende: verificatie"; +$a->strings["App-specific password generation failed: The description is empty."] = "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg."; +$a->strings["App-specific password generation failed: This description already exists."] = "App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al."; +$a->strings["New app-specific password generated."] = "Nieuw app-specifiek wachtwoord gegenereerd."; +$a->strings["App-specific passwords successfully revoked."] = "App-specifieke wachtwoorden succesvol ingetrokken."; +$a->strings["App-specific password successfully revoked."] = "App-specifiek wachtwoord succesvol ingetrokken."; +$a->strings["Two-factor app-specific passwords"] = "Twee-factor app-specifieke wachtwoorden"; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.

"; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!"; +$a->strings["Description"] = "Omschrijving"; +$a->strings["Last Used"] = "Laatst gebruikt"; +$a->strings["Revoke"] = "Intrekken"; +$a->strings["Revoke All"] = "Alles intrekken"; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "Wanneer u een nieuw app-specifiek wachtwoord genereert, moet u dit meteen gebruiken, het wordt u een keer getoond nadat u het hebt gegenereerd."; +$a->strings["Generate new app-specific password"] = "Genereer een nieuw app-specifiek wachtwoord"; +$a->strings["Friendiqa on my Fairphone 2..."] = ""; +$a->strings["Generate"] = "Genereer"; $a->strings["The theme you chose isn't available."] = "Het thema dat je koos is niet beschikbaar"; $a->strings["%s - (Unsupported)"] = "%s - (Niet ondersteund)"; $a->strings["Display Settings"] = "Scherminstellingen"; $a->strings["General Theme Settings"] = "Algemene Thema Instellingen"; $a->strings["Custom Theme Settings"] = "Speciale Thema Instellingen"; $a->strings["Content Settings"] = "Content Instellingen"; -$a->strings["Theme settings"] = "Thema-instellingen"; $a->strings["Calendar"] = "Kalender"; $a->strings["Display Theme:"] = "Schermthema:"; $a->strings["Mobile Theme:"] = "Mobiel thema:"; @@ -2028,239 +2056,26 @@ $a->strings["Normally emoticons are replaced with matching symbols. This setting $a->strings["Infinite scroll"] = "Oneindig scrollen"; $a->strings["Automatic fetch new items when reaching the page end."] = ""; $a->strings["Disable Smart Threading"] = ""; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = ""; -$a->strings["Hide the Dislike feature"] = ""; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Schakel de automatische onderdrukking van vreemd inspringen uit."; +$a->strings["Hide the Dislike feature"] = "Verberg de Afkeeroptie"; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Verbergt de knop Niet Leuk en Niet Leuke Reacties op berichten en opmerkingen."; $a->strings["Beginning of week:"] = "Begin van de week:"; -$a->strings["Profile Name is required."] = "Profielnaam is vereist."; -$a->strings["Profile updated."] = "Profiel opgeslagen"; -$a->strings["Profile couldn't be updated."] = ""; -$a->strings["Label:"] = ""; -$a->strings["Value:"] = "Waarde:"; -$a->strings["Field Permissions"] = "Veldrechten"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Add a new profile field"] = "Voeg nieuw profielveld toe"; -$a->strings["Profile Actions"] = "Profiel Acties"; -$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["Profile picture"] = "Profiel foto"; -$a->strings["Location"] = "Plaats"; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["Custom Profile Fields"] = "Aangepaste profielvelden"; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["Display name:"] = "Weergave naam:"; -$a->strings["Street Address:"] = "Postadres:"; -$a->strings["Locality/City:"] = "Gemeente/Stad:"; -$a->strings["Region/State:"] = "Regio/Staat:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) adres:"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Het XMPP adres zal doorgegeven worden aan je contacten zodat zij je kunnen volgen."; -$a->strings["Homepage URL:"] = "Adres tijdlijn:"; -$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; -$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; -$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = ""; -$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."; -$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; -$a->strings["Photo not found."] = "Foto niet gevonden."; -$a->strings["Profile picture successfully updated."] = ""; -$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["Use Image As Is"] = ""; -$a->strings["Missing uploaded image."] = ""; -$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; -$a->strings["Profile Picture Settings"] = "Profiel afbeelding instellingen"; -$a->strings["Current Profile Picture"] = "Huidige profielafbeelding"; -$a->strings["Upload Profile Picture"] = "Upload profiel afbeelding"; -$a->strings["Upload Picture:"] = "Upload afbeelding"; -$a->strings["or"] = "of"; -$a->strings["skip this step"] = "Deze stap overslaan"; -$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; -$a->strings["Please enter your password to access this page."] = "Voer uw wachtwoord in om deze pagina te openen."; -$a->strings["App-specific password generation failed: The description is empty."] = "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg."; -$a->strings["App-specific password generation failed: This description already exists."] = ""; -$a->strings["New app-specific password generated."] = "Nieuw app-specifiek wachtwoord gegenereerd."; -$a->strings["App-specific passwords successfully revoked."] = "App-specifieke wachtwoorden succesvol ingetrokken."; -$a->strings["App-specific password successfully revoked."] = "App-specifiek wachtwoord succesvol ingetrokken."; -$a->strings["Two-factor app-specific passwords"] = "Twee-factor app-specifieke wachtwoorden"; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.

"; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!"; -$a->strings["Description"] = "Omschrijving"; -$a->strings["Last Used"] = "Laatst gebruikt"; -$a->strings["Revoke"] = "Intrekken"; -$a->strings["Revoke All"] = "Alles intrekken"; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = ""; -$a->strings["Generate new app-specific password"] = ""; -$a->strings["Friendiqa on my Fairphone 2..."] = ""; -$a->strings["Generate"] = "Genereer"; -$a->strings["Two-factor authentication successfully disabled."] = ""; -$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; -$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = ""; -$a->strings["Authenticator app"] = ""; -$a->strings["Configured"] = "Geconfigureerd"; -$a->strings["Not Configured"] = "Niet geconfigureerd"; -$a->strings["

You haven't finished configuring your authenticator app.

"] = ""; -$a->strings["

Your authenticator app is correctly configured.

"] = ""; -$a->strings["Recovery codes"] = ""; -$a->strings["Remaining valid codes"] = ""; -$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = ""; -$a->strings["App-specific passwords"] = ""; -$a->strings["Generated app-specific passwords"] = ""; -$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = ""; -$a->strings["Current password:"] = "Huidig wachtwoord:"; -$a->strings["You need to provide your current password to change two-factor authentication settings."] = ""; -$a->strings["Enable two-factor authentication"] = ""; -$a->strings["Disable two-factor authentication"] = ""; -$a->strings["Show recovery codes"] = ""; -$a->strings["Manage app-specific passwords"] = ""; -$a->strings["Finish app configuration"] = ""; -$a->strings["New recovery codes successfully generated."] = ""; -$a->strings["Two-factor recovery codes"] = ""; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.

Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.

"; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = ""; -$a->strings["Generate new recovery codes"] = ""; -$a->strings["Next: Verification"] = ""; -$a->strings["Two-factor authentication successfully activated."] = ""; -$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Of je kan de autentificatie instellingen handmatig versturen:

\n
\n\t
Uitgever
\n\t
%s
\n\t
Gebruikersnaam
\n\t
%s
\n\t
Geheime sleutel
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Aantal tekens
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"; -$a->strings["Two-factor code verification"] = ""; -$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = ""; -$a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = "

Of je kan de volgende link op je mobiel openen:

%s

"; -$a->strings["Verify code and enable two-factor authentication"] = ""; $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 account 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)"] = "Exporteer uw gebruikersgegevens, contacten en al uw items als json. Kan een heel groot bestand zijn en kan veel tijd in beslag nemen. Gebruik dit om een ​​volledige back-up van uw account te maken (foto's worden niet geëxporteerd)"; $a->strings["Export Contacts to CSV"] = "Export Contacten naar CSV"; $a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont."; -$a->strings["Bad Request"] = "Bad Request"; -$a->strings["Unauthorized"] = "Onbevoegd"; -$a->strings["Forbidden"] = "Niet toegestaan"; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Internal Server Error"] = ""; -$a->strings["Service Unavailable"] = ""; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; -$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; -$a->strings["The requested resource could not be found but may be available in the future."] = ""; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie."; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "Op elk gewenst moment kan een aangemelde gebruiker zijn gebruikersgegevens uitvoeren vanaf de gebruikersinstellingen. Als de gebruiker zichzelf wenst te verwijderen, dan kan dat op %1\$s/removeme. De verwijdering van de gebruiker is niet ongedaan te maken. Verwijdering van de gegevens zal tevens worden aangevraagd bij de nodes van de communicatiepartners."; -$a->strings["Privacy Statement"] = "Privacy Verklaring"; -$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 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 profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; -$a->strings["Connecting"] = "Verbinding aan het maken"; -$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["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 gespreksgroepen indelen vanuit de zijbalk van je 'Contacten' 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["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; -$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["This entry was edited"] = "Deze entry werd bewerkt"; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["pinned item"] = ""; -$a->strings["Delete locally"] = "Verwijder lokaal"; -$a->strings["Delete globally"] = "Verwijder globaal"; -$a->strings["Remove locally"] = "Verwijder lokaal"; -$a->strings["save to folder"] = "Bewaren in map"; -$a->strings["I will attend"] = "Ik zal er zijn"; -$a->strings["I will not attend"] = "Ik zal er niet zijn"; -$a->strings["I might attend"] = "Ik ga misschien"; -$a->strings["ignore thread"] = "Negeer gesprek"; -$a->strings["unignore thread"] = "Stop met gesprek te negeren"; -$a->strings["toggle ignore status"] = "verwissel negeer status"; -$a->strings["pin"] = ""; -$a->strings["unpin"] = ""; -$a->strings["toggle pin status"] = ""; -$a->strings["pinned"] = ""; -$a->strings["add star"] = "ster toevoegen"; -$a->strings["remove star"] = "ster verwijderen"; -$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["add tag"] = "label toevoegen"; -$a->strings["like"] = "leuk"; -$a->strings["dislike"] = "niet leuk"; -$a->strings["Share this"] = "Delen"; -$a->strings["share"] = "Delen"; -$a->strings["%s (Received %s)"] = ""; -$a->strings["Comment this item on your system"] = ""; -$a->strings["remote comment"] = ""; -$a->strings["Pushed"] = ""; -$a->strings["Pulled"] = ""; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "wall-to-wall"; -$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; -$a->strings["Reply to %s"] = "Antwoord aan %s"; -$a->strings["More"] = "Meer"; -$a->strings["Notifier task is pending"] = "Meldingstaak is in behandeling"; -$a->strings["Delivery to remote servers is pending"] = "Levering aan externe servers is in behandeling"; -$a->strings["Delivery to remote servers is underway"] = ""; -$a->strings["Delivery to remote servers is mostly done"] = ""; -$a->strings["Delivery to remote servers is done"] = ""; -$a->strings["%d comment"] = [ - 0 => "%d reactie", - 1 => "%d reacties", -]; -$a->strings["Show more"] = "Toon meer"; -$a->strings["Show fewer"] = "Toon minder"; -$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; $a->strings["%s is now following %s."] = "%s volgt nu %s."; $a->strings["following"] = "volgend"; $a->strings["%s stopped following %s."] = "%s stopte %s te volgen."; $a->strings["stopped following"] = "is gestopt met volgen"; -$a->strings["Hometown:"] = "Woonplaats:"; -$a->strings["Marital Status:"] = ""; -$a->strings["With:"] = "Met:"; -$a->strings["Since:"] = "Sinds:"; -$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; -$a->strings["Political Views:"] = "Politieke standpunten:"; -$a->strings["Religious Views:"] = "Geloof:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Title/Description:"] = "Titel/Beschrijving:"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken, literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; -$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; -$a->strings["Love/romance"] = "Liefde/romance"; -$a->strings["Work/employment"] = "Werk"; -$a->strings["School/education"] = "School/opleiding"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["Friendica Notification"] = "Friendica Notificatie"; +$a->strings["Attachments:"] = "Bijlagen:"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Beheerder"; $a->strings["%s Administrator"] = "%s Beheerder"; $a->strings["thanks"] = "bedankt"; +$a->strings["Friendica Notification"] = "Friendica Notificatie"; $a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; $a->strings["never"] = "nooit"; $a->strings["less than a second ago"] = "minder dan een seconde geleden"; @@ -2277,58 +2092,236 @@ $a->strings["second"] = "seconde"; $a->strings["seconds"] = "seconden"; $a->strings["in %1\$d %2\$s"] = "in %1\$d%2\$s"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["(no subject)"] = "(geen onderwerp)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: author-id en owner-id in item en gesprekstabel aan het updaten."; -$a->strings["%s: Updating post-type."] = "%s: bericht-type bewerken"; -$a->strings["default"] = "standaard"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variaties"; -$a->strings["Custom"] = "Aangepast"; -$a->strings["Note"] = "Nota"; -$a->strings["Check image permissions if all users are allowed to see the image"] = "Controleer of alle gebruikers permissie hebben om het beeld te zien "; -$a->strings["Select color scheme"] = "Selecteer kleurschema"; -$a->strings["Copy or paste schemestring"] = "Kopieer of plak schemastring"; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "Je kan deze string kopiëren om uw je kleurenschema met anderen te delen. Een schemastring plakken past deze toe."; -$a->strings["Navigation bar background color"] = "Navigatie balk achtergrondkleur"; -$a->strings["Navigation bar icon color "] = "Navigatie balk icoon kleur"; -$a->strings["Link color"] = "Link kleur"; -$a->strings["Set the background color"] = "Stel de achtergrondkleur in"; -$a->strings["Content background opacity"] = "Content achtergrond opaciteit"; -$a->strings["Set the background image"] = "Stel het achtergrondbeeld in"; -$a->strings["Background image style"] = "Achtergrond beeld stijl"; -$a->strings["Login page background image"] = "Achtergrondafbeelding aanmeldpagina"; -$a->strings["Login page background color"] = "Achtergrondkleur aanmeldpagina"; -$a->strings["Leave background image and color empty for theme defaults"] = "Laat de achtergrondafbeelding en kleur leeg om de standaard van het thema te gebruiken"; -$a->strings["Skip to main content"] = "Ga naar hoofdinhoud"; -$a->strings["Top Banner"] = "Banner Bovenaan"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Pas het beeld aan aan de breedte van het scherm en toon achtergrondkleur onder lange pagina's"; -$a->strings["Full screen"] = "Volledig scherm"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Pas het beeld aan om het hele scherm te vullen, met ofwel de rechter- of de onderkant afgeknipt."; -$a->strings["Single row mosaic"] = "Enkele rij mozaïek"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Pas het beeld aan zodat het herhaald wordt op een enkele rij, ofwel vertikaal ofwel horizontaal"; -$a->strings["Mosaic"] = "Mozaïek"; -$a->strings["Repeat image to fill the screen."] = "Herhaal beeld om het scherm te vullen."; -$a->strings["Guest"] = "Gast"; -$a->strings["Visitor"] = "Bezoeker"; -$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["Comma separated list of helper forums"] = "Kommagescheiden lijst van de helper forums"; -$a->strings["don't show"] = "niet tonen"; -$a->strings["show"] = "tonen"; -$a->strings["Set style"] = "Stijl instellen"; -$a->strings["Community Pages"] = "Forum/groepspagina's"; -$a->strings["Community Profiles"] = "Forum/groepsprofielen"; -$a->strings["Help or @NewHere ?"] = "Help of @NewHere ?"; -$a->strings["Connect Services"] = "Diensten verbinden"; -$a->strings["Find Friends"] = "Zoek vrienden"; -$a->strings["Last users"] = "Laatste gebruikers"; -$a->strings["Quick Start"] = "Snelstart"; +$a->strings["Database storage failed to update %s"] = "Database opslag faalde om %s te vernieuwen"; +$a->strings["Database storage failed to insert data"] = "Database opslag mislukt om gegevens in te voegen"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = ""; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = ""; +$a->strings["Storage base path"] = ""; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = ""; +$a->strings["Enter a valid existing folder"] = "Geef een geldige bestaande folder in"; +$a->strings["activity"] = "activiteit"; +$a->strings["post"] = "bericht"; +$a->strings["Content warning: %s"] = "Waarschuwing inhoud: %s"; +$a->strings["bytes"] = "bytes"; +$a->strings["View on separate page"] = "Bekijk op aparte pagina"; +$a->strings["view on separate page"] = "bekijk op aparte pagina"; +$a->strings["link to source"] = "Verwijzing naar bron"; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["UnFollow"] = "Ontvolgen"; +$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Organisation"] = "Organisatie"; +$a->strings["News"] = "Nieuws"; +$a->strings["Forum"] = "Forum"; +$a->strings["Connect URL missing."] = "Connectie URL ontbreekt."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken."; +$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."; +$a->strings["The profile address specified does not provide adequate information."] = "Het opgegeven profiel adres bevat geen adequate informatie."; +$a->strings["An author or name was not found."] = "Er werd geen auteur of naam gevonden."; +$a->strings["No browser URL could be matched to this address."] = "Er kan geen browser URL gematcht worden met dit adres."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; +$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen."; +$a->strings["Unable to retrieve contact information."] = "Het was niet mogelijk informatie over dit contact op te halen."; +$a->strings["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["all-day"] = "de hele dag"; +$a->strings["Sept"] = "Sep"; +$a->strings["No events to display"] = "Geen gebeurtenissen te tonen"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Duplicate event"] = "Duplicate gebeurtenis"; +$a->strings["Delete event"] = "Verwijder gebeurtenis"; +$a->strings["D g:i A"] = "D g:i A"; +$a->strings["g:i A"] = "g:i A"; +$a->strings["Show map"] = "Toon kaart"; +$a->strings["Hide map"] = "Verberg kaart"; +$a->strings["%s's birthday"] = "%s's verjaardag"; +$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; +$a->strings["Login failed"] = "Login mislukt"; +$a->strings["Not enough information to authenticate"] = "Niet genoeg informatie om te authentificeren"; +$a->strings["Password can't be empty"] = "Wachtwoord mag niet leeg zijn"; +$a->strings["Empty passwords are not allowed."] = "Lege wachtwoorden zijn niet toegestaan"; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "Het wachtwoord mag geen geaccentueerde letters, spaties of dubbele punten bevatten (:)"; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; +$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["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid."; +$a->strings["Username should be at least %s character."] = [ + 0 => "Gebruikersnaam moet minimaal %s tekens bevatten.", + 1 => "Gebruikersnaam moet minimaal %s tekens bevatten", +]; +$a->strings["Username should be at most %s character."] = [ + 0 => "Gebruikersnaam mag maximaal %s tekens bevatten.", + 1 => "Gebruikersnaam mag maximaal %s tekens bevatten.", +]; +$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["The nickname was blocked from registration by the nodes admin."] = "De bijnaam werd geblokkeerd voor registratie door de node admin"; +$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 _."] = "Je bijnaam mag alleen a-z, 0-9 of _ bevatten."; +$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. 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."] = "Er is een fout opgetreden tijdens de registratie. Probeer opnieuw."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw."; +$a->strings["An error occurred creating your self contact. Please try again."] = "Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw."; +$a->strings["Friends"] = "Vrienden"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "Er is een fout opgetreden bij het aanmaken van je standaard contact groep. Probeer opnieuw."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tBeste %1\$s,\n\t\t\tde administrator van %2\$s heeft een gebruiker voor je aangemaakt."; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tDe logingegevens zijn als volgt:\n\n\t\tSite Locatie:\t%1\$s\n\t\tLogin Naam:\t\t%2\$s\n\t\tWachtwoord:\t\t%3\$s\n\n\t\tJe kunt je wachtwoord wijzigen vanuit je gebruikers \"Instellingen\" pagina\n\t\tnadat je bent ingelogd.\n\n\t\tGelieve even de tijd te nemen om de andere gebruikersinstellingen te controleren op die pagina.\n\n\t\tAls je wilt kun je ook wat basisinformatie aan je standaard profiel toevoegen\n\t\t(op de \"Profielen\" pagina) zodat ander mensen je makkelijk kunnen vinden.\n\n\t\tWe bevelen je aan om je volledige naam in te vullen, een profielfoto en\n\t\tenkele profiel \"sleutelwoorden\" toe te voegen (zeer zinvol om nieuwe vrienden te maken) - en\n\t\tmisschien aangeven in welk land je woont; als je niet specifieker dan dat wenst te zijn.\n\n\t\tWe respecteren volledig je recht op privésfeer en geen van deze items zijn noodzakelijk.\n\t\tAls je hier nieuw bent en nog niemand kent, dan kunnen zij\n\t\tje helpen om enkele nieuwe en interessante vrienden te maken.\n\n\t\tAls je ooit je gebruiker wenst te verwijderen, dan kan je dat doen op %1\$s/removeme\n\n\t\tBedankt en welkom bij %4\$s."; +$a->strings["Registration details for %s"] = "Registratie details voor %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tHallo %1\$s,\n\t\t\t\tBedankt voor uw registratie op %2\$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3\$s\n\t\t\tGebruikersnaam:\t\t%4\$s\n\t\t\tWachtwoord:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Registratie bij %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\tBedankt voor je inschrijving op %2\$s. Je gebruiker is aangemaakt.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%3\$s\n\t\t\tLogin Naam:\t\t%1\$s\n\t\t\tWachtwoord:\t\t%5\$s\n\n\t\t\tJe kunt je wachtwoord in de \"Instellingen\" pagina veranderen nadat je bent ingelogd.\n\n\t\t\tNeem een ogenblik de tijd om je andere instellingen na te kijken op die pagina.\n\n\t\t\tJe kunt ook wat basis informatie toevoegen aan je standaard profiel\n\t\t\t(in de \"Profielen\" pagina) zodat anderen je gemakkelijk kunnen vinden.\n\n\t\t\tWe raden aan je volledige naam in te vullen, een profiel foto toe te voegen,\n\t\t\tenkele profiel \"sleutelwoorden\" (zeer handig om nieuwe vrienden te leren kennen) - en\n\t\t\tmisschien in welk land je woont; als je niet meer details wil geven.\n\t\t\tWe respecteren je privacy volledig, en geen van deze velden zijn verplicht.\n\t\t\tAls je nieuw bent en niemand kent, dan kunnen zij je misschien\n\t\t\thelpen om enkele nieuwe en interessante vrienden te leren kennen.\n\n\t\t\tAls je ooit je account wil verwijderen, dan kan je dat via %3\$s/removeme\n\n\t\t\tBedankt en welkom bij %2\$s."; +$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"] = "Standaard privacy groep voor nieuwe contacten"; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["edit"] = "verander"; +$a->strings["add"] = "toevoegen"; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Edit groups"] = "Bewerk groepen"; +$a->strings["Change profile photo"] = "Profiel foto wijzigen"; +$a->strings["Atom feed"] = "Atom feed"; +$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 omschrijving]"; +$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; +$a->strings["Upcoming events the next 7 days:"] = "Evenementen de komende 7 dagen:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s verwelkomt %2\$s"; +$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["Connect"] = "Verbinden"; +$a->strings["%d invitation available"] = [ + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +]; +$a->strings["Everyone"] = "Iedereen"; +$a->strings["Relationships"] = "Relaties"; +$a->strings["Protocols"] = "Protocollen"; +$a->strings["All Protocols"] = "Alle protocollen"; +$a->strings["Saved Folders"] = "Bewaarde Mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["%d contact in common"] = [ + 0 => "%d gedeeld contact", + 1 => "%d gedeelde contacten", +]; +$a->strings["Archives"] = "Archieven"; +$a->strings["Frequently"] = "Frequent"; +$a->strings["Hourly"] = "Ieder uur"; +$a->strings["Twice daily"] = "Twee maal daags"; +$a->strings["Daily"] = "Dagelijks"; +$a->strings["Weekly"] = "Wekelijks"; +$a->strings["Monthly"] = "Maandelijks"; +$a->strings["DFRN"] = "DFRN"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$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["Discourse"] = "Toespraak"; +$a->strings["Diaspora Connector"] = "Diaspora Connector"; +$a->strings["GNU Social Connector"] = "GNU Social Connector"; +$a->strings["ActivityPub"] = "ActivityPub"; +$a->strings["pnut"] = "pnut"; +$a->strings["%s (via %s)"] = ""; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Photo Location"] = "Foto Locatie"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart."; +$a->strings["Trending Tags"] = "Populaire Tags"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Toon een widget voor communitypagina met een lijst van de populairste tags in recente openbare berichten."; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Auto-mention Forums"] = "Auto-vermelding Forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Voeg toe/verwijder vermelding wanneer een forum pagina geselecteerd/gedeselecteerd wordt in het ACL venster."; +$a->strings["Explicit Mentions"] = "Expliciete vermeldingen"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld."; +$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Advanced Profile Settings"] = "Geavanceerde Profiel Instellingen"; +$a->strings["List Forums"] = "Lijst Fora op"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina"; +$a->strings["Tag Cloud"] = "Tag Wolk"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Voorzie een persoonlijk tag wolk op je profiel pagina"; +$a->strings["Display Membership Date"] = "Toon Lidmaatschap Datum"; +$a->strings["Display membership date in profile"] = "Toon lidmaatschap datum in profiel"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["@name, !forum, #tags, content"] = "@naam, !forum, #labels, inhoud"; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal notes"] = "Je persoonlijke nota's"; +$a->strings["Home"] = "Tijdlijn"; +$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["Full Text"] = "Volledige tekst"; +$a->strings["Tags"] = "Labels"; +$a->strings["Community"] = "Website"; +$a->strings["Conversations on this and other servers"] = "Gesprekken op deze en andere servers"; +$a->strings["Directory"] = "Gids"; +$a->strings["People directory"] = "Personengids"; +$a->strings["Information about this friendica instance"] = "informatie over deze friendica server"; +$a->strings["Terms of Service of this Friendica instance"] = "Gebruiksvoorwaarden op deze Friendica server"; +$a->strings["Introductions"] = "Verzoeken"; +$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["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Verzonden berichten"; +$a->strings["Accounts"] = "Gebruikers"; +$a->strings["Manage other pages"] = "Andere pagina's beheren"; +$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; +$a->strings["Navigation"] = "Navigatie"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Export"] = "Exporteer"; +$a->strings["Export calendar as ical"] = "Exporteer kalender als ical"; +$a->strings["Export calendar as csv"] = "Exporteer kalender als csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "Populaire Tags (laatste %d uur)", + 1 => "Populaire Tags (laatste %d uur)", +]; +$a->strings["More Trending Tags"] = "Meer Populaire Tags"; +$a->strings["No contacts"] = "Geen contacten"; +$a->strings["%d Contact"] = [ + 0 => "%d contact", + 1 => "%d contacten", +]; +$a->strings["View Contacts"] = "Bekijk contacten"; +$a->strings["newer"] = "nieuwere berichten"; +$a->strings["older"] = "oudere berichten"; +$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; +$a->strings["Embedded content"] = "Ingebedde inhoud"; +$a->strings["prev"] = "vorige"; +$a->strings["last"] = "laatste"; +$a->strings["Loading more entries..."] = "Meer berichten aan het laden..."; +$a->strings["The end"] = "Het einde"; +$a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Invalid source protocol"] = "Ongeldig bron protocol"; +$a->strings["Invalid link protocol"] = "Ongeldig verbinding protocol"; +$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."] = "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd."; From 150baae39174c4494a3c7b22366a102ad288c143 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:38:32 +0200 Subject: [PATCH 15/44] EN US and GB translation updates THX AndyH3 --- view/lang/en-gb/messages.po | 16079 +++++++++++++++++----------------- view/lang/en-gb/strings.php | 2883 +++--- view/lang/en-us/messages.po | 16079 +++++++++++++++++----------------- view/lang/en-us/strings.php | 2885 +++--- 4 files changed, 18931 insertions(+), 18995 deletions(-) diff --git a/view/lang/en-gb/messages.po b/view/lang/en-gb/messages.po index 911bf85ba8..5371279bbe 100644 --- a/view/lang/en-gb/messages.po +++ b/view/lang/en-gb/messages.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-06-23 16:05+0000\n" -"Last-Translator: Andy H3 \n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-05 00:17+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,433 +20,801 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "default" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Submit" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Theme settings" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Variations" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Alignment" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Left" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Centre" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Colour scheme" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Posts font size" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Text areas font size" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Comma separated list of helper forums" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "don't show" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "show" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Set style" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Community pages" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Community profiles" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Help or @NewHere ?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Connect services" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Find friends" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Last users" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Find people" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Enter name or interest" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Connect/Follow" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Examples: Robert Morgenstein, fishing" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Find" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Similar interests" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Random profile" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Invite friends" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Global directory" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Local directory" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Forums" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "External link to forum" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "Show more..." + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Quick start" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Help" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "Custom" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Note" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Check image permissions that all everyone is allowed to see the image" + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "Select colour scheme" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "Copy or paste theme string" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "You can copy this string to share your theme with others. Pasting here applies the theme string" + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Navigation bar background colour:" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Navigation bar icon colour:" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Link colour:" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Background colour:" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "Content background opacity" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Background image:" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "Background image style" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "Login page background image" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "Login page background colour" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "Leave background image and colour empty for theme defaults" + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Guest" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Visitor" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Status" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Profile" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "My profile page" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Photos" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "My photos" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Videos" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "My videos" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Events" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "My events" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Network" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "My friends' conversations" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Events and calendar" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Messages" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Private messages" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Settings" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Account settings" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Contacts" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Manage/Edit friends and contacts" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Follow thread" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "Skip to main content" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Top Banner" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Resize image to the width of the screen and show background colour below on long pages." + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Full screen" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Resize image to fill entire screen, clipping either the right or the bottom." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Single row mosaic" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Resize image to repeat it on a single row, either vertical or horizontal." + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Mosaic" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Repeat image to fill the screen." + +#: update.php:195 #, php-format -msgid "Daily posting limit of %d post reached. The post was rejected." -msgid_plural "Daily posting limit of %d posts reached. The post was rejected." -msgstr[0] "Daily posting limit of %d post reached. The post was rejected." -msgstr[1] "Daily posting limit of %d posts are reached. This post was rejected." +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "%s: Updating author-id and owner-id in item and thread table. " -#: include/api.php:1137 +#: update.php:250 #, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "Weekly posting limit of %d post reached. The post was rejected." -msgstr[1] "Weekly posting limit of %d posts are reached. This post was rejected." +msgid "%s: Updating post-type." +msgstr "%s: Updating post-type." -#: include/api.php:1151 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Monthly posting limit of %d posts are reached. The post was rejected." - -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 -#: src/Module/Settings/Profile/Photo/Crop.php:113 -#: src/Module/Settings/Profile/Photo/Crop.php:129 -#: src/Module/Settings/Profile/Photo/Crop.php:178 -#: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 -msgid "Profile Photos" -msgstr "Profile photos" - -#: include/conversation.php:189 +#: include/conversation.php:188 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s poked %2$s" -#: include/conversation.php:221 src/Model/Item.php:3444 +#: include/conversation.php:220 src/Model/Item.php:3330 msgid "event" msgstr "event" -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 msgid "status" msgstr "status" -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 msgid "photo" msgstr "photo" -#: include/conversation.php:243 mod/tagger.php:121 +#: include/conversation.php:242 mod/tagger.php:122 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s tagged %2$s's %3$s with %4$s" -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 msgid "Select" msgstr "Select" -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 msgid "Delete" msgstr "Delete" -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 #, php-format msgid "View %s's profile @ %s" msgstr "View %s's profile @ %s" -#: include/conversation.php:603 src/Object/Post.php:426 +#: include/conversation.php:602 src/Object/Post.php:428 msgid "Categories:" msgstr "Categories:" -#: include/conversation.php:604 src/Object/Post.php:427 +#: include/conversation.php:603 src/Object/Post.php:429 msgid "Filed under:" msgstr "Filed under:" -#: include/conversation.php:611 src/Object/Post.php:452 +#: include/conversation.php:610 src/Object/Post.php:454 #, php-format msgid "%s from %s" msgstr "%s from %s" -#: include/conversation.php:626 +#: include/conversation.php:625 msgid "View in context" msgstr "View in context" -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 msgid "Please wait" msgstr "Please wait" -#: include/conversation.php:692 +#: include/conversation.php:691 msgid "remove" msgstr "Remove" -#: include/conversation.php:696 +#: include/conversation.php:695 msgid "Delete Selected Items" msgstr "Delete selected items" -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "Follow thread" - -#: include/conversation.php:858 src/Model/Contact.php:1277 +#: include/conversation.php:876 src/Model/Contact.php:1170 msgid "View Status" msgstr "View status" -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 msgid "View Profile" msgstr "View profile" -#: include/conversation.php:860 src/Model/Contact.php:1279 +#: include/conversation.php:878 src/Model/Contact.php:1172 msgid "View Photos" msgstr "View photos" -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 msgid "Network Posts" msgstr "Network posts" -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 msgid "View Contact" msgstr "View contact" -#: include/conversation.php:863 src/Model/Contact.php:1283 +#: include/conversation.php:881 src/Model/Contact.php:1176 msgid "Send PM" msgstr "Send PM" -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 msgid "Block" msgstr "Block" -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 #: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 msgid "Ignore" msgstr "Ignore" -#: include/conversation.php:869 src/Model/Contact.php:1284 +#: include/conversation.php:887 src/Model/Contact.php:1177 msgid "Poke" msgstr "Poke" -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "Connect/Follow" - -#: include/conversation.php:1000 +#: include/conversation.php:1018 #, php-format msgid "%s likes this." msgstr "%s likes this." -#: include/conversation.php:1003 +#: include/conversation.php:1021 #, php-format msgid "%s doesn't like this." msgstr "%s doesn't like this." -#: include/conversation.php:1006 +#: include/conversation.php:1024 #, php-format msgid "%s attends." msgstr "%s attends." -#: include/conversation.php:1009 +#: include/conversation.php:1027 #, php-format msgid "%s doesn't attend." msgstr "%s doesn't attend." -#: include/conversation.php:1012 +#: include/conversation.php:1030 #, php-format msgid "%s attends maybe." msgstr "%s may attend." -#: include/conversation.php:1015 include/conversation.php:1058 +#: include/conversation.php:1033 include/conversation.php:1076 #, php-format msgid "%s reshared this." msgstr "%s reshared this." -#: include/conversation.php:1023 +#: include/conversation.php:1041 msgid "and" msgstr "and" -#: include/conversation.php:1029 +#: include/conversation.php:1047 #, php-format msgid "and %d other people" msgstr "and %d other people" -#: include/conversation.php:1037 +#: include/conversation.php:1055 #, php-format msgid "%2$d people like this" msgstr "%2$d people like this" -#: include/conversation.php:1038 +#: include/conversation.php:1056 #, php-format msgid "%s like this." msgstr "%s like this." -#: include/conversation.php:1041 +#: include/conversation.php:1059 #, php-format msgid "%2$d people don't like this" msgstr "%2$d people don't like this" -#: include/conversation.php:1042 +#: include/conversation.php:1060 #, php-format msgid "%s don't like this." msgstr "%s don't like this." -#: include/conversation.php:1045 +#: include/conversation.php:1063 #, php-format msgid "%2$d people attend" msgstr "%2$d people attend" -#: include/conversation.php:1046 +#: include/conversation.php:1064 #, php-format msgid "%s attend." msgstr "%s attend." -#: include/conversation.php:1049 +#: include/conversation.php:1067 #, php-format msgid "%2$d people don't attend" msgstr "%2$d people don't attend" -#: include/conversation.php:1050 +#: include/conversation.php:1068 #, php-format msgid "%s don't attend." msgstr "%s don't attend." -#: include/conversation.php:1053 +#: include/conversation.php:1071 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d people attend maybe" -#: include/conversation.php:1054 +#: include/conversation.php:1072 #, php-format msgid "%s attend maybe." msgstr "%s may be attending." -#: include/conversation.php:1057 +#: include/conversation.php:1075 #, php-format msgid "%2$d people reshared this" msgstr "%2$d people reshared this" -#: include/conversation.php:1087 +#: include/conversation.php:1105 msgid "Visible to everybody" msgstr "Visible to everybody" -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Please enter an image/video/audio/webpage URL:" -#: include/conversation.php:1089 +#: include/conversation.php:1107 msgid "Tag term:" msgstr "Tag term:" -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 msgid "Save to Folder:" msgstr "Save to folder:" -#: include/conversation.php:1091 +#: include/conversation.php:1109 msgid "Where are you right now?" msgstr "Where are you right now?" -#: include/conversation.php:1092 +#: include/conversation.php:1110 msgid "Delete item(s)?" msgstr "Delete item(s)?" -#: include/conversation.php:1124 +#: include/conversation.php:1142 msgid "New Post" msgstr "New post" -#: include/conversation.php:1127 +#: include/conversation.php:1145 msgid "Share" msgstr "Share" -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 msgid "Loading..." msgstr "Loading..." -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 msgid "Upload photo" msgstr "Upload photo" -#: include/conversation.php:1130 mod/editpost.php:91 +#: include/conversation.php:1148 mod/editpost.php:91 msgid "upload photo" msgstr "upload photo" -#: include/conversation.php:1131 mod/editpost.php:92 +#: include/conversation.php:1149 mod/editpost.php:92 msgid "Attach file" msgstr "Attach file" -#: include/conversation.php:1132 mod/editpost.php:93 +#: include/conversation.php:1150 mod/editpost.php:93 msgid "attach file" msgstr "attach file" -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 msgid "Bold" msgstr "Bold" -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 msgid "Italic" msgstr "Italic" -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 msgid "Underline" msgstr "Underline" -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 msgid "Quote" msgstr "Quote" -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 msgid "Code" msgstr "Code" -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 msgid "Image" msgstr "Image" -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 msgid "Link" msgstr "Link" -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 msgid "Link or Media" msgstr "Link or media" -#: include/conversation.php:1141 mod/editpost.php:100 +#: include/conversation.php:1159 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "Set your location" -#: include/conversation.php:1142 mod/editpost.php:101 +#: include/conversation.php:1160 mod/editpost.php:101 msgid "set location" msgstr "set location" -#: include/conversation.php:1143 mod/editpost.php:102 +#: include/conversation.php:1161 mod/editpost.php:102 msgid "Clear browser location" msgstr "Clear browser location" -#: include/conversation.php:1144 mod/editpost.php:103 +#: include/conversation.php:1162 mod/editpost.php:103 msgid "clear location" msgstr "clear location" -#: include/conversation.php:1146 mod/editpost.php:117 +#: include/conversation.php:1164 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "Set title" -#: include/conversation.php:1148 mod/editpost.php:119 +#: include/conversation.php:1166 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "Categories (comma-separated list)" -#: include/conversation.php:1150 mod/editpost.php:105 +#: include/conversation.php:1168 mod/editpost.php:105 msgid "Permission settings" msgstr "Permission settings" -#: include/conversation.php:1151 mod/editpost.php:134 +#: include/conversation.php:1169 mod/editpost.php:134 msgid "permissions" -msgstr "permissions" +msgstr "Permissions" -#: include/conversation.php:1160 mod/editpost.php:114 +#: include/conversation.php:1178 mod/editpost.php:114 msgid "Public post" msgstr "Public post" -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 msgid "Preview" msgstr "Preview" -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "Cancel" -#: include/conversation.php:1173 +#: include/conversation.php:1191 msgid "Post to Groups" msgstr "Post to groups" -#: include/conversation.php:1174 +#: include/conversation.php:1192 msgid "Post to Contacts" msgstr "Post to contacts" -#: include/conversation.php:1175 +#: include/conversation.php:1193 msgid "Private post" msgstr "Private post" -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 msgid "Message" msgstr "Message" -#: include/conversation.php:1181 mod/editpost.php:133 +#: include/conversation.php:1199 mod/editpost.php:133 msgid "Browser" msgstr "Browser" -#: include/conversation.php:1183 mod/editpost.php:136 +#: include/conversation.php:1201 mod/editpost.php:136 msgid "Open Compose page" msgstr "Open Compose page" @@ -454,262 +822,262 @@ msgstr "Open Compose page" msgid "[Friendica:Notify]" msgstr "[Friendica:Notify]" -#: include/enotify.php:128 +#: include/enotify.php:140 #, php-format msgid "%s New mail received at %s" msgstr "%s New mail received at %s" -#: include/enotify.php:130 +#: include/enotify.php:142 #, 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:131 +#: include/enotify.php:143 msgid "a private message" msgstr "a private message" -#: include/enotify.php:131 +#: include/enotify.php:143 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sent you %2$s." -#: include/enotify.php:133 +#: include/enotify.php:145 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Please visit %s to view or reply to your private messages." -#: include/enotify.php:177 +#: include/enotify.php:189 #, php-format msgid "%1$s replied to you on %2$s's %3$s %4$s" msgstr "%1$s replied to you on %2$s's %3$s %4$s" -#: include/enotify.php:179 +#: include/enotify.php:191 #, php-format msgid "%1$s tagged you on %2$s's %3$s %4$s" msgstr "%1$s tagged you on %2$s's %3$s %4$s" -#: include/enotify.php:181 +#: include/enotify.php:193 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s commented on %2$s's %3$s %4$s" -#: include/enotify.php:191 +#: include/enotify.php:203 #, php-format msgid "%1$s replied to you on your %2$s %3$s" msgstr "%1$s replied to you on your %2$s %3$s" -#: include/enotify.php:193 +#: include/enotify.php:205 #, php-format msgid "%1$s tagged you on your %2$s %3$s" msgstr "%1$s tagged you on your %2$s %3$s" -#: include/enotify.php:195 +#: include/enotify.php:207 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s commented on your %2$s %3$s" -#: include/enotify.php:202 +#: include/enotify.php:214 #, php-format msgid "%1$s replied to you on their %2$s %3$s" msgstr "%1$s replied to you on their %2$s %3$s" -#: include/enotify.php:204 +#: include/enotify.php:216 #, php-format msgid "%1$s tagged you on their %2$s %3$s" msgstr "%1$s tagged you on their %2$s %3$s" -#: include/enotify.php:206 +#: include/enotify.php:218 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s commented on their %2$s %3$s" -#: include/enotify.php:217 +#: include/enotify.php:229 #, php-format msgid "%s %s tagged you" msgstr "%s %s tagged you" -#: include/enotify.php:219 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s tagged you at %2$s" -#: include/enotify.php:221 +#: include/enotify.php:233 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Comment to conversation #%2$d by %3$s" -#: include/enotify.php:223 +#: include/enotify.php:235 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s commented on an item/conversation you have been following." -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Please visit %s to view or reply to the conversation." -#: include/enotify.php:235 +#: include/enotify.php:247 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s posted to your profile wall" -#: include/enotify.php:237 +#: include/enotify.php:249 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s posted to your profile wall at %2$s" -#: include/enotify.php:238 +#: include/enotify.php:250 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s posted to [url=%2$s]your wall[/url]" -#: include/enotify.php:250 +#: include/enotify.php:262 #, php-format msgid "%s %s shared a new post" msgstr "%s %s shared a new post" -#: include/enotify.php:252 +#: include/enotify.php:264 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s shared a new post at %2$s" -#: include/enotify.php:253 +#: include/enotify.php:265 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]shared a post[/url]." -#: include/enotify.php:265 +#: include/enotify.php:277 #, php-format msgid "%1$s %2$s poked you" msgstr "%1$s %2$s poked you" -#: include/enotify.php:267 +#: include/enotify.php:279 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s poked you at %2$s" -#: include/enotify.php:268 +#: include/enotify.php:280 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]poked you[/url]." -#: include/enotify.php:285 +#: include/enotify.php:297 #, php-format msgid "%s %s tagged your post" msgstr "%s %s tagged your post" -#: include/enotify.php:287 +#: include/enotify.php:299 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s tagged your post at %2$s" -#: include/enotify.php:288 +#: include/enotify.php:300 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s tagged [url=%2$s]your post[/url]" -#: include/enotify.php:300 +#: include/enotify.php:312 #, php-format msgid "%s Introduction received" msgstr "%s Introduction received" -#: include/enotify.php:302 +#: include/enotify.php:314 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "You've received an introduction from '%1$s' at %2$s" -#: include/enotify.php:303 +#: include/enotify.php:315 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." -#: include/enotify.php:308 include/enotify.php:354 +#: include/enotify.php:320 include/enotify.php:366 #, php-format msgid "You may visit their profile at %s" msgstr "You may visit their profile at %s" -#: include/enotify.php:310 +#: include/enotify.php:322 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Please visit %s to approve or reject the introduction." -#: include/enotify.php:317 +#: include/enotify.php:329 #, php-format msgid "%s A new person is sharing with you" msgstr "%s A new person is sharing with you" -#: include/enotify.php:319 include/enotify.php:320 +#: include/enotify.php:331 include/enotify.php:332 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s is sharing with you at %2$s" -#: include/enotify.php:327 +#: include/enotify.php:339 #, php-format msgid "%s You have a new follower" msgstr "%s You have a new follower" -#: include/enotify.php:329 include/enotify.php:330 +#: include/enotify.php:341 include/enotify.php:342 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "You have a new follower at %2$s : %1$s" -#: include/enotify.php:343 +#: include/enotify.php:355 #, php-format msgid "%s Friend suggestion received" msgstr "%s Friend suggestion received" -#: include/enotify.php:345 +#: include/enotify.php:357 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "You've received a friend suggestion from '%1$s' at %2$s" -#: include/enotify.php:346 +#: include/enotify.php:358 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -#: include/enotify.php:352 +#: include/enotify.php:364 msgid "Name:" msgstr "Name:" -#: include/enotify.php:353 +#: include/enotify.php:365 msgid "Photo:" msgstr "Photo:" -#: include/enotify.php:356 +#: include/enotify.php:368 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Please visit %s to approve or reject the suggestion." -#: include/enotify.php:364 include/enotify.php:379 +#: include/enotify.php:376 include/enotify.php:391 #, php-format msgid "%s Connection accepted" msgstr "%s Connection accepted" -#: include/enotify.php:366 include/enotify.php:381 +#: include/enotify.php:378 include/enotify.php:393 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' has accepted your connection request at %2$s" -#: include/enotify.php:367 include/enotify.php:382 +#: include/enotify.php:379 include/enotify.php:394 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." -#: include/enotify.php:372 +#: include/enotify.php:384 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." -#: include/enotify.php:374 +#: include/enotify.php:386 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: include/enotify.php:387 +#: include/enotify.php:399 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -718,37 +1086,37 @@ msgid "" "automatically." msgstr "'%1$s' has chosen to accept you as fan. This restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically." -#: include/enotify.php:389 +#: include/enotify.php:401 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." -#: include/enotify.php:391 +#: include/enotify.php:403 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: include/enotify.php:401 mod/removeme.php:63 +#: include/enotify.php:413 mod/removeme.php:63 msgid "[Friendica System Notify]" msgstr "[Friendica System Notify]" -#: include/enotify.php:401 +#: include/enotify.php:413 msgid "registration request" msgstr "registration request" -#: include/enotify.php:403 +#: include/enotify.php:415 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "You've received a registration request from '%1$s' at %2$s." -#: include/enotify.php:404 +#: include/enotify.php:416 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." -#: include/enotify.php:409 +#: include/enotify.php:421 #, php-format msgid "" "Full Name:\t%s\n" @@ -756,665 +1124,1390 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)" -#: include/enotify.php:415 +#: include/enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Please visit %s to approve or reject the request." -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "Item not found." +#: include/api.php:1127 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "Daily posting limit of %d post reached. The post was rejected." +msgstr[1] "Daily posting limit of %d posts are reached. This post was rejected." -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "Do you really want to delete this item?" +#: include/api.php:1141 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "Weekly posting limit of %d post reached. The post was rejected." +msgstr[1] "Weekly posting limit of %d posts are reached. This post was rejected." -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "Yes" +#: include/api.php:1155 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "Monthly posting limit of %d posts are reached. The post was rejected." -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "Permission denied." +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 +#: src/Module/Settings/Profile/Photo/Crop.php:113 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 +msgid "Profile Photos" +msgstr "Profile photos" -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Authorise application connection" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "Return to your app and insert this security code:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Please login to continue." - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Do you want to authorise this application to access your posts and contacts and create new posts for you?" - -#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "No" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Access denied." -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Access to this profile has been restricted." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "" -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "Events" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "View" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "Previous" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "Next" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "today" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "month" - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "week" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "day" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "List" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "User not found" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "This calendar format is not supported" - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "No exportable data found" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "calendar" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "No contacts in common." - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "Common friends" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "Profile not found." - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Contact not found." -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Permission denied." + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Message failed." + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "No recipient selected." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Unable to check your home location." + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "Message could not be sent." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Message collection failure." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "No recipient." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Please enter a link URL:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Send private message" + +#: 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." + +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "To:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Subject:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Your message:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Insert web link" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "Profile not found." + +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved." -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "Response from remote site was not understood." -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Unexpected response from remote site: " -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Confirmation completed successfully." -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "Temporary failure. Please wait and try again." -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "Introduction failed or was revoked." -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "Remote site reported: " -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "No user record found for '%s' " -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "Our site encryption key is apparently messed up." -#: mod/dfrn_confirm.php:410 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "An empty URL was provided or the URL could not be decrypted by us." -#: mod/dfrn_confirm.php:426 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "Contact record was not found for you on our site." -#: mod/dfrn_confirm.php:440 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "Site public key not available in contact record for URL %s." -#: mod/dfrn_confirm.php:456 +#: mod/dfrn_confirm.php:455 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again." -#: mod/dfrn_confirm.php:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "Unable to set your contact credentials on our system." -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "Unable to update your contact profile details on our system" -#: mod/dfrn_confirm.php:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Name Withheld]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Public access denied." + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "No videos selected" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "Access to this item is restricted." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "View video" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "View album" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Recent videos" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Upload new videos" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "No keywords to match. Please add keywords to your profile." + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "first" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "next" + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "No matches" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Profile Match" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "Missing some important data!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Update" + +#: mod/settings.php:200 +msgid "Failed to connect with email account using the settings provided." +msgstr "Failed to connect with email account using the settings provided." + +#: mod/settings.php:229 +msgid "Contact CSV file upload error" +msgstr "Contact CSV file upload error" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "Importing contacts done" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been send to your contacts" + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "Passwords do not match." + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "Password update failed. Please try again." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Password changed." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "Password unchanged." + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "Please use a shorter name." + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "Name too short." + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "Wrong password." + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "Invalid email." + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "Cannot change to that email." + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Private forum has no privacy permissions. Using default privacy group." + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Private forum has no privacy permissions and no default privacy group." + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Add application" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Save settings" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Name:" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Consumer key" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Consumer secret" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "You cannot edit this application." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Connected Apps" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Edit" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Client key starts with" + +#: mod/settings.php:562 +msgid "No name" +msgstr "No name" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Remove authorization" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "No addon settings configured" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "Addon settings" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Additional Features" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "diaspora* (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "enabled" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "disabled" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Built-in support for %s connectivity is %s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "Email access is disabled on this site." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "None" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Social networks" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "General Social Media Settings" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "Accept only top-level posts by contacts you follow" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don't follow, because one of your followers commented there. This setting will deactivate this behaviour. If activated, you will only receive posts from people you really do follow." + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "Disable Content Warning" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Users on networks like Mastodon or Pleroma are able to set a content warning field which collapses their post by default. This disables the automatic collapsing and sets the content warning as the post title. It doesn't affect any other content filtering you may set up." + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Disable intelligent shortening" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "Attach the link title" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "If activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content." + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Create a new contact for every unknown OStatus user from whom you receive a message." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Default group for OStatus contacts" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Your legacy GNU Social account" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done." + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "Repair OStatus subscriptions" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "Email/Mailbox setup" + +#: mod/settings.php:692 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." + +#: mod/settings.php:693 +msgid "Last successful email check:" +msgstr "Last successful email check:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "IMAP server name:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Security:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "Email login name:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "Email password:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Reply-to address:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Send public posts to all email contacts:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Action after import:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Mark as seen" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "Move to folder" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Unable to find your profile. Please contact your admin." + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Account types:" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Community forum subtypes" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Personal Page" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Account for a personal profile." + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Organisation Page" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account for an organisation that automatically approves contact requests as \"Followers\"." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "News Page" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Community Forum" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Account for community discussions." + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Standard" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Public forum" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Automatically approves all contact requests." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "Love-all" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Private forum [Experimental]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Requires manual approval of contact requests." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Allow this OpenID to login to this account." + +#: mod/settings.php:814 +msgid "Publish your profile in your local site directory?" +msgstr "Publish your profile in your local site directory?" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "Your profile will also be published in the global Friendica directories (e.g. %s)." + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Account Settings" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Password change" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "New password:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon." + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Leave password fields blank unless changing" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Current password:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "Delete OpenID URL" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Basic information" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Full name:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "Email address:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Language:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Set the language of your Friendica interface and emails sent to you." + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam or abuse registrations" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "Allow your profile to be searchable globally?" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not." + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "Hide your contact/friend list from viewers of your profile?" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list." + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Hide profile details from anonymous viewers?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies may still be accessible by other means." + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "Make public posts unlisted" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers." + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "Make all posted pictures accessible" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though." + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "Your contacts can add additional tags to your posts." + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica network users may send you private messages even if they are not in your contact list." + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "Expiration settings" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: mod/settings.php:901 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: mod/settings.php:902 +msgid "Expire posts" +msgstr "Expire posts" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "If activated, posts and comments will expire." + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "Expire personal notes" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "If activated, personal notes on your profile page will expire." + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "Expire starred posts" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "Starring posts keeps them from being expired. That behaviour is overwritten by this setting." + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "Expire photos" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "If activated, photos will expire." + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "Only expire posts by others" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "If activated, your own posts never expire. Than the settings above are only valid for posts you received." + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Notification" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "Poked in a post" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Show detailled notifications" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behaviour of this account for special situations" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "Import Contacts" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "Upload File" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Recent relocation" + +#: mod/settings.php:939 +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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: mod/settings.php:940 +msgid "Resend relocate message to contacts" +msgstr "Resend relocation message to contacts" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} wants to be your friend" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} requested registration" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "No contacts in common." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Common friends" + +#: mod/network.php:304 +msgid "No items found" +msgstr "" + +#: mod/network.php:547 +msgid "No such group" +msgstr "No such group" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "Group is empty" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Group: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "Latest activity" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "Sort by latest activity" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "Latest posts" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "Sort by post received date" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Personal" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Starred" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "My favourite posts" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Error" +msgstr[1] "Errors" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "Done" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Keep this window open until done." + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "You aren't following this contact." + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Unfollowing is currently not supported by your network." + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Disconnect/Unfollow" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Submit request" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "Profile URL:" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Status Messages and Posts" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "New Message" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "Unable to locate contact information." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Discard" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "Do you really want to delete this message?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Yes" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "Conversation not found." + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:300 +msgid "No messages." +msgstr "No messages." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Message not available." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Delete message" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Delete conversation" + +#: mod/message.php:426 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No secure communications available. You may be able to respond from the sender's profile page." + +#: mod/message.php:430 +msgid "Send Reply" +msgstr "Send reply" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Unknown sender - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Me and %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s and me" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribing to OStatus contacts" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "No contact provided." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "Couldn't fetch information for contact." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "Couldn't fetch friends for contact." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "success" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "failed" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "Ignored" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s welcomes %2$s" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "This introduction has already been accepted." +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "User deleted their account" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profile location is not valid or does not contain profile information." - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warning: profile location has no identifiable owner name." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Warning: profile location has no profile photo." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, 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 required parameter was not found at the given location" -msgstr[1] "%d required parameters were not found at the given location" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Introduction complete." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Unrecoverable protocol error." - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "Profile unavailable." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s has received too many connection requests today." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Spam protection measures have been invoked." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Friends are advised to please try again in 24 hours." - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "You have already introduced yourself here." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Apparently you are already friends with %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Invalid profile URL." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "Disallowed profile URL." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "Blocked domain" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "Failed to update contact record." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Your introduction has been sent." - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups." -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Please login to confirm introduction." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "The user id is %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Remove My Account" + +#: mod/removeme.php:100 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Incorrect identity currently logged in. Please login to this profile." +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Confirm" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Hide this contact" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Remove Item tag" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Welcome home %s." +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Please confirm your introduction/connection request to %s." +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Remove" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "Public access denied." - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "Friend/Connection request" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." -#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today." - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "Your WebFinger address or profile URL:" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "Please answer the following:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "Submit request" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "%s knows you" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "Add a personal note:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "The requested item doesn't exist or has been deleted." -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." msgstr "The feed for this item is unavailable." -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Item not found" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Invalid request." -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Edit post" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Image exceeds size limit of %s" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "Save" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Unable to process image." -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "Insert web link" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Wall photos" -#: mod/editpost.php:95 -msgid "web link" -msgstr "web link" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Insert video link" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "video link" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Insert audio link" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "audio link" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "CC: email addresses" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Example: bob@example.com, mary@example.com" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Event cannot end before it has started." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Event title and starting time are required." - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "Create new event" - -#: mod/events.php:523 -msgid "Event details" -msgstr "Event details" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "Starting date and title are required." - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "Event starts:" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "Required" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "Finish date/time is not known or not relevant" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "Event finishes:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "Adjust for viewer's time zone" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "Description:" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "Location:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "Title:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "Share this event" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Submit" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "Basic" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "Advanced" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "Permissions" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "Failed to remove event" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "Event removed" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "Photos" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "Contact photos" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "Upload" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "Files" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Contact could not be added." - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "You already added this contact." - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "diaspora* support isn't enabled. Contact can't be added." - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus support is disabled. Contact can't be added." - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "The network type couldn't be detected. Contact can't be added." - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "My identity address:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "Profile URL:" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "Tags:" - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "Status Messages and Posts" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "Unable to locate original post." - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "Empty post discarded." - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "Post updated." - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "Item wasn't stored." - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "Item couldn't be fetched." - -#: mod/item.php:831 -msgid "Post published." -msgstr "Post published." - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Remote privacy information not available." - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "Visible to:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "Followers" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "Mutuals" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Image upload failed." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1516,6 +2609,10 @@ msgid "" "successful login." msgstr "Your password may be changed from the Settings page after successful login." +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1546,1400 +2643,227 @@ msgstr "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1$s msgid "Your password has been changed at %s" msgstr "Your password has been changed at %s" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "No keywords to match. Please add keywords to your profile." +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "This introduction has already been accepted." -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "Connect" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profile location is not valid or does not contain profile information." -#: mod/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "first" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warning: profile location has no identifiable owner name." -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "next" +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Warning: profile location has no profile photo." -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "No matches" - -#: mod/match.php:149 -msgid "Profile Match" -msgstr "Profile Match" - -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "New Message" - -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "No recipient selected." - -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "Unable to locate contact information." - -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "Message could not be sent." - -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "Message collection failure." - -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "Message sent." - -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "Discard" - -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "Messages" - -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "Do you really want to delete this message?" - -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "Conversation not found." - -#: mod/message.php:186 -msgid "Message deleted." -msgstr "Message deleted." - -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "Conversation removed." - -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "Please enter a link URL:" - -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "Send private message" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "To:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "Subject:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Your message:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "No messages." - -#: mod/message.php:367 -msgid "Message not available." -msgstr "Message not available." - -#: mod/message.php:421 -msgid "Delete message" -msgstr "Delete message" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "Delete conversation" - -#: mod/message.php:440 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "No secure communications available. You may be able to respond from the sender's profile page." - -#: mod/message.php:444 -msgid "Send Reply" -msgstr "Send reply" - -#: mod/message.php:527 +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 #, php-format -msgid "Unknown sender - %s" -msgstr "Unknown sender - %s" +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 required parameter was not found at the given location" +msgstr[1] "%d required parameters were not found at the given location" -#: mod/message.php:529 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Introduction complete." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Unrecoverable protocol error." + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Profile unavailable." + +#: mod/dfrn_request.php:264 #, php-format -msgid "You and %s" -msgstr "Me and %s" +msgid "%s has received too many connection requests today." +msgstr "%s has received too many connection requests today." -#: mod/message.php:531 +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Spam protection measures have been invoked." + +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Friends are advised to please try again in 24 hours." + +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "You have already introduced yourself here." + +#: mod/dfrn_request.php:329 #, php-format -msgid "%s and You" -msgstr "%s and me" +msgid "Apparently you are already friends with %s." +msgstr "Apparently you are already friends with %s." -#: mod/message.php:558 +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Invalid profile URL." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Disallowed profile URL." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Blocked domain" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Your introduction has been sent." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Please login to confirm introduction." + +#: mod/dfrn_request.php:504 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Incorrect identity currently logged in. Please login to this profile." + +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Confirm" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Hide this contact" + +#: mod/dfrn_request.php:531 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" +msgid "Welcome home %s." +msgstr "Welcome home %s." -#: mod/network.php:568 -msgid "No such group" -msgstr "No such group" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "Group is empty" - -#: mod/network.php:593 +#: mod/dfrn_request.php:532 #, php-format -msgid "Group: %s" -msgstr "Group: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Please confirm your introduction/connection request to %s." -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "Invalid contact." +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Friend/Connection request" -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "Latest activity" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "Sort by latest activity" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "Latest posts" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "Sort by post received date" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "Personal" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "Posts mentioning or involving me" - -#: mod/network.php:930 -msgid "New" -msgstr "New" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "Activity Stream - by date" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "Shared links" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "Interesting links" - -#: mod/network.php:951 -msgid "Starred" -msgstr "Starred" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "My favourite posts" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Personal notes" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "Post successful." - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "Subscribing to OStatus contacts" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "No contact provided." - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Couldn't fetch information for contact." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Couldn't fetch friends for contact." - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Done" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "success" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "failed" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "Ignored" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Keep this window open until done." - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Photo Albums" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "Recent photos" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "Upload new photos" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "everybody" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Contact information unavailable" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "Album not found." - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "Album successfully deleted" - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "Album was empty." - -#: mod/photos.php:591 -msgid "a photo" -msgstr "a photo" - -#: mod/photos.php:591 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s was tagged in %2$s by %3$s" - -#: mod/photos.php:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Image exceeds size limit of %s" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "Image upload didn't complete, please try again" - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "Image file is missing" - -#: mod/photos.php:700 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Server can't accept new file upload at this time, please contact your administrator" - -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "Image file is empty." - -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Unable to process image." - -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "Image upload failed." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "No photos selected" - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Access to this item is restricted." - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "Upload photos" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "New album name: " - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "or select existing album:" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "Do not show a status post for this upload" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "Show to groups" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "Show to contacts" - -#: mod/photos.php:1050 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Do you really want to delete this photo album and all its photos?" - -#: mod/photos.php:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "Delete album" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "Edit album" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "Drop album" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "Show newest first" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "Show oldest first" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "View photo" - -#: mod/photos.php:1145 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permission denied. Access to this item may be restricted." - -#: mod/photos.php:1147 -msgid "Photo not available" -msgstr "Photo not available" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "Do you really want to delete this photo?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "Delete photo" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "View photo" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "Edit photo" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "Delete photo" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "Use as profile photo" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "Private photo" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "View full size" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "[Select tags to remove]" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "New album name" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "Caption" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "Add Tag" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Example: @bob, @jojo@example.com, #California, #camping" - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "Do not rotate" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Rotate right (CW)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Rotate left (CCW)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "I like this (toggle)" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "I don't like this (toggle)" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "This is me" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "Comment" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "Map" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "View album" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0} wants to be your friend" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} requested registration" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "Poke/Prod" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "Poke, prod or do other things to somebody" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "Recipient:" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Choose what you wish to do:" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "Make this post private" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "User deleted their account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "The user id is %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Remove My Account" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "This will completely remove your account. Once this has been done it is not recoverable." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Please enter your password for verification:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribing to OStatus contacts" - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Error" -msgstr[1] "Errors" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "Missing some important data!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "Update" - -#: mod/settings.php:201 -msgid "Failed to connect with email account using the settings provided." -msgstr "Failed to connect with email account using the settings provided." - -#: mod/settings.php:206 -msgid "Email settings updated." -msgstr "Email settings updated." - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "Features updated" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "Contact CSV file upload error" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "Importing contacts done" - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "Relocate message has been send to your contacts" - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "Passwords do not match." - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Password update failed. Please try again." - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "Password changed." - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "Password unchanged." - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "Please use a shorter name." - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "Name too short." - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "Wrong password." - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "Invalid email." - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "Cannot change to that email." - -#: mod/settings.php:427 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Private forum has no privacy permissions. Using default privacy group." - -#: mod/settings.php:430 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Private forum has no privacy permissions and no default privacy group." - -#: mod/settings.php:447 -msgid "Settings updated." -msgstr "Settings updated." - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "Add application" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "Save settings" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "Name:" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "Consumer key" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "Consumer secret" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "Redirect" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "You cannot edit this application." - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "Connected Apps" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "Edit" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "Client key starts with" - -#: mod/settings.php:570 -msgid "No name" -msgstr "No name" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "Remove authorization" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "No addon settings configured" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "Addon settings" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "Additional Features" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "diaspora* (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "enabled" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "disabled" - -#: mod/settings.php:637 mod/settings.php:638 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Built-in support for %s connectivity is %s" - -#: mod/settings.php:638 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "Email access is disabled on this site." - -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "None" - -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Social networks" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "General Social Media Settings" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "Accept only top-level posts by contacts you follow" - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don't follow, because one of your followers commented there. This setting will deactivate this behaviour. If activated, you will only receive posts from people you really do follow." - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "Disable Content Warning" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Users on networks like Mastodon or Pleroma are able to set a content warning field which collapses their post by default. This disables the automatic collapsing and sets the content warning as the post title. It doesn't affect any other content filtering you may set up." - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "Disable intelligent shortening" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post." - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "Attach the link title" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "If activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content." - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Create a new contact for every unknown OStatus user from whom you receive a message." - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "Default group for OStatus contacts" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "Your legacy GNU Social account" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done." - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "Repair OStatus subscriptions" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "Email/Mailbox setup" - -#: mod/settings.php:700 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." - -#: mod/settings.php:701 -msgid "Last successful email check:" -msgstr "Last successful email check:" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "IMAP server name:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "Security:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "Email login name:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "Email password:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "Reply-to address:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "Send public posts to all email contacts:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "Action after import:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "Mark as seen" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "Move to folder" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "Move to folder:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Unable to find your profile. Please contact your admin." - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "Account types:" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "Personal Page subtypes" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "Community forum subtypes" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Personal Page" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "Account for a personal profile." - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Organisation Page" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account for an organisation that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "News Page" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Community Forum" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "Account for community discussions." - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Standard" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Soapbox" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Public forum" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "Automatically approves all contact requests." - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "Love-all" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "Private forum [Experimental]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "Requires manual approval of contact requests." - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Allow this OpenID to login to this account." - -#: mod/settings.php:822 -msgid "Publish your profile in your local site directory?" -msgstr "Publish your profile in your local site directory?" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:643 #, php-format msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system" -#: mod/settings.php:828 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." -msgstr "Your profile will also be published in the global Friendica directories (e.g. %s)." +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." +msgstr "If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today." -#: mod/settings.php:834 +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "Your WebFinger address or profile URL:" + +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "My identity address: '%s' or '%s'" +msgid "%s knows you" +msgstr "%s knows you" -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "Account Settings" +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Add a personal note:" -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "Password change" +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Authorise application connection" -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "New password:" +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Return to your app and insert this security code:" -#: mod/settings.php:874 +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Please login to continue." + +#: mod/api.php:124 msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon." - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Confirm new password:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "Leave password fields blank unless changing" - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "Current password:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "Current password to confirm change" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "Delete OpenID URL" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "Basic information" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "Full name:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "Email address:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "Time zone:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "Language:" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Set the language of your Friendica interface and emails sent to you." - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "Posting location:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "Use browser location:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "Security and privacy" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum friend requests per day:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "May prevent spam or abuse registrations" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" -msgstr "Allow your profile to be searchable globally?" - -#: mod/settings.php:894 -msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." -msgstr "Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not." - -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Hide your contact/friend list from viewers of your profile?" - -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." -msgstr "A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list." - -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Hide profile details from anonymous viewers?" - -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies may still be accessible by other means." - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "Make public posts unlisted" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers." - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "Make all posted pictures accessible" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though." - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "Allow friends to post to my wall?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "Allow friends to tag my post?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "Your contacts can add additional tags to your posts." - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "Allow unknown people to send me private messages?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica network users may send you private messages even if they are not in your contact list." - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum private messages per day from unknown people:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "Default post permissions" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "Expiration settings" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "Automatically expire posts after this many days:" - -#: mod/settings.php:909 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Posts will not expire if empty; expired posts will be deleted" - -#: mod/settings.php:910 -msgid "Expire posts" -msgstr "Expire posts" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "If activated, posts and comments will expire." - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "Expire personal notes" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "If activated, personal notes on your profile page will expire." - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "Expire starred posts" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "Starring posts keeps them from being expired. That behaviour is overwritten by this setting." - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "Expire photos" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "If activated, photos will expire." - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "Only expire posts by others" - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "If activated, your own posts never expire. Than the settings above are only valid for posts you received." - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "Notification" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "Send notification email when:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "Receiving an introduction" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "My introductions are confirmed" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "Someone writes on my wall" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "A follow up comment is posted" - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "receiving a private message" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "Receiving a friend suggestion" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "Tagged in a post" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "Poked in a post" - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "Activate desktop notifications" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "Show desktop pop-up on new notifications" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "Text-only notification emails" - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "Receive text only emails without HTML " - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "Show detailled notifications" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "Advanced account types" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "Change behaviour of this account for special situations" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "Import Contacts" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "Upload File" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "Recent relocation" - -#: mod/settings.php:947 -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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" - -#: mod/settings.php:948 -msgid "Resend relocate message to contacts" -msgstr "Resend relocation message to contacts" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "Contact suggestion ignored." - -#: mod/suggest.php:67 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No suggestions available. If this is a new site, please try again in 24 hours." - -#: mod/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "Do you really want to delete this suggestion?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "Ignore/Hide" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "Friend suggestions" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "Tag(s) removed" - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "Remove Item tag" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "Select a tag to remove: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "Remove" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Do you want to authorise this application to access your posts and contacts and create new posts for you?" + +#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "No" + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Or did you try to upload an empty file?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "File exceeds size limit of %s" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "File upload failed." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "Unable to locate original post." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Empty post discarded." + +#: mod/item.php:710 +msgid "Post updated." +msgstr "Post updated." + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "Item wasn't stored." + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "Item couldn't be fetched." + +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Item not found." + +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "Do you really want to delete this item?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." @@ -2986,96 +2910,471 @@ msgid "" "select \"Export account\"" msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." -msgstr "You aren't following this contact." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "User not found." -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "Unfollowing is currently not supported by your network." +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "View" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "Contact unfollowed" +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Previous" -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "Disconnect/Unfollow" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Next" -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "No videos selected" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "today" -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "View video" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "month" -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Recent videos" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "week" -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Upload new videos" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "day" -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "List" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "User not found" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "calendar" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Item not found" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Edit post" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Save" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "web link" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Insert video link" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "video link" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "audio link" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Create new event" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Event details" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Event starts:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Required" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "Adjust for viewer's time zone" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Location:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Title:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Share this event" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Basic" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Advanced" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Permissions" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "Contact could not be added." + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "diaspora* support isn't enabled. Contact can't be added." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Tags:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Contact photos" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Upload" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Files" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Personal notes" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Photo Albums" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Recent photos" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Upload new photos" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "everybody" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Contact information unavailable" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Album not found." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "Album successfully deleted" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "Album was empty." + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:583 +msgid "a photo" +msgstr "a photo" + +#: mod/photos.php:583 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Number of daily wall messages for %s exceeded. Message failed." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s was tagged in %2$s by %3$s" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Unable to check your home location." +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "Image upload didn't complete, please try again" -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "No recipient." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "Image file is missing" -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Server can't accept new file upload at this time, please contact your administrator" -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "Invalid request." +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "Image file is empty." -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "No photos selected" -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Or did you try to upload an empty file?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Upload photos" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "File exceeds size limit of %s" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "New album name: " -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "File upload failed." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "or select existing album:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "Wall photos" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "Do not show a status post for this upload" + +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Show to groups" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Show to contacts" + +#: mod/photos.php:1042 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Do you really want to delete this photo album and all its photos?" + +#: mod/photos.php:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Delete album" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Edit album" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "Drop album" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Show newest first" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Show oldest first" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "View photo" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission denied. Access to this item may be restricted." + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "Photo not available" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "Do you really want to delete this photo?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Delete photo" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "View photo" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Edit photo" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "Delete photo" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Use as profile photo" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "Private photo" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "View full size" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[Select tags to remove]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "New album name" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Caption" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Add Tag" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Example: @bob, @jojo@example.com, #California, #camping" + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "Do not rotate" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Rotate right (CW)" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Rotate left (CCW)" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "I like this (toggle)" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "I don't like this (toggle)" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "This is me" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Comment" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Map" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "You must be logged in to use addons. " + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Delete this item?" + +#: src/App/Page.php:298 +msgid "toggle mobile" +msgstr "Toggle mobile" #: src/App/Authentication.php:210 src/App/Authentication.php:262 msgid "Login failed." msgstr "Login failed." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "The error message was:" msgstr "The error message was:" @@ -3092,850 +3391,114 @@ msgstr "Welcome %s" msgid "Please upload a profile photo." msgstr "Please upload a profile photo." -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "Welcome back %s" - -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "You must be logged in to use addons. " - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Delete this item?" - -#: src/App/Page.php:298 -msgid "toggle mobile" -msgstr "Toggle mobile" - -#: src/App/Router.php:209 +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Method not allowed for this module. Allowed method(s): %s" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Page not found" -#: src/App.php:326 -msgid "No system theme config value set." -msgstr "No system theme configuration value set." +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "There are no tables on MyISAM or InnoDB with the Antelope file format." -#: src/BaseModule.php:150 +#: src/Database/DBStructure.php:93 +#, php-format 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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d occurred during database update:\n%s\n" -#: src/Console/ArchiveContact.php:105 +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Errors encountered performing database changes: " + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:300 #, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Could not find any unarchived contact entry for this URL (%s)" +msgid "%s: Database update" +msgstr "%s: Database update" -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "The contact entries have been archived" - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Database/DBStructure.php:600 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Could not find any contact entry for this URL (%s)" +msgid "%s: updating %s table." +msgstr "%s: updating %s table." -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "The contact has been blocked from the node" - -#: src/Console/PostUpdate.php:87 +#: src/Database/Database.php:659 src/Database/Database.php:762 #, php-format -msgid "Post update version number has been set to %s." -msgstr "Post update version number has been set to %s." +msgid "Database error %d \"%s\" at \"%s\"" +msgstr "" -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Check for pending update actions." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Done." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Execute pending post updates." - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "All pending post updates are done." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Enter new password: " - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Enter user name: " - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "Enter user nickname: " - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Enter user email address: " - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Enter a language (optional): " - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "User is not pending." - -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Type \"yes\" to delete %s" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "Later posts" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "Earlier posts" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "Frequently" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "Hourly" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "Twice daily" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "Daily" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "Weekly" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "Monthly" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "Email" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "diaspora*" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" -msgstr "Discourse" - -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "diaspora* connector" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "GNU Social Connector" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" -msgstr "%s (via %s)" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "General" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Photo location" - -#: src/Content/Feature.php:98 +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map." +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "" -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "Export public calendar" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." +msgstr "" -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "Ability for visitors to download the public calendar" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" +msgstr "" -#: src/Content/Feature.php:100 -msgid "Trending Tags" -msgstr "Trending Tags" +#: src/Core/Update.php:215 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s failed. See error logs." -#: src/Content/Feature.php:100 +#: src/Core/Update.php:280 +#, php-format msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Show a community page widget with a list of the most popular tags in recent public posts." +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "Post composition" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "Auto-mention forums" - -#: src/Content/Feature.php:106 +#: src/Core/Update.php:286 +#, php-format msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." +"The error message is\n" +"[pre]%s[/pre]" +msgstr "The error message is\n[pre]%s[/pre]" -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" -msgstr "Explicit mentions" +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "[Friendica Notify] Database update" -#: src/Content/Feature.php:107 +#: src/Core/Update.php:320 +#, php-format msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Add explicit mentions to comment box for manual control over who gets mentioned in replies." - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "Network sidebar" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "Archives" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "Ability to select posts by date ranges" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" -msgstr "Protocol Filter" - -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Enable widget to display Network posts only from selected protocols" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "Network tabs" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "Network new tab" - -#: src/Content/Feature.php:120 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Enable tab to display only new network posts (last 12 hours)" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "Network shared links tab" - -#: src/Content/Feature.php:121 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Enable tab to display only network posts with links in them" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "Post/Comment tools" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "Post categories" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "Add categories to your posts" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "Advanced profiles" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "List forums" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Show visitors of public community forums at the advanced profile page" - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "Tag cloud" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Provides a personal tag cloud on your profile page" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "Display membership date" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "Display membership date in profile" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "Forums" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "External link to forum" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "Show more..." - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "Nothing new here" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "Go back" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "Clear notifications" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "Logout" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "End this session" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "Login" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "Sign in" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "Status" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "My posts and conversations" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "Profile" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "My profile page" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "My photos" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "Videos" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "My videos" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "My events" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "Personal notes" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "My personal notes" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "Home" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "Home page" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "Sign up now >>" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "Create account" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "Help" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "Help and documentation" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "Apps" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "Addon applications, utilities, games" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "Search" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "Search site content" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "Full text" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "Tags" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "Contacts" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "Community" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "Conversations on this and other servers" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "Events and calendar" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "Directory" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "People directory" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "Information" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "Information about this Friendica instance" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "Terms of Service" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "Terms of Service for this Friendica instance" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "Network" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "My friends' conversations" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "Introductions" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "Friend requests" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "Notifications" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "See all notifications" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "Mark all system notifications seen" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "Private messages" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "Inbox" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "Outbox" - -#: src/Content/Nav.php:274 -msgid "Accounts" -msgstr "Accounts" - -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "Manage other pages" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "Settings" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "Account settings" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "Manage/Edit friends and contacts" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "Admin" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "Site setup and configuration" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "Navigation" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "Site map" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "Embedding disabled" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "Embedded content" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "prev" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "last" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "Image/Photo" - -#: src/Content/Text/BBCode.php:1047 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "Reveal/hide" - -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1 wrote:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "Encrypted content" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "Invalid source protocol" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "Invalid link protocol" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "Loading more entries..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "The end" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "Follow" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "Export" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "Export calendar as ical" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "Export calendar as csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "No contacts" - -#: src/Content/Widget/ContactBlock.php:104 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "View contacts" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "Remove term" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "Saved searches" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Trending Tags (last %d hour)" -msgstr[1] "Trending tags (last %d hours)" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "More Trending Tags" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "Add new contact" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "Enter address or web location" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Example: jo@example.com, http://example.com/jo" - -#: src/Content/Widget.php:72 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation available" -msgstr[1] "%d invitations available" - -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "Find people" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "Enter name or interest" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Examples: Robert Morgenstein, fishing" - -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "Find" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "Similar interests" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "Random profile" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "Invite friends" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "Global directory" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "Local directory" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Groups" - -#: src/Content/Widget.php:220 -msgid "Everyone" -msgstr "Everyone" - -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "Following" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "Mutual friends" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "Relationships" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "All contacts" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "Protocols" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "All Protocols" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "Saved Folders" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "Everything" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "Categories" - -#: src/Content/Widget.php:449 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact in common" -msgstr[1] "%d contacts in common" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s." #: src/Core/ACL.php:155 msgid "Yourself" msgstr "Yourself" +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "Followers" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "Mutuals" + #: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Post to email" @@ -3973,409 +3536,409 @@ msgstr "Except to:" msgid "Connectors" msgstr "Connectors" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "Please see the file \"INSTALL.txt\"." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Could not find a command line version of PHP in the web server PATH." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" -msgstr "If your server doesn't have a command line version of PHP installed, you won't be able to run background processing. See 'Setup the worker'" +msgstr "" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version." -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "Found PHP version: " -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "This is required for message delivery to work." -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "Generate encryption keys" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache web server mod-rewrite module is required but not installed." -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Error: PDO or MySQLi PHP module required but not installed." -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Error: MySQL driver for PDO is not installed." -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "PDO or MySQLi PHP module" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "Error, XML PHP module required but not installed." -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "XML PHP module" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "libCurl PHP module" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: libCURL PHP module required but not installed." -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "GD graphics PHP module" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP module" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "Error: openssl PHP module required but not installed." -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "mb_string PHP module" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: mb_string PHP module required but not installed." -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "iconv PHP module" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "Error: iconv PHP module required but not installed." -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "POSIX PHP module" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "Error: POSIX PHP module required but not installed." -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "JSON PHP module" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "Error: JSON PHP module is required but not installed." -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" msgstr "File Information PHP module" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "Error: File Information PHP module required but not installed." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server but is unable to do so." -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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 "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can." -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder." -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions." -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" msgstr "config/local.config.php is writable" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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 "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 directory." -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory." -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains." -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "view/smarty3 is writeable" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." msgstr "URL rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess." -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" msgstr "Error message from Curl while fetching" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "URL rewrite is working" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extension is not installed" -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick supports GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "Database already in use." -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "Could not connect to database." -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "Monday" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "Tuesday" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "Wednesday" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "Thursday" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "Friday" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "Saturday" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "Sunday" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "January" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "February" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "March" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "April" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "May" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "June" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "July" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "August" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "September" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "October" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "November" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "December" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "Mon" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "Tue" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "Wed" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "Thu" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "Fri" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "Sat" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "Sun" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "Aug" @@ -4383,15 +3946,15 @@ msgstr "Aug" msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "Dec" @@ -4443,39 +4006,6 @@ msgstr "rebuff" msgid "rebuffed" msgstr "rebuffed" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s failed. See error logs." - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "The error message is\n[pre]%s[/pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "[Friendica Notify] Database update" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s." - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Error decoding account file" @@ -4508,41 +4038,405 @@ msgstr "User profile creation error" msgid "Done. You can now login with your username and password" msgstr "Done. You can now login with your username and password" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "There are no tables on MyISAM or InnoDB with the Antelope file format." +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Legacy module file not found: %s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(no subject)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nError %d occurred during database update:\n%s\n" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "This message was sent to you by %s, a member of the Friendica social network." -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "Errors encountered performing database changes: " - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" -msgstr "%s: Database update" +msgid "You may visit them online at %s" +msgstr "You may visit them online at %s" -#: src/Database/DBStructure.php:546 +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages." + +#: src/Object/EMail/ItemCCEMail.php:46 #, php-format -msgid "%s: updating %s table." -msgstr "%s: updating %s table." +msgid "%s posted an update." +msgstr "%s posted an update." -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "This entry was edited" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Private message" + +#: src/Object/Post.php:213 +msgid "pinned item" +msgstr "pinned item" + +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "Delete locally" + +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "Delete globally" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "Remove locally" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "Save to folder" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "I will attend" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "I will not attend" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "I might attend" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "Ignore thread" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "Unignore thread" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "Toggle ignore status" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "pin" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "unpin" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "toggle pin status" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "pinned" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "Add star" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "Remove star" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "Toggle star status" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "Starred" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "Add tag" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "Like" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "Dislike" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Share this" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "Share" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "%s (Received %s)" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "Comment this item on your system" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "remote comment" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "Pushed" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "Pulled" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "to" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "via" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "Wall-to-wall" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall:" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "Reply to %s" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "More" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "Notifier task is pending" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "Delivery to remote servers is pending" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "Delivery to remote servers is underway" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "Delivery to remote servers is mostly done" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "Delivery to remote servers is done" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comment" +msgstr[1] "%d comments" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "Show more" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "Show fewer" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comment" +msgstr[1] "comments" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Could not find any unarchived contact entry for this URL (%s)" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "The contact entries have been archived" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Could not find any contact entry for this URL (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "The contact has been blocked from the node" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "Enter new password: " + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "Enter user name: " + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "Enter user nickname: " + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "Enter user email address: " + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "Enter a language (optional): " + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "User is not pending." + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Type \"yes\" to delete %s" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Post update version number has been set to %s." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Check for pending update actions." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Done." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Execute pending post updates." + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "All pending post updates are done." + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Home town:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "Marital Status:" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "With:" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "Since:" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Sexual preference:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Political views:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Religious views:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Likes:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Title/Description:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Summary" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Music:" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Books, literature, poetry:" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Television:" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Film, dance, culture, entertainment" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interests:" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Love/Romance:" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Work/Employment:" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "School/Education:" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Contact information and other social networks:" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "No system theme configuration value set." + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "Friend suggestion" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "Friend/Contact request" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "New follower" @@ -4587,3262 +4481,260 @@ msgstr "%s may attending %s's event" msgid "%s is now friends with %s" msgstr "%s is now friends with %s" -#: src/LegacyModule.php:49 +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Network notifications" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "System notifications" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Personal notifications" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Home notifications" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Legacy module file not found: %s" +msgid "No more %s notifications." +msgstr "No more %s notifications." -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" -msgstr "Unfollow" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Show unread" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "Drop contact" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Show all" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "You must be logged in to show this page." + +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Notifications" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Show ignored requests." + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Hide ignored requests" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "Notification type:" + +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" +msgstr "Suggested by:" + +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 #: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 msgid "Approve" msgstr "Approve" -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "Organisation" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Says they know me:" -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "News" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "Shall your connection be in both directions or not?" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "Connect URL missing." - -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." - -#: src/Model/Contact.php:2336 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "This site is not configured to allow communications with other networks." - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No compatible communication protocols or feeds were discovered." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "The profile address specified does not provide adequate information." - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "An author or name was not found." - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "No browser URL could be matched to this address." - -#: src/Model/Contact.php:2359 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Unable to match @-style identity address with a known protocol or email contact." - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "Use mailto: in front of address to force email check." - -#: src/Model/Contact.php:2366 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "The profile address specified belongs to a network which has been disabled on this site." - -#: src/Model/Contact.php:2371 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Limited profile: This person will be unable to receive direct/private messages from you." - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "Unable to retrieve contact information." - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "Starts:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "Finishes:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "All-day" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "Sep" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "No events to display" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "Edit event" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "Duplicate event" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "Delete event" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "Link to source" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "Show map" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "Hide map" - -#: src/Model/Event.php:1042 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "%s's birthday" -msgstr "%s's birthday" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "Happy Birthday, %s!" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "Item filed" - -#: src/Model/Group.php:92 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 "A deleted group with this name has been 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." +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed." -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Default privacy group for new contacts" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Everybody" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "edit" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "add" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Edit group" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Contacts not in any group" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Create new group" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "Group name: " - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Edit groups" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "activity" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "comment" -msgstr[1] "comments" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "post" - -#: src/Model/Item.php:3576 +#: src/Module/Notifications/Introductions.php:127 #, php-format -msgid "Content warning: %s" -msgstr "Content warning: %s" +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "bytes" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Friend" -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "View on separate page" +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Subscriber" -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "view on separate page" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[no subject]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "Edit profile" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "Change profile photo" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "Homepage:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 msgid "About:" msgstr "About:" -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "Unfollow" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Atom feed" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 msgid "Network:" msgstr "Network:" -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "g A l F d" +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "No introductions." -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "F d" +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" +msgstr "A Decentralized Social Network" -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[today]" +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Logged out." -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "Birthday reminders" +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Invalid code, please try again." -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "Birthdays this week:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[No description]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "Event reminders" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "Upcoming events the next 7 days:" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s welcomes %2$s" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Database storage failed to update %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Database storage failed to insert data" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Filesystem storage failed to create \"%s\". Check you write permissions." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Filesystem storage failed to save data to \"%s\". Check your write permissions" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Storage base path" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Enter a valid existing folder" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "Login failed" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "Not enough information to authenticate" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "Password can't be empty" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "Empty passwords are not allowed." - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "The new password has been exposed in a public data dump; please choose another." - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "The password can't contain accentuated letters, white spaces or colons" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "Passwords do not match. Password unchanged." - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "An invitation is required." - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "Invitation could not be verified." - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "Invalid OpenID URL" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "Please enter the required information." - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values." - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "Username should be at least %s character." -msgstr[1] "Username should be at least %s characters." - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "Username should be at most %s character." -msgstr[1] "Username should be at most %s characters." - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "That doesn't appear to be your full (i.e first and last) name." - -#: src/Model/User.php:701 -msgid "Your email domain is not among those allowed on this site." -msgstr "Your email domain is not allowed on this site." - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "Not a valid email address." - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "The nickname was blocked from registration by the nodes admin." - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "Cannot use that email." - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Your nickname can only contain a-z, 0-9 and _." - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "Nickname is already registered. Please choose another." - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "SERIOUS ERROR: Generation of security keys failed." - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "An error occurred during registration. Please try again." - -#: src/Model/User.php:806 -msgid "An error occurred creating your default profile. Please try again." -msgstr "An error occurred creating your default profile. Please try again." - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "An error occurred creating your self-contact. Please try again." - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "Friends" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "An error occurred while creating your default contact group. Please try again." - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\tDear %1$s,\n\t\t\tThe administrator of %2$s has set up an account for you." - -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1$s\n\t\tLogin Name:\t\t%2$s\n\t\tPassword:\t\t%3$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n\n\t\tThank you and welcome to %4$s." - -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "Registration details for %s" - -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%4$s\n\t\t\tPassword:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "Registration at %s" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account has been created.\n\t\t\t" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%1$s\n\t\t\tPassword:\t\t%5$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n\n\t\t\tThank you and welcome to %2$s." - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "Addon not found." - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "Addon %s disabled." - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "Addon %s enabled." - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "Disable" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "Enable" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "Administration" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Addons" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "Toggle" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "Author: " - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "Maintainer: " - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "Addon %s failed to install." - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Reload active addons" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact unblocked" -msgstr[1] "%s contacts unblocked" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Remote contact block-list" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "This page allows you to prevent any message from a remote contact to reach your node." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Block Remote Contact" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "select all" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "select none" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "Unblock" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "No remote contact is blocked from this node." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Blocked remote contacts" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Block new remote contact" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Photo" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Reason" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s total blocked contact" -msgstr[1] "%s total blocked contacts" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "URL of the remote contact to block." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Reason for blocking" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Server domain pattern added to block-list." - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "Site block-list updated." - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "Blocked server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "Reason for the block" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "Delete server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "Check to delete this entry from the block-list" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "Server domain pattern block-list" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "This page can be used to define a block-list of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it." - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "Add new entry to block-list" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "Server Domain Pattern" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "The domain pattern of the new server to add to the block list. Do not include the protocol." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "Block reason" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "The reason why you blocked this server domain pattern." - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "Add entry" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "Save changes to the block-list" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "Current entries in the block-list" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "Delete entry from block-list" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "Delete entry from block-list?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Update has been marked successful" - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Database structure update %s was successfully applied." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Executing of database structure update %s failed with error: %s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Executing %s failed with error: %s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was successfully applied." - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s did not return a status. Unknown if it succeeded." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "There was no additional update function %s that needed to be called." - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "No failed updates." - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "Check database structure" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "Failed updates" - -#: src/Module/Admin/DBSync.php:116 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "This does not include updates prior to 1139, which did not return a status." - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "Mark success (if update was manually applied)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "Attempt to execute this update step automatically" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Lock feature %s" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Manage additional features" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "Other" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "unknown" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of." - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Federation statistics" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Currently this node is aware of %d nodes with %d registered users from the following platforms:" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Item marked for deletion." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Delete item" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Delete" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "GUID of item to be deleted." - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "Item Guid" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "The logfile '%s' is not writeable. No logging possible" - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "Log settings updated." - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "PHP log currently enabled." - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "PHP log currently disabled." - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "Logs" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "Clear" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "Enable debugging" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Log file" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Must be writable by web server and relative to your Friendica top-level directory." - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "Log level" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "PHP logging" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them." - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Error trying to open %1$s log file.\\r\\n
Check to see if file %1$s exist and is readable." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Couldn't open %1$s log file.\\r\\n
Check if file %1$s is readable." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "View logs" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Inspect Deferred Worker Queue" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed." - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Inspect Worker Queue" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Job Parameters" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Created" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Priority" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Can not parse base URL. Must have at least ://" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "Invalid storage backend settings." - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "Site settings updated." - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "No special theme for mobile devices" - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "No community page for local users" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "No community page" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "Public postings from users of this site" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "Public postings from the federated network" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "Public postings from local users and the federated network" - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "Disabled" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "Users" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "Users, global contacts" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "Users, Global Contacts/fallback" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "One month" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "Three months" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "Half a year" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "One a year" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "Multi user instance" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "Closed" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "Requires approval" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "Open" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "No SSL policy, links will track page SSL state" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "Force all links to use SSL" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Self-signed certificate, use SSL for local links only (discouraged)" - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "Don't check" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "check for stable version updates" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "check for development version updates" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "none" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "Direct contacts" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "Contacts of contacts" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "Database (legacy)" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Site" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "Republish users to directory" - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "Join this Friendica Node Today" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "File upload" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "Policies" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "Auto-discovered contact directory" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "Performance" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "Worker" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "Message relay" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "Relocate Instance" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Warning! Advanced function. Could make this server unreachable." - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "Site name" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "Sender email" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "The email address your server shall use to send notification emails from." - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "Email Banner/Logo" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "Shortcut icon" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "Link to an icon that will be used for browsers." - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "Touch icon" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link to an icon that will be used for tablets and mobiles." - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "Additional Info" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "For public servers: You can add additional information here that will be listed at %s/servers." - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "System language" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "System theme" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Default system theme - may be over-ridden by user profiles - Change default theme settings" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "Mobile system theme" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "Theme for mobile devices" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "SSL link policy" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determines whether generated links should be forced to use SSL" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "Force SSL" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "Hide help entry from navigation menu" - -#: src/Module/Admin/Site.php:632 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL." - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "Single user instance" - -#: src/Module/Admin/Site.php:633 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Make this instance multi-user or single-user for the named user" - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "File storage backend" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you don't do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure." - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "Maximum image size" - -#: src/Module/Admin/Site.php:637 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "Maximum image length" - -#: src/Module/Admin/Site.php:638 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "JPEG image quality" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "Registration policy" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "Maximum daily registrations" - -#: src/Module/Admin/Site.php:642 -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 "If open registration is permitted, this sets the maximum number of new registrations per day. This setting has no effect for registrations by approval." - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "Registration text" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Will be displayed prominently on the registration page. You may use BBCode here." - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "Forbidden Nicknames" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142." - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "Accounts abandoned after so many days" - -#: src/Module/Admin/Site.php:645 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "Allowed friend domains" - -#: src/Module/Admin/Site.php:646 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "Allowed email domains" - -#: src/Module/Admin/Site.php:647 -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 "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "No OEmbed rich content" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below." - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "Allowed OEmbed domains" - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Comma separated list of domains from where OEmbed content is allowed. Wildcards are possible." - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "Block public" - -#: src/Module/Admin/Site.php:650 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "Mandatory directory listing" - -#: src/Module/Admin/Site.php:651 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Force all profiles on this site to be listed in the site directory." - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Enabling this may violate privacy laws like the GDPR" - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "Global directory URL" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "Private posts by default for new users" - -#: src/Module/Admin/Site.php:653 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Set default post permissions for all new members to the default privacy group rather than public." - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "Don't include post content in email notifications" - -#: src/Module/Admin/Site.php:654 -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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disallow public access to addons listed in the apps menu." - -#: src/Module/Admin/Site.php:655 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Checking this box will restrict addons listed in the apps menu to members only." - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "Don't embed private images in posts" - -#: src/Module/Admin/Site.php:656 -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 "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." - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "Explicit Content" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page." - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "Allow users to set \"Remote self\"" - -#: src/Module/Admin/Site.php:658 -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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "Block multiple registrations" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Disallow users to sign up for additional accounts." - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "Disable OpenID" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "Disable OpenID support for registration and logins." - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "No full name check" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Allow users to register without a space between the first name and the last name in their full name." - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "Community pages for visitors" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Community pages that should be available for visitors. Local users always see both pages." - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "Posts per user on community page" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Maximum number of posts per user on the community page. (Not valid for \"Global Community\")" - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "Disable OStatus support" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed." - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus support can only be enabled if threading is enabled." - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "diaspora* support can't be enabled because Friendica was installed into a sub directory." - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "Enable diaspora* support" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Provide built-in diaspora* network compatibility." - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "Only allow Friendica contacts" - -#: src/Module/Admin/Site.php:669 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled." - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "Verify SSL" - -#: src/Module/Admin/Site.php:670 -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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "Proxy user" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "Network timeout" - -#: src/Module/Admin/Site.php:673 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "Maximum load average" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "Maximum system load before delivery and poll processes are deferred - default %d." - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum load average (frontend)" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximum system load before the frontend quits service (default 50)." - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "Minimal memory" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)." - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "Maximum table size for optimization" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Maximum table size (in MB) for automatic optimization. Enter -1 to disable it." - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "Minimum level of fragmentation" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)." - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "Periodical check of global contacts" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers." - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "Discover followers/followings from global contacts" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines." - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "Days between enquiry" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Number of days after which a server is required check contacts." - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "Discover contacts from other servers" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"." - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "Time-frame for fetching global contacts" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers." - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "Search the local directory" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated." - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "Publish server information" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "Check upstream version" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview." - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "Suppress tags" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Suppress listed hashtags at the end of posts." - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "Clean database" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Remove old remote items, orphaned database records and old content from some other helper tables." - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "Lifespan of remote items" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "If the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour." - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "Lifespan of unclaimed items" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "If the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0." - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "Lifespan of raw conversation data" - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days." - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "Path to item cache" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "The item caches buffers generated bbcode and external images." - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "Cache duration in seconds" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)" - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "Maximum numbers of comments per post" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "How many comments should be shown for each post? (Default 100)" - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "Temp path" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path." - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "Disable picture proxy" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth." - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "Only search in tags" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "On large systems the text search can slow down the system significantly." - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "New base URL" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Change base url for this server. Sends relocate message to all Friendica and diaspora* contacts of all users." - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "RINO Encryption" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "Encryption layer between nodes." - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "Enabled" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "Maximum number of parallel workers" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d." - -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "Don't use \"proc_open\" with the worker" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab." - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "Enable fast-lane" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "Enable frontend worker" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. Only enable this option if you cannot utilize cron/scheduled jobs on your server." - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "Subscribe to relay" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Receive public posts from the specified relay. Post will be included in searches, subscribed tags and on the global community page." - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "Relay server" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Address of the relay server where public posts should be send to. For example https://relay.diasp.org" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "Direct relay transfer" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Enables direct transfer to other servers without using a relay server." - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "Relay scope" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received." - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "all" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "tags" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "Server tags" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Comma separated list of tags for the \"tags\" subscription." - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "Allow user tags" - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "If enabled, the tags from the saved searches will be used for the \"tags\" subscription in addition to the \"relay_server_tags\"." - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "Start relocation" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s" - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear." - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear at the standard output and logfile." - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "The worker process has never been executed. Please check your database structure!" - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings." - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your configuration from .htconfig.php. See the configuration help page for help with the transition." - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "Friendica's configuration is now stored in config/local.config.php; please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition." - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help." - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')." - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')." - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "The system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "The current system.basepath '%s' is wrong and the config file '%s' isn't used." - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "The current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "Standard account" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "Automatic follower account" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "Public forum account" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "Automatic friend account" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "Blog account" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "Private forum account" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "Message queues" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "Server Settings" - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Summary" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "Registered users" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "Pending registrations" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "Version" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "Active addons" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "Theme settings updated." - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "Theme %s disabled." - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Theme %s successfully enabled." - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "Theme %s failed to install." - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "Screenshot" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "Theme selection" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "Unknown theme." - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Reload active themes" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "No themes found on the system. They should be placed in %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Unsupported]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "The Terms of Service settings have been updated." - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "Display Terms of Service" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page." - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "Display Privacy Statement" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "Show information needed to operate the node according to EU-GDPR." - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "Privacy Statement Preview" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "Terms of Service" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or lower." - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s user blocked" -msgstr[1] "%s users blocked" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s user unblocked" -msgstr[1] "%s users unblocked" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "You can't remove yourself" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s user deleted" -msgstr[1] "%s users deleted" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s user approved" -msgstr[1] "%s users approved" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s registration revoked" -msgstr[1] "%s registrations revoked" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "User \"%s\" deleted" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "User \"%s\" blocked" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "User \"%s\" unblocked" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Account approved." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "Registration revoked" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Private Forum" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "Relay" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Registration date" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Last login" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "Last public item" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "Type" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Add user" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "User registrations awaiting confirmation" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "User awaiting permanent deletion" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Request date" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "No registrations." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Note from the user" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Deny" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "User blocked" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Site admin" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Account expired" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "New user" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "Permanent deletion" - -#: src/Module/Admin/Users.php:267 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: src/Module/Admin/Users.php:268 -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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Name of the new user." - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Nickname" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Nickname of the new user." - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "Email address of the new user." - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "No friends to display." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "No installed applications." - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Applications" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Item was not found." - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "A managed account cannot access the administration pages. Please log in as administrator." - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Overview" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Configuration" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "Additional features" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "Database" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "DB updates" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Inspect deferred workers" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Inspect worker queue" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Tools" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Contact block-list" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Server block-list" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Diagnostics" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "PHP info" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "Probe address" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "Check WebFinger" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "Item source" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "Babel" - -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "Addon features" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "User registrations awaiting confirmation" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "Profile Details" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Only you can see this." - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Tips for New Members" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "People search - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "Forum search - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Account" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 #: src/Module/Settings/TwoFactor/Index.php:105 msgid "Two-factor authentication" msgstr "Two-factor authentication" -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Display" - -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" -msgstr "Manage Accounts" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Connected apps" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "Export personal data" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Remove account" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "This page is missing a URL parameter." - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "The post was created" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "Contact settings applied." - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "Contact update failed." - -#: src/Module/Contact/Advanced.php:113 +#: src/Module/Security/TwoFactor/Verify.php:81 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working." +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

" -#: src/Module/Contact/Advanced.php:114 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "No mirroring" - -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "Mirror as forwarded posting" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "Mirror as my own posting" - -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "Return to contact editor" - -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "Re-fetch contact data." - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "Remote self" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "Mirror postings from this contact:" - -#: src/Module/Contact/Advanced.php:148 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "This will cause Friendica to repost new entries from this contact." - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "Account nickname:" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tag name - overrides name/nickname:" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "Account URL:" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" -msgstr "Account URL alias" - -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "Friend request URL:" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "Friend confirm URL:" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "Notification endpoint URL" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL:" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "New photo from this URL:" - -#: src/Module/Contact.php:88 +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contact edited." -msgstr[1] "%d contacts edited." +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Don’t have your phone? Enter a two-factor recovery code" -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "Could not access contact record." +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Please enter a code from your authentication app" -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "Contact updated." +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "Verify code and complete login" -#: src/Module/Contact.php:385 -msgid "Contact not found" -msgstr "Contact not found" - -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "Contact has been blocked" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "Contact has been unblocked" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "Contact has been ignored" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "Contact has been unignored" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "Contact has been archived" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "Contact has been unarchived" - -#: src/Module/Contact.php:448 -msgid "Drop contact" -msgstr "Drop contact" - -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "Do you really want to delete this contact?" - -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "Contact has been removed." - -#: src/Module/Contact.php:495 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format -msgid "You are mutual friends with %s" -msgstr "You are mutual friends with %s" +msgid "Remaining recovery codes: %d" +msgstr "Remaining recovery codes: %d" -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "You are sharing with %s" +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Two-factor recovery" -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s is sharing with you" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "Private communications are not available for this contact." - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "Never" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(Update was successful)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(Update was not successful)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "Suggest friends" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Network type: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "Communications lost with this contact!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "Fetch further information for feeds" - -#: src/Module/Contact.php:553 +#: src/Module/Security/TwoFactor/Recovery.php:84 msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags." +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" +msgstr "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

" -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "Fetch information" +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Please enter a recovery code" -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "Fetch keywords" +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Submit recovery code and complete login" -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "Fetch information and keywords" +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Create a new account" -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "Personal note" +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Sign up now >>" -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "Notification and privacy " +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "Your OpenID: " -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "Contact" - -#: src/Module/Contact.php:585 -msgid "Their personal note" -msgstr "Their personal note" - -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "Edit contact notes" - -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visit %s's profile [%s]" - -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "Block/Unblock contact" - -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "Ignore contact" - -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "View conversations" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "Last update:" - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "Update public posts" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "Update now" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "Unignore" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "Currently blocked" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "Currently ignored" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "Currently archived" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "Awaiting connection acknowledgement " - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 -msgid "Hide this contact from others" -msgstr "Hide this contact from others" - -#: src/Module/Contact.php:613 +#: src/Module/Security/Login.php:129 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Replies/Likes to your public posts may still be visible" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Please enter your username and password to add the OpenID to your existing account." -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "Notification for new posts" +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "Or login with OpenID: " -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Send notification for every new post from this contact" +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Logout" -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "Blacklisted keywords" +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Login" -#: src/Module/Contact.php:616 +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Password: " + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Remember me" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Website Terms of Service" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "Terms of service" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Website Privacy Policy" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "Privacy policy" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "OpenID protocol error. No ID returned" + +#: src/Module/Security/OpenID.php:92 msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Account not found. Please login to your existing account to add the OpenID." -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "Actions" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "Show all contacts" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "Pending" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "Only show pending contacts" - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "Blocked" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "Only show blocked contacts" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "Ignored" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "Only show ignored contacts" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "Archived" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "Only show archived contacts" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "Hidden" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "Only show hidden contacts" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "Organise your contact groups" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "Search your contacts" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 -#, php-format -msgid "Results for: %s" -msgstr "Results for: %s" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "Archive" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "Unarchive" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "Batch actions" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "Conversations started by this contact" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "Posts and Comments" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "View all contacts" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "View all common friends" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "Advanced contact settings" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "Mutual friendship" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "is a fan of yours" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "I follow them" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "Pending outgoing contact request" - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "Pending incoming contact request" - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "Edit contact" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "Toggle blocked status" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "Toggle ignored status" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "Toggle archive status" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "Delete contact" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Local community" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Posts from local users on this server" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Global community" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Posts from users of the whole federated network" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "No results." - -#: src/Module/Conversation/Community.php:125 +#: src/Module/Security/OpenID.php:94 msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users." +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Account not found. Please register a new account or login to your existing account to add the OpenID." -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "Community option not available." - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Not available." - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Credits" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!" - -#: src/Module/Debug/Babel.php:49 -msgid "Source input" -msgstr "Source input" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "Item Body" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "Item Tags" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "Source input (diaspora* format)" - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "Source input (Markdown)" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "Raw HTML input" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "HTML input" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "HTML::toBBCode => BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "HTML::toPlaintext (compact)" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "Source text" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "You must be logged in to use this module" - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "Source URL" +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7873,94 +4765,549 @@ msgstr "Converted local time: %s" msgid "Please select your timezone:" msgstr "Please select your time zone:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "Source input" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "BBCode::convert" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::convert" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "Item Body" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "Item Tags" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "Source input (diaspora* format)" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "Source input (Markdown)" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "Markdown::convert" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "Raw HTML input" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "HTML input" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "HTML::toBBCode => BBCode::convert" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "HTML::toBBCode => BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "HTML::toMarkdown" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "HTML::toPlaintext (compact)" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "Source text" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "BBCode" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "diaspora*" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "Only logged in users are permitted to perform a probing." +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "You must be logged in to use this module" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "Source URL" + #: src/Module/Debug/Probe.php:54 msgid "Lookup address" msgstr "Lookup address" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Manage Identities and Pages" - -#: src/Module/Delegation.php:148 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Accounts that I manage or own." - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Select identity:" - -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "No entries (entries may be hidden)." - -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "Find on this site" - -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "Results for:" - -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "Site directory" - -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" -msgstr "File-tag %s saved to item" +msgid "%s's timeline" +msgstr "%s's timeline" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "- select -" - -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "Installed addons/apps:" - -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "No installed addons/apps" - -#: src/Module/Friendica.php:68 +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 #, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Read about the Terms of Service of this node." +msgid "%s's posts" +msgstr "%s's posts" -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "On this server the following remote servers are blocked." +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "%s's comments" -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "No contacts." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Follower (%s)" +msgstr[1] "Followers (%s)" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Following (%s)" +msgstr[1] "Following (%s)" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Mutual friend (%s)" +msgstr[1] "Mutual friends (%s)" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Contact (%s)" +msgstr[1] "Contacts (%s)" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "All contacts" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "Following" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "Mutual friends" + +#: src/Module/Profile/Profile.php:135 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s." +"You're currently viewing your profile as %s Cancel" +msgstr "" -#: src/Module/Friendica.php:98 +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Member since:" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Birthday:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Age: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d year old" +msgstr[1] "%d years old" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Homepage:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Forums:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "View profile as:" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Edit profile" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "Only parent users can create additional accounts." + +#: src/Module/Register.php:101 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Please visit Friendi.ca to learn more about the Friendica project." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Bug reports and issues: please visit" +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "the bugtracker at github" +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Your OpenID (optional): " -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Include your profile in member directory?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Note for the admin" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Leave a message for the admin, why you want to join this node." + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Membership on this site is by invitation only." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "Your invitation code: " + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Join this Friendica Node Today" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Your full name: " + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Your Email Address: (Initial information will be send there; so this must be an existing address.)" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "Please repeat your e-mail address:" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Leave empty for an auto generated password." + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Choose a nickname: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Import an existing Friendica profile to this node." + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Terms of Service" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Note: This node explicitly contains adult content" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Parent password:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Please enter the password of the parent account to authorise this request." + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "Password doesn't match." + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "Please enter your password." + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "You have entered too much information." + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "Please enter the identical mail address in the second field." + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "The additional account was created." + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registration successful. Please check your email for further instructions." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Registration successful." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Your registration cannot be processed." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "You have to leave a request note for the admin." + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Your registration is pending approval by the site administrator." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Bad Request" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Unauthorized" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Forbidden" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Not found" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "Internal Server Error" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "Service Unavailable" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "The server cannot process the request due to an apparent client error." + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "Authentication is required and has failed or has not yet been provided." + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account." + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "The requested resource could not be found but may be available in the future." + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "An unexpected condition was encountered and no more specific message is available." + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later." + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "Go back" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Welcome to %s" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "No friends to display." #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." @@ -7979,114 +5326,16 @@ msgstr "Suggest friends" msgid "Suggest a friend for %s" msgstr "Suggest a friend for %s" -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "Group created." +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Credits" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "Could not create group." - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "Group not found." - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "Group name changed." - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "Unknown group." - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Contact is deleted." - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Unable to add contact to group." - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Contact successfully added to group." - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Unable to remove contact from group." - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Contact removed from group." - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "Unknown group command." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Bad request." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Save group" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filter" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Create a group of contacts/friends." - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "Group removed." - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "Unable to remove group." - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "Delete group" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "Edit group name" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "Members" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "Remove contact from group" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "Click on a contact to add or remove it." - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "Add contact to group" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Help:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Welcome to %s" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "No profile" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "Method not allowed." +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8100,10 +5349,30 @@ msgstr "System check" msgid "Check again" msgstr "Check again" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "No SSL policy, links will track page SSL state" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "Force all links to use SSL" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Self-signed certificate, use SSL for local links only (discouraged)" + #: src/Module/Install.php:208 msgid "Base settings" msgstr "Base settings" +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "SSL link policy" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determines whether generated links should be forced to use SSL" + #: src/Module/Install.php:215 msgid "Host name" msgstr "Host name" @@ -8232,6 +5501,811 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel." +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- select -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Remote privacy information not available." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Visible to:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Manage Identities and Pages" + +#: src/Module/Delegation.php:148 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "Local community" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "Posts from local users on this server" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "Global community" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "Posts from users of the whole federated network" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "No results." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users." + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "Community option not available." + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "Not available." + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Welcome to Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "New Member Checklist" + +#: src/Module/Welcome.php:46 +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 "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." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Getting started" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica walk-through" + +#: src/Module/Welcome.php:50 +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 "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." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Go to your settings" + +#: src/Module/Welcome.php:54 +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 "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." + +#: src/Module/Welcome.php:55 +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 "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." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Upload profile photo" + +#: src/Module/Welcome.php:59 +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 "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." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Edit your profile" + +#: src/Module/Welcome.php:61 +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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Profile keywords" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships." + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Connecting" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Importing emails" + +#: src/Module/Welcome.php:68 +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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Go to your contacts page" + +#: src/Module/Welcome.php:70 +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 "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." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Go to your site's directory" + +#: src/Module/Welcome.php:72 +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 "The directory 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 when requested." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Finding new people" + +#: src/Module/Welcome.php:74 +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 "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." + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Groups" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Group your contacts" + +#: src/Module/Welcome.php:78 +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 "Once you have made some friends, organise 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." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Why aren't my posts public?" + +#: src/Module/Welcome.php:81 +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 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." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Getting help" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Go to the help section" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Our help pages may be consulted for detail on other program features and resources." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "This page is missing a URL parameter." + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "The post was created" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Information" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Overview" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Federation statistics" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Configuration" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Site" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Users" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Addons" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Theme selection" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Additional features" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "Database" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "DB updates" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "Inspect deferred workers" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "Inspect worker queue" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Tools" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Contact block-list" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Server block-list" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Delete item" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Logs" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "View logs" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Diagnostics" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "PHP info" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "Probe address" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "Check WebFinger" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "Item source" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "Babel" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Admin" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "Addon features" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "User registrations awaiting confirmation" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact edited." +msgstr[1] "%d contacts edited." + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "Could not access contact record." + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "Follow" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "Unfollow" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "Contact not found" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "Contact has been archived" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "Contact has been unarchived" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Drop contact" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "Do you really want to delete this contact?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "Contact has been removed." + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Never" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags." + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Disabled" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Fetch information" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "Fetch keywords" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Contact" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Their personal note" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "View conversations" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Last update:" + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Update public posts" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Update now" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Unblock" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Unignore" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "Currently archived" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "Awaiting connection acknowledgement " + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Actions" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "All contacts" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Show all contacts" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "Pending" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "Only show pending contacts" + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Blocked" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Only show blocked contacts" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Ignored" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Only show ignored contacts" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Archived" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Only show archived contacts" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Hidden" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Only show hidden contacts" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "Organise your contact groups" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Search your contacts" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Results for: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Archive" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Unarchive" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Batch actions" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "Conversations started by this contact" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "Posts and Comments" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Profile Details" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "View all contacts" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "View all common friends" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Advanced contact settings" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Mutual friendship" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "is a fan of yours" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "I follow them" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "Pending outgoing contact request" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "Pending incoming contact request" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Re-fetch contact data." + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Toggle archive status" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Delete contact" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication." + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "This information is required for communication and is passed on to the nodes of the communication partners and stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts." + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners." + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "Privacy Statement" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Help:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "Method not allowed." + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "Total invitation limit exceeded" @@ -8336,6 +6410,1844 @@ msgid "" "important, please visit http://friendi.ca" msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca" +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "People search - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Forum search - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Disable" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Enable" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Theme %s disabled." + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Theme %s successfully enabled." + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "Theme %s failed to install." + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Screenshot" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Administration" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Toggle" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Author: " + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Maintainer: " + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "Unknown theme." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Reload active themes" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "No themes found on the system. They should be placed in %1$s" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Unsupported]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Lock feature %s" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Manage additional features" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s user blocked" +msgstr[1] "%s users blocked" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s user unblocked" +msgstr[1] "%s users unblocked" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "You can't remove yourself" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s user deleted" +msgstr[1] "%s users deleted" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s user approved" +msgstr[1] "%s users approved" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s registration revoked" +msgstr[1] "%s registrations revoked" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "User \"%s\" deleted" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "User \"%s\" blocked" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "User \"%s\" unblocked" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Account approved." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "Registration revoked" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "Private Forum" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "Relay" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "Email" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Registration date" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Last login" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "Last public item" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "Type" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Add user" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "select all" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "User registrations awaiting confirmation" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "User awaiting permanent deletion" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Request date" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "No registrations." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Note from the user" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Deny" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "User blocked" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Site admin" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Account expired" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "New user" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "Permanent deletion" + +#: src/Module/Admin/Users.php:267 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Admin/Users.php:268 +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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Name of the new user." + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Nickname" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Nickname of the new user." + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "Email address of the new user." + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "Inspect Deferred Worker Queue" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed." + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "Inspect Worker Queue" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install." + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "Job Parameters" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Created" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "Priority" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "Update has been marked successful" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Database structure update %s was successfully applied." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Executing of database structure update %s failed with error: %s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Executing %s failed with error: %s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was successfully applied." + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s did not return a status. Unknown if it succeeded." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "There was no additional update function %s that needed to be called." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "No failed updates." + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Check database structure" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Failed updates" + +#: src/Module/Admin/DBSync.php:117 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "This does not include updates prior to 1139, which did not return a status." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Mark success (if update was manually applied)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Attempt to execute this update step automatically" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Other" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "unknown" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of." + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Currently this node is aware of %d nodes with %d registered users from the following platforms:" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Error trying to open %1$s log file.\\r\\n
Check to see if file %1$s exist and is readable." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Couldn't open %1$s log file.\\r\\n
Check if file %1$s is readable." + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "The logfile '%s' is not writeable. No logging possible" + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "PHP log currently enabled." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "PHP log currently disabled." + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "Clear" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Enable debugging" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Log file" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Must be writable by web server and relative to your Friendica top-level directory." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Log level" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP logging" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them." + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "Can not parse base URL. Must have at least ://" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "Invalid storage backend settings." + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "No special theme for mobile devices" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "No community page for local users" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "No community page" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Public postings from users of this site" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "Public postings from the federated network" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "Public postings from local users and the federated network" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Multi user instance" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Closed" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Requires approval" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Open" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "Don't check" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "check for stable version updates" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "check for development version updates" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "none" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "Database (legacy)" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Republish users to directory" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "File upload" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Policies" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Auto-discovered contact directory" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Performance" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "Message relay" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "Relocate Instance" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "Warning! Advanced function. Could make this server unreachable." + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Site name" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "Sender email" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "The email address your server shall use to send notification emails from." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "Email Banner/Logo" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Shortcut icon" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Link to an icon that will be used for browsers." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Touch icon" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link to an icon that will be used for tablets and mobiles." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Additional Info" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "For public servers: You can add additional information here that will be listed at %s/servers." + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "System language" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "System theme" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "Default system theme - may be over-ridden by user profiles - Change default theme settings" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Mobile system theme" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Theme for mobile devices" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "Force SSL" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Hide help entry from navigation menu" + +#: src/Module/Admin/Site.php:613 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Single user instance" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Make this instance multi-user or single-user for the named user" + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "File storage backend" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you don't do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure." + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Maximum image size" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Maximum image length" + +#: src/Module/Admin/Site.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "JPEG image quality" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Registration policy" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maximum daily registrations" + +#: src/Module/Admin/Site.php:623 +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 "If open registration is permitted, this sets the maximum number of new registrations per day. This setting has no effect for registrations by approval." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Registration text" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Will be displayed prominently on the registration page. You may use BBCode here." + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "Forbidden Nicknames" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142." + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Accounts abandoned after so many days" + +#: src/Module/Admin/Site.php:626 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Allowed friend domains" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Allowed email domains" + +#: src/Module/Admin/Site.php:628 +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 "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "No OEmbed rich content" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below." + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "Allowed OEmbed domains" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "Comma separated list of domains from where OEmbed content is allowed. Wildcards are possible." + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Block public" + +#: src/Module/Admin/Site.php:631 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Mandatory directory listing" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Force all profiles on this site to be listed in the site directory." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Enabling this may violate privacy laws like the GDPR" + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "Global directory URL" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Private posts by default for new users" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Set default post permissions for all new members to the default privacy group rather than public." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "Don't include post content in email notifications" + +#: src/Module/Admin/Site.php:635 +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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disallow public access to addons listed in the apps menu." + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Checking this box will restrict addons listed in the apps menu to members only." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "Don't embed private images in posts" + +#: src/Module/Admin/Site.php:637 +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 "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." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "Explicit Content" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page." + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Allow users to set \"Remote self\"" + +#: src/Module/Admin/Site.php:639 +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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Block multiple registrations" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Disallow users to sign up for additional accounts." + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "Disable OpenID" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "Disable OpenID support for registration and logins." + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "No full name check" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "Allow users to register without a space between the first name and the last name in their full name." + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "Community pages for visitors" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Community pages that should be available for visitors. Local users always see both pages." + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Posts per user on community page" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "Maximum number of posts per user on the community page. (Not valid for \"Global Community\")" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "Disable OStatus support" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed." + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus support can only be enabled if threading is enabled." + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "diaspora* support can't be enabled because Friendica was installed into a sub directory." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Enable diaspora* support" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provide built-in diaspora* network compatibility." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Only allow Friendica contacts" + +#: src/Module/Admin/Site.php:650 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "Verify SSL" + +#: src/Module/Admin/Site.php:651 +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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Proxy user" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Network timeout" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Maximum load average" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "Maximum system load before delivery and poll processes are deferred - default %d." + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum load average (frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximum system load before the frontend quits service (default 50)." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Minimal memory" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)." + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Days between enquiry" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Number of days after which a server is required check contacts." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Discover contacts from other servers" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Search the local directory" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Publish server information" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Check upstream version" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Suppress tags" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Suppress listed hashtags at the end of posts." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "Clean database" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Remove old remote items, orphaned database records and old content from some other helper tables." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "Lifespan of remote items" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "If the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour." + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "Lifespan of unclaimed items" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "If the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0." + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "Lifespan of raw conversation data" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days." + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Path to item cache" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "The item caches buffers generated bbcode and external images." + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Cache duration in seconds" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)" + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Maximum numbers of comments per post" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "How many comments should be shown for each post? (Default 100)" + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Temp path" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path." + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Disable picture proxy" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth." + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Only search in tags" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "On large systems the text search can slow down the system significantly." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "New base URL" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Change base url for this server. Sends relocate message to all Friendica and diaspora* contacts of all users." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "RINO Encryption" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Encryption layer between nodes." + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "Enabled" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Maximum number of parallel workers" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d." + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "Don't use \"proc_open\" with the worker" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab." + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Enable fast-lane" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Enable frontend worker" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. Only enable this option if you cannot utilize cron/scheduled jobs on your server." + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "Subscribe to relay" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "Receive public posts from the specified relay. Post will be included in searches, subscribed tags and on the global community page." + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "Relay server" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "Address of the relay server where public posts should be send to. For example https://relay.diasp.org" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "Direct relay transfer" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Enables direct transfer to other servers without using a relay server." + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "Relay scope" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received." + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "all" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "tags" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "Server tags" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Comma separated list of tags for the \"tags\" subscription." + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "Allow user tags" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "If enabled, the tags from the saved searches will be used for the \"tags\" subscription in addition to the \"relay_server_tags\"." + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "Start relocation" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear." + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear at the standard output and logfile." + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "The worker process has never been executed. Please check your database structure!" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your configuration from .htconfig.php. See the configuration help page for help with the transition." + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "Friendica's configuration is now stored in config/local.config.php; please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition." + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help." + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')." + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')." + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "The system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "The current system.basepath '%s' is wrong and the config file '%s' isn't used." + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "The current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Standard account" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "Automatic follower account" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Public forum account" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "Automatic friend account" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Blog account" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Private forum account" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Message queues" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "Server Settings" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Registered users" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Pending registrations" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Version" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "Active addons" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Display Terms of Service" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Display Privacy Statement" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "Show information needed to operate the node according to EU-GDPR." + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Privacy Statement Preview" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "Terms of Service" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or lower." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "Server domain pattern added to block-list." + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "Blocked server domain pattern" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "Delete server domain pattern" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Check to delete this entry from the block-list" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "Server domain pattern block-list" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Add new entry to block-list" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "Server Domain Pattern" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "The domain pattern of the new server to add to the block list. Do not include the protocol." + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Block reason" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "The reason why you blocked this server domain pattern." + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Add entry" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Save changes to the block-list" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Current entries in the block-list" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Delete entry from block-list" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Delete entry from block-list?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact unblocked" +msgstr[1] "%s contacts unblocked" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Remote contact block-list" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "This page allows you to prevent any message from a remote contact to reach your node." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Block Remote Contact" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "select none" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "No remote contact is blocked from this node." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Blocked remote contacts" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Block new remote contact" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Photo" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "Reason" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s total blocked contact" +msgstr[1] "%s total blocked contacts" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "URL of the remote contact to block." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "Reason for blocking" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "Item Guid" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Item marked for deletion." + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Delete" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "GUID of item to be deleted." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "Addon not found." + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Addon %s disabled." + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Addon %s enabled." + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Addon %s failed to install." + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Reload active addons" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "No entries (entries may be hidden)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Find on this site" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Results for:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Site directory" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Item was not found." + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "Please enter a post body." @@ -8370,98 +8282,55 @@ msgid "" "your device" msgstr "Location services are disabled. Please check the website's permissions on your device" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "Sorry, the system is currently down for maintenance." +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "Installed addons/apps:" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "A Decentralized Social Network" +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "No installed addons/apps" -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Show ignored requests." +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Read about the Terms of Service of this node." -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Hide ignored requests" +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "On this server the following remote servers are blocked." -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Notification type:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "Suggested by:" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Says they know me:" - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Shall your connection be in both directions or not?" - -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed." +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s." -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Please visit Friendi.ca to learn more about the Friendica project." -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Friend" +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Bug reports and issues: please visit" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Subscriber" +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "the bugtracker at github" -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "No introductions." +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "No more %s notifications." +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Only you can see this." -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "You must be logged in to show this page." - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Network notifications" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "System notifications" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Personal notifications" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Home notifications" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Show unread" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Show all" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Tips for New Members" #: src/Module/Photo.php:87 #, php-format @@ -8473,242 +8342,11 @@ msgstr "The Photo with id %s is not available." msgid "Invalid photo with id %s." msgstr "Invalid photo with id %s." -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "User not found." - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "No contacts." - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Follower (%s)" -msgstr[1] "Followers (%s)" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Following (%s)" -msgstr[1] "Following (%s)" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "Mutual friend (%s)" -msgstr[1] "Mutual friends (%s)" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Contact (%s)" -msgstr[1] "Contacts (%s)" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "All contacts" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "Member since:" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "j F" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "Birthday:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "Age: " - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%d year old" -msgstr[1] "%d years old" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "Forums:" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "View profile as:" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "%s's timeline" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "%s's posts" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "%s's comments" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Only parent users can create additional accounts." - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Your OpenID (optional): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Include your profile in member directory?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Note for the admin" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Leave a message for the admin, why you want to join this node." - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Membership on this site is by invitation only." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Your invitation code: " - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Your full name: " - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Your Email Address: (Initial information will be send there; so this must be an existing address.)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Please repeat your e-mail address:" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Leave empty for an auto generated password." - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Choose a nickname: " - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Import an existing Friendica profile to this node." - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Note: This node explicitly contains adult content" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "Parent password:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Please enter the password of the parent account to authorise this request." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "Password doesn't match." - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "Please enter your password." - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "You have entered too much information." - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "Please enter the identical mail address in the second field." - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "The additional account was created." - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registration successful. Please check your email for further instructions." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Registration successful." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Your registration cannot be processed." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "You have to leave a request note for the admin." - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Your registration is pending approval by the site administrator." - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" msgstr "The provided profile link doesn't seem to be valid" -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8716,465 +8354,387 @@ msgid "" " or %s directly on your system." msgstr "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system." -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." -msgstr "You must be logged in to use this module." +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Account" -#: src/Module/Search/Index.php:52 +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Display" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "Manage Accounts" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Connected apps" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Export personal data" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Remove account" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Could not create group." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Group not found." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "" + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Unknown group." + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "Contact is deleted." + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Unable to add contact to group." + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "Contact successfully added to group." + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Unable to remove contact from group." + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "Contact removed from group." + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Unknown group command." + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Bad request." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Save group" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "Filter" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Create a group of contacts/friends." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Group name: " + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Contacts not in any group" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Unable to remove group." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Delete group" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Edit group name" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Members" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Remove contact from group" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove it." + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "Add contact to group" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "Only logged in users are permitted to perform a search." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Only one search per minute is permitted for not logged in users." -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Search" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "Items tagged with: %s" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." -msgstr "Search term successfully saved." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "You must be logged in to use this module." -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." msgstr "Search term already saved." -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." -msgstr "Search term successfully removed." +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." +msgstr "" -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Create a new account" +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "No profile" -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Your OpenID: " +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." +msgstr "" -#: src/Module/Security/Login.php:129 +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "Poke, prod or do other things to somebody" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Choose what you wish to do:" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Make this post private" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Contact update failed." + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Please enter your username and password to add the OpenID to your existing account." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working." -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Or login with OpenID: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Password: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Remember me" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Forgot your password?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Website Terms of Service" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "Terms of service" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Website Privacy Policy" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "Privacy policy" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Logged out." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "OpenID protocol error. No ID returned" - -#: src/Module/Security/OpenID.php:92 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Account not found. Please login to your existing account to add the OpenID." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "No mirroring" + +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Mirror as forwarded posting" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Mirror as my own posting" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Return to contact editor" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Remote self" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Mirror postings from this contact:" + +#: src/Module/Contact/Advanced.php:146 msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Account not found. Please register a new account or login to your existing account to add the OpenID." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "This will cause Friendica to repost new entries from this contact." -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "Remaining recovery codes: %d" +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Account nickname:" -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "Invalid code, please try again." +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tag name - overrides name/nickname:" -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Two-factor recovery" +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "Account URL:" -#: src/Module/Security/TwoFactor/Recovery.php:84 -msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

" +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" +msgstr "Account URL alias" -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Don’t have your phone? Enter a two-factor recovery code" +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "Friend request URL:" -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Please enter a recovery code" +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "Friend confirm URL:" -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Submit recovery code and complete login" +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "Notification endpoint URL" -#: src/Module/Security/TwoFactor/Verify.php:81 -msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

" +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL:" -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Please enter a code from your authentication app" +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "New photo from this URL:" -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "Verify code and complete login" +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "No installed applications." -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Delegation successfully granted." +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Applications" -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "Parent user not found, unavailable or password doesn't match." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "Delegation successfully revoked." - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Delegated administrators can view but not change delegation permissions." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Delegate user not found." - -#: src/Module/Settings/Delegation.php:142 -msgid "No parent user" -msgstr "No parent user" - -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 -msgid "Parent User" -msgstr "Parent user" - -#: src/Module/Settings/Delegation.php:161 -msgid "Additional Accounts" -msgstr "Additional Accounts" - -#: src/Module/Settings/Delegation.php:162 -msgid "" -"Register additional accounts that are automatically connected to your " -"existing account so you can manage them from this account." -msgstr "Register additional accounts that are automatically connected to your existing account so you can manage them from this account." - -#: src/Module/Settings/Delegation.php:163 -msgid "Register an additional account" -msgstr "Register an additional account" - -#: src/Module/Settings/Delegation.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access." - -#: src/Module/Settings/Delegation.php:171 -msgid "Delegates" -msgstr "Delegates" - -#: src/Module/Settings/Delegation.php:173 -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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." - -#: src/Module/Settings/Delegation.php:174 -msgid "Existing Page Delegates" -msgstr "Existing page delegates" - -#: src/Module/Settings/Delegation.php:176 -msgid "Potential Delegates" -msgstr "Potential delegates" - -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "Add" - -#: src/Module/Settings/Delegation.php:180 -msgid "No entries." -msgstr "No entries." - -#: src/Module/Settings/Display.php:101 -msgid "The theme you chose isn't available." -msgstr "The chosen theme isn't available." - -#: src/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Unsupported)" - -#: src/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "Display Settings" - -#: src/Module/Settings/Display.php:183 -msgid "General Theme Settings" -msgstr "Themes" - -#: src/Module/Settings/Display.php:184 -msgid "Custom Theme Settings" -msgstr "Theme customisation" - -#: src/Module/Settings/Display.php:185 -msgid "Content Settings" -msgstr "Content/Layout" - -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Theme settings" - -#: src/Module/Settings/Display.php:187 -msgid "Calendar" -msgstr "Calendar" - -#: src/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "Display theme:" - -#: src/Module/Settings/Display.php:194 -msgid "Mobile Theme:" -msgstr "Mobile theme:" - -#: src/Module/Settings/Display.php:197 -msgid "Number of items to display per page:" -msgstr "Number of items displayed per page:" - -#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 -msgid "Maximum of 100 items" -msgstr "Maximum of 100 items" - -#: src/Module/Settings/Display.php:198 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Number of items displayed per page on mobile devices:" - -#: src/Module/Settings/Display.php:199 -msgid "Update browser every xx seconds" -msgstr "Update browser every so many seconds:" - -#: src/Module/Settings/Display.php:199 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum 10 seconds; to disable -1." - -#: src/Module/Settings/Display.php:200 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatic updates only at the top of the post stream pages" - -#: src/Module/Settings/Display.php:200 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." -msgstr "Auto update may add new posts at the top of the post stream pages. This can affect the scroll position and perturb normal reading if something happens anywhere else the top of the page." - -#: src/Module/Settings/Display.php:201 -msgid "Don't show emoticons" -msgstr "Don't show emoticons" - -#: src/Module/Settings/Display.php:201 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "Normally emoticons are replaced with matching symbols. This setting disables this behaviour." - -#: src/Module/Settings/Display.php:202 -msgid "Infinite scroll" -msgstr "Infinite scroll" - -#: src/Module/Settings/Display.php:202 -msgid "Automatic fetch new items when reaching the page end." -msgstr "Automatic fetch new items when reaching the page end." - -#: src/Module/Settings/Display.php:203 -msgid "Disable Smart Threading" -msgstr "Disable smart threading" - -#: src/Module/Settings/Display.php:203 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "Disable the automatic suppression of extraneous thread indentation." - -#: src/Module/Settings/Display.php:204 -msgid "Hide the Dislike feature" -msgstr "Hide the Dislike feature" - -#: src/Module/Settings/Display.php:204 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "Hides the Dislike button and Dislike reactions on posts and comments." - -#: src/Module/Settings/Display.php:206 -msgid "Beginning of week:" -msgstr "Week begins: " - -#: src/Module/Settings/Profile/Index.php:86 +#: src/Module/Settings/Profile/Index.php:85 msgid "Profile Name is required." msgstr "Profile name is required." -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "Profile updated." - -#: src/Module/Settings/Profile/Index.php:140 +#: src/Module/Settings/Profile/Index.php:137 msgid "Profile couldn't be updated." msgstr "Profile couldn't be updated." -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "Label:" msgstr "Label:" -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 msgid "Value:" msgstr "Value:" -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 msgid "Field Permissions" msgstr "Field Permissions" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 msgid "(click to open/close)" msgstr "(reveal/hide)" -#: src/Module/Settings/Profile/Index.php:211 +#: src/Module/Settings/Profile/Index.php:205 msgid "Add a new profile field" msgstr "Add a new profile field" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:235 msgid "Profile Actions" msgstr "Profile actions" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:236 msgid "Edit Profile Details" msgstr "Edit Profile Details" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:238 msgid "Change Profile Photo" msgstr "Change profile photo" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:243 msgid "Profile picture" msgstr "Profile picture" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:244 msgid "Location" msgstr "Location" -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 #: src/Util/Temporal.php:95 msgid "Miscellaneous" msgstr "Miscellaneous" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:246 msgid "Custom Profile Fields" msgstr "Custom Profile Fields" -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Upload profile photo" - -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:252 msgid "Display name:" msgstr "Display name:" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:255 msgid "Street Address:" msgstr "Street address:" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:256 msgid "Locality/City:" msgstr "Locality/City:" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:257 msgid "Region/State:" msgstr "Region/State:" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:258 msgid "Postal/Zip Code:" msgstr "Postcode:" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:259 msgid "Country:" msgstr "Country:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) address:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "The XMPP address will be propagated to your contacts so that they can follow you." -#: src/Module/Settings/Profile/Index.php:268 +#: src/Module/Settings/Profile/Index.php:262 msgid "Homepage URL:" msgstr "Homepage URL:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "Public Keywords:" msgstr "Public keywords:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "Used for suggesting potential friends, can be seen by others." -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "Private Keywords:" msgstr "Private keywords:" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "(Used for searching profiles, never shown to others)" msgstr "Used for searching profiles, never shown to others." -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:265 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9187,7 +8747,7 @@ msgstr "

Custom fields appear on your profile page.

\n\t #: src/Module/Settings/Profile/Photo/Crop.php:102 #: src/Module/Settings/Profile/Photo/Crop.php:118 #: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format msgid "Image size reduction [%s] failed." msgstr "Image size reduction [%s] failed." @@ -9227,115 +8787,111 @@ msgstr "Use image as it is." msgid "Missing uploaded image." msgstr "Missing uploaded image." -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "Image uploaded successfully." - -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Profile Picture Settings" msgstr "Profile Picture Settings" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Current Profile Picture" msgstr "Current Profile Picture" -#: src/Module/Settings/Profile/Photo/Index.php:130 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Profile Picture" msgstr "Upload Profile Picture" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:129 msgid "Upload Picture:" msgstr "Upload Picture:" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "or" msgstr "or" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "skip this step" msgstr "skip this step" -#: src/Module/Settings/Profile/Photo/Index.php:140 +#: src/Module/Settings/Profile/Photo/Index.php:138 msgid "select a photo from your photo albums" msgstr "select a photo from your photo albums" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "Please enter your password to access this page." +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "Delegation successfully granted." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "App-specific password generation failed: The description is empty." +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "Parent user not found, unavailable or password doesn't match." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "Delegation successfully revoked." + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 msgid "" -"App-specific password generation failed: This description already exists." -msgstr "App-specific password generation failed: This description already exists." +"Delegated administrators can view but not change delegation permissions." +msgstr "Delegated administrators can view but not change delegation permissions." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "New app-specific password generated." +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "Delegate user not found." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "App-specific passwords successfully revoked." +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "No parent user" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "App-specific password successfully revoked." +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "Parent user" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Two-factor app-specific passwords" +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "Additional Accounts" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/Delegation.php:163 msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "Register additional accounts that are automatically connected to your existing account so you can manage them from this account." -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "Register an additional account" + +#: src/Module/Settings/Delegation.php:168 msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "Make sure to copy your new app-specific password now. You won’t be able to see it again!" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access." -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Description" +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "Delegates" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Last Used" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Revoke" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Revoke All" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/Delegation.php:174 msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it." +"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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "Generate new app-specific password" +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "Existing page delegates" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "Friendiqa on my Fairphone 2..." +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Potential delegates" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "Generate" +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "Add" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "No entries." #: src/Module/Settings/TwoFactor/Index.php:67 msgid "Two-factor authentication successfully disabled." @@ -9429,36 +8985,11 @@ msgstr "Manage app-specific passwords" msgid "Finish app configuration" msgstr "Finish app configuration" -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "New recovery codes successfully generated." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Two-factor recovery codes" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Generate new recovery codes" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Next: Verification" +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "Please enter your password to access this page." #: src/Module/Settings/TwoFactor/Verify.php:78 msgid "Two-factor authentication successfully activated." @@ -9505,6 +9036,215 @@ msgstr "

Or you can open the following URL in your mobile device:

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Generate new recovery codes" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Next: Verification" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "App-specific password generation failed: The description is empty." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "App-specific password generation failed: This description already exists." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "New app-specific password generated." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "App-specific passwords successfully revoked." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "App-specific password successfully revoked." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "Two-factor app-specific passwords" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Make sure to copy your new app-specific password now. You won’t be able to see it again!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "Description" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "Last Used" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "Revoke" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "Revoke All" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "Generate new app-specific password" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa on my Fairphone 2..." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "Generate" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "The chosen theme isn't available." + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Unsupported)" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Display Settings" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "Themes" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "Theme customisation" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "Content/Layout" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "Calendar" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "Display theme:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "Mobile theme:" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "Number of items displayed per page:" + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "Maximum of 100 items" + +#: src/Module/Settings/Display.php:198 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Number of items displayed per page on mobile devices:" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "Update browser every so many seconds:" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum 10 seconds; to disable -1." + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "Automatic updates only at the top of the post stream pages" + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "Auto update may add new posts at the top of the post stream pages. This can affect the scroll position and perturb normal reading if something happens anywhere else the top of the page." + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "Don't show emoticons" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "Normally emoticons are replaced with matching symbols. This setting disables this behaviour." + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "Infinite scroll" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "Automatic fetch new items when reaching the page end." + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "Disable smart threading" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "Disable the automatic suppression of extraneous thread indentation." + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "Hide the Dislike feature" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "Hides the Dislike button and Dislike reactions on posts and comments." + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "Week begins: " + #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "Export account" @@ -9536,574 +9276,31 @@ msgid "" " e.g. Mastodon." msgstr "Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Bad Request" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "Sorry, the system is currently down for maintenance." -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Unauthorized" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Forbidden" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Not found" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "Internal Server Error" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Service Unavailable" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "The server cannot process the request due to an apparent client error." - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Authentication is required and has failed or has not yet been provided." - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account." - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "The requested resource could not be found but may be available in the future." - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "An unexpected condition was encountered and no more specific message is available." - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later." - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication." - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "This information is required for communication and is passed on to the nodes of the communication partners and stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts." - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -"
account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners." - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "Privacy Statement" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Welcome to Friendica" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "New Member Checklist" - -#: src/Module/Welcome.php:46 -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 "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." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Getting started" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica walk-through" - -#: src/Module/Welcome.php:50 -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 "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." - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Go to your settings" - -#: src/Module/Welcome.php:54 -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 "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." - -#: src/Module/Welcome.php:55 -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 "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." - -#: src/Module/Welcome.php:59 -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 "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." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "Edit your profile" - -#: src/Module/Welcome.php:61 -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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Profile keywords" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships." - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Connecting" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "Importing emails" - -#: src/Module/Welcome.php:68 -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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Go to your contacts page" - -#: src/Module/Welcome.php:70 -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 "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." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Go to your site's directory" - -#: src/Module/Welcome.php:72 -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 "The directory 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 when requested." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Finding new people" - -#: src/Module/Welcome.php:74 -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 "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." - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Group your contacts" - -#: src/Module/Welcome.php:78 -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 "Once you have made some friends, organise 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." - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Why aren't my posts public?" - -#: src/Module/Welcome.php:81 -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 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." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Getting help" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Go to the help section" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Our help pages may be consulted for detail on other program features and resources." - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "This message was sent to you by %s, a member of the Friendica social network." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "You may visit them online at %s" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s posted an update." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "This entry was edited" - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "Private message" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "pinned item" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "Delete locally" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "Delete globally" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "Remove locally" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "Save to folder" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "I will attend" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "I will not attend" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "I might attend" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "Ignore thread" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "Unignore thread" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "Toggle ignore status" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "pin" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "unpin" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "toggle pin status" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "pinned" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "Add star" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "Remove star" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "Toggle star status" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "Starred" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "Add tag" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "Like" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "Dislike" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "Share this" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "Share" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "%s (Received %s)" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "Comment this item on your system" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "remote comment" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "Pushed" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "Pulled" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "to" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "via" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "Wall-to-wall" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "via wall-to-wall:" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "Reply to %s" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "More" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "Notifier task is pending" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "Delivery to remote servers is pending" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "Delivery to remote servers is underway" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "Delivery to remote servers is mostly done" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "Delivery to remote servers is done" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comment" -msgstr[1] "%d comments" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "Show more" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "Show fewer" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "Attachments:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s is now following %s." -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "following" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s stopped following %s." -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "stopped following" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Home town:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "Marital Status:" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "With:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Since:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Sexual preference:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Political views:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Religious views:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Likes:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Title/Description:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Music:" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Books, literature, poetry:" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Television:" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Film, dance, culture, entertainment" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interests:" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Love/Romance:" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Work/Employment:" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "School/Education:" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Contact information and other social networks:" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Friendica notification" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Attachments:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10124,6 +9321,10 @@ msgstr "%s Administrator" msgid "thanks" msgstr "thanks" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Friendica notification" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD or MM-DD" @@ -10190,230 +9391,1004 @@ msgstr "in %1$d %2$s" msgid "%1$d %2$s ago" msgstr "%1$d %2$s ago" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(no subject)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: Updating author-id and owner-id in item and thread table. " +msgid "Database storage failed to update %s" +msgstr "Database storage failed to update %s" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Database storage failed to insert data" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." -msgstr "%s: Updating post-type." +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "Filesystem storage failed to create \"%s\". Check you write permissions." -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "default" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Variations" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "Custom" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "Note" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Check image permissions that all everyone is allowed to see the image" - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "Select colour scheme" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "Copy or paste theme string" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "You can copy this string to share your theme with others. Pasting here applies the theme string" +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "Filesystem storage failed to save data to \"%s\". Check your write permissions" -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "Navigation bar background colour:" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Storage base path" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "Navigation bar icon colour:" - -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "Link colour:" - -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "Background colour:" - -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "Content background opacity" - -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "Background image:" - -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "Background image style" - -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "Login page background image" - -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "Login page background colour" - -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "Leave background image and colour empty for theme defaults" - -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" -msgstr "Skip to main content" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Top Banner" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Resize image to the width of the screen and show background colour below on long pages." +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Full screen" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Enter a valid existing folder" -#: view/theme/frio/php/Image.php:41 +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "activity" + +#: src/Model/Item.php:3339 +msgid "post" +msgstr "post" + +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "Content warning: %s" + +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "bytes" + +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "View on separate page" + +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "view on separate page" + +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "Link to source" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[no subject]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "Unfollow" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Drop contact" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Organisation" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "News" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Forum" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Connect URL missing." + +#: src/Model/Contact.php:2307 msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Resize image to fill entire screen, clipping either the right or the bottom." +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Single row mosaic" - -#: view/theme/frio/php/Image.php:42 +#: src/Model/Contact.php:2348 msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Resize image to repeat it on a single row, either vertical or horizontal." +"This site is not configured to allow communications with other networks." +msgstr "This site is not configured to allow communications with other networks." -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mosaic" +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No compatible communication protocols or feeds were discovered." -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Repeat image to fill the screen." +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "The profile address specified does not provide adequate information." -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "Guest" +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "An author or name was not found." -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "Visitor" +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "No browser URL could be matched to this address." -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Alignment" +#: src/Model/Contact.php:2371 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Unable to match @-style identity address with a known protocol or email contact." -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Left" +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: in front of address to force email check." -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Centre" +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "The profile address specified belongs to a network which has been disabled on this site." -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Colour scheme" +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Limited profile: This person will be unable to receive direct/private messages from you." -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Posts font size" +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "Unable to retrieve contact information." -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Text areas font size" +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Starts:" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Comma separated list of helper forums" +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Finishes:" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "don't show" +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "All-day" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "show" +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Sep" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Set style" +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "No events to display" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Community pages" +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, F j" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "Community profiles" +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Edit event" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Help or @NewHere ?" +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Duplicate event" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "Connect services" +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Delete event" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Find friends" +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D g:i A" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "Last users" +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "g:i A" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "Quick start" +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Show map" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Hide map" + +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "%s's birthday" + +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "Happy Birthday, %s!" + +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "Login failed" + +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "Not enough information to authenticate" + +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "Password can't be empty" + +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "Empty passwords are not allowed." + +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "The new password has been exposed in a public data dump; please choose another." + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "The password can't contain accentuated letters, white spaces or colons" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "Passwords do not match. Password unchanged." + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "An invitation is required." + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "Invitation could not be verified." + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "Invalid OpenID URL" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "Please enter the required information." + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values." + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Username should be at least %s character." +msgstr[1] "Username should be at least %s characters." + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Username should be at most %s character." +msgstr[1] "Username should be at most %s characters." + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "That doesn't appear to be your full (i.e first and last) name." + +#: src/Model/User.php:703 +msgid "Your email domain is not among those allowed on this site." +msgstr "Your email domain is not allowed on this site." + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "Not a valid email address." + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "The nickname was blocked from registration by the nodes admin." + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "Cannot use that email." + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Your nickname can only contain a-z, 0-9 and _." + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "Nickname is already registered. Please choose another." + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SERIOUS ERROR: Generation of security keys failed." + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "An error occurred during registration. Please try again." + +#: src/Model/User.php:808 +msgid "An error occurred creating your default profile. Please try again." +msgstr "An error occurred creating your default profile. Please try again." + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "An error occurred creating your self-contact. Please try again." + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Friends" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "An error occurred while creating your default contact group. Please try again." + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\tDear %1$s,\n\t\t\tThe administrator of %2$s has set up an account for you." + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1$s\n\t\tLogin Name:\t\t%2$s\n\t\tPassword:\t\t%3$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n\n\t\tThank you and welcome to %4$s." + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Registration details for %s" + +#: src/Model/User.php:1068 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%4$s\n\t\t\tPassword:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "Registration at %s" + +#: src/Model/User.php:1111 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account has been created.\n\t\t\t" + +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%1$s\n\t\t\tPassword:\t\t%5$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n\n\t\t\tThank you and welcome to %2$s." + +#: src/Model/Group.php:92 +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 "A deleted group with this name has been 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." + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Default privacy group for new contacts" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Everybody" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "edit" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "add" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Edit group" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Create new group" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Edit groups" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Change profile photo" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Atom feed" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[today]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Birthday reminders" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Birthdays this week:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[No description]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Event reminders" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "Upcoming events the next 7 days:" + +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s welcomes %2$s" + +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Add new contact" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Enter address or web location" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Example: jo@example.com, http://example.com/jo" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Connect" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation available" +msgstr[1] "%d invitations available" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "Everyone" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "Relationships" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "Protocols" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "All Protocols" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Saved Folders" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Everything" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Categories" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact in common" +msgstr[1] "%d contacts in common" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Archives" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "Frequently" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "Hourly" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "Twice daily" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "Daily" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "Weekly" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "Monthly" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "diaspora* connector" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "GNU Social Connector" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "%s (via %s)" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "General" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Photo location" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Trending Tags" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Show a community page widget with a list of the most popular tags in recent public posts." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Post composition" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Auto-mention forums" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Explicit mentions" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Add explicit mentions to comment box for manual control over who gets mentioned in replies." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Post/Comment tools" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Post categories" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Add categories to your posts" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Advanced profiles" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "List forums" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Show visitors of public community forums at the advanced profile page" + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Tag cloud" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Provides a personal tag cloud on your profile page" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Display membership date" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Display membership date in profile" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Nothing new here" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Clear notifications" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "End this session" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Sign in" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Personal notes" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "My personal notes" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Home" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Home page" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Create account" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Help and documentation" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Apps" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Addon applications, utilities, games" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "Search site content" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Full text" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Tags" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Community" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "Conversations on this and other servers" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Directory" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "People directory" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "Information about this Friendica instance" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "Terms of Service for this Friendica instance" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Introductions" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Friend requests" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "See all notifications" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Mark all system notifications seen" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Inbox" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Outbox" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "Accounts" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Manage other pages" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Site setup and configuration" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Navigation" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Site map" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Remove term" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Saved searches" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Export" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Export calendar as ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Export calendar as csv" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Trending Tags (last %d hour)" +msgstr[1] "Trending tags (last %d hours)" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "More Trending Tags" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "No contacts" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "View contacts" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "Later posts" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "Earlier posts" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Embedding disabled" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Embedded content" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "prev" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "last" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "Loading more entries..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "The end" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "Reveal/hide" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Image/Photo" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 wrote:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Encrypted content" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Invalid source protocol" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Invalid link protocol" + +#: src/BaseModule.php:150 +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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." diff --git a/view/lang/en-gb/strings.php b/view/lang/en-gb/strings.php index 9333e26a1b..9e27e4f1d6 100644 --- a/view/lang/en-gb/strings.php +++ b/view/lang/en-gb/strings.php @@ -6,16 +6,97 @@ function string_plural_select_en_gb($n){ return ($n != 1);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "Daily posting limit of %d post reached. The post was rejected.", - 1 => "Daily posting limit of %d posts are reached. This post was rejected.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "Weekly posting limit of %d post reached. The post was rejected.", - 1 => "Weekly posting limit of %d posts are reached. This post was rejected.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Monthly posting limit of %d posts are reached. The post was rejected."; -$a->strings["Profile Photos"] = "Profile photos"; +$a->strings["default"] = "default"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "Submit"; +$a->strings["Theme settings"] = "Theme settings"; +$a->strings["Variations"] = "Variations"; +$a->strings["Alignment"] = "Alignment"; +$a->strings["Left"] = "Left"; +$a->strings["Center"] = "Centre"; +$a->strings["Color scheme"] = "Colour scheme"; +$a->strings["Posts font size"] = "Posts font size"; +$a->strings["Textareas font size"] = "Text areas font size"; +$a->strings["Comma separated list of helper forums"] = "Comma separated list of helper forums"; +$a->strings["don't show"] = "don't show"; +$a->strings["show"] = "show"; +$a->strings["Set style"] = "Set style"; +$a->strings["Community Pages"] = "Community pages"; +$a->strings["Community Profiles"] = "Community profiles"; +$a->strings["Help or @NewHere ?"] = "Help or @NewHere ?"; +$a->strings["Connect Services"] = "Connect services"; +$a->strings["Find Friends"] = "Find friends"; +$a->strings["Last users"] = "Last users"; +$a->strings["Find People"] = "Find people"; +$a->strings["Enter name or interest"] = "Enter name or interest"; +$a->strings["Connect/Follow"] = "Connect/Follow"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; +$a->strings["Find"] = "Find"; +$a->strings["Friend Suggestions"] = "Friend suggestions"; +$a->strings["Similar Interests"] = "Similar interests"; +$a->strings["Random Profile"] = "Random profile"; +$a->strings["Invite Friends"] = "Invite friends"; +$a->strings["Global Directory"] = "Global directory"; +$a->strings["Local Directory"] = "Local directory"; +$a->strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "External link to forum"; +$a->strings["show more"] = "Show more..."; +$a->strings["Quick Start"] = "Quick start"; +$a->strings["Help"] = "Help"; +$a->strings["Custom"] = "Custom"; +$a->strings["Note"] = "Note"; +$a->strings["Check image permissions if all users are allowed to see the image"] = "Check image permissions that all everyone is allowed to see the image"; +$a->strings["Select color scheme"] = "Select colour scheme"; +$a->strings["Copy or paste schemestring"] = "Copy or paste theme string"; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "You can copy this string to share your theme with others. Pasting here applies the theme string"; +$a->strings["Navigation bar background color"] = "Navigation bar background colour:"; +$a->strings["Navigation bar icon color "] = "Navigation bar icon colour:"; +$a->strings["Link color"] = "Link colour:"; +$a->strings["Set the background color"] = "Background colour:"; +$a->strings["Content background opacity"] = "Content background opacity"; +$a->strings["Set the background image"] = "Background image:"; +$a->strings["Background image style"] = "Background image style"; +$a->strings["Login page background image"] = "Login page background image"; +$a->strings["Login page background color"] = "Login page background colour"; +$a->strings["Leave background image and color empty for theme defaults"] = "Leave background image and colour empty for theme defaults"; +$a->strings["Guest"] = "Guest"; +$a->strings["Visitor"] = "Visitor"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "My posts and conversations"; +$a->strings["Profile"] = "Profile"; +$a->strings["Your profile page"] = "My profile page"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "My photos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "My videos"; +$a->strings["Events"] = "Events"; +$a->strings["Your events"] = "My events"; +$a->strings["Network"] = "Network"; +$a->strings["Conversations from your friends"] = "My friends' conversations"; +$a->strings["Events and Calendar"] = "Events and calendar"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Private messages"; +$a->strings["Settings"] = "Settings"; +$a->strings["Account settings"] = "Account settings"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; +$a->strings["Follow Thread"] = "Follow thread"; +$a->strings["Skip to main content"] = "Skip to main content"; +$a->strings["Top Banner"] = "Top Banner"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Resize image to the width of the screen and show background colour below on long pages."; +$a->strings["Full screen"] = "Full screen"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Resize image to fill entire screen, clipping either the right or the bottom."; +$a->strings["Single row mosaic"] = "Single row mosaic"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Resize image to repeat it on a single row, either vertical or horizontal."; +$a->strings["Mosaic"] = "Mosaic"; +$a->strings["Repeat image to fill the screen."] = "Repeat image to fill the screen."; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Updating author-id and owner-id in item and thread table. "; +$a->strings["%s: Updating post-type."] = "%s: Updating post-type."; $a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s"; $a->strings["event"] = "event"; $a->strings["status"] = "status"; @@ -31,7 +112,6 @@ $a->strings["View in context"] = "View in context"; $a->strings["Please wait"] = "Please wait"; $a->strings["remove"] = "Remove"; $a->strings["Delete Selected Items"] = "Delete selected items"; -$a->strings["Follow Thread"] = "Follow thread"; $a->strings["View Status"] = "View status"; $a->strings["View Profile"] = "View profile"; $a->strings["View Photos"] = "View photos"; @@ -41,7 +121,6 @@ $a->strings["Send PM"] = "Send PM"; $a->strings["Block"] = "Block"; $a->strings["Ignore"] = "Ignore"; $a->strings["Poke"] = "Poke"; -$a->strings["Connect/Follow"] = "Connect/Follow"; $a->strings["%s likes this."] = "%s likes this."; $a->strings["%s doesn't like this."] = "%s doesn't like this."; $a->strings["%s attends."] = "%s attends."; @@ -89,7 +168,7 @@ $a->strings["clear location"] = "clear location"; $a->strings["Set title"] = "Set title"; $a->strings["Categories (comma-separated list)"] = "Categories (comma-separated list)"; $a->strings["Permission settings"] = "Permission settings"; -$a->strings["permissions"] = "permissions"; +$a->strings["permissions"] = "Permissions"; $a->strings["Public post"] = "Public post"; $a->strings["Preview"] = "Preview"; $a->strings["Cancel"] = "Cancel"; @@ -160,34 +239,34 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Y $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request."; -$a->strings["Item not found."] = "Item not found."; -$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; -$a->strings["Yes"] = "Yes"; -$a->strings["Permission denied."] = "Permission denied."; -$a->strings["Authorize application connection"] = "Authorise application connection"; -$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; -$a->strings["Please login to continue."] = "Please login to continue."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorise this application to access your posts and contacts and create new posts for you?"; -$a->strings["No"] = "No"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "Daily posting limit of %d post reached. The post was rejected.", + 1 => "Daily posting limit of %d posts are reached. This post was rejected.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "Weekly posting limit of %d post reached. The post was rejected.", + 1 => "Weekly posting limit of %d posts are reached. This post was rejected.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Monthly posting limit of %d posts are reached. The post was rejected."; +$a->strings["Profile Photos"] = "Profile photos"; $a->strings["Access denied."] = "Access denied."; -$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; -$a->strings["Events"] = "Events"; -$a->strings["View"] = "View"; -$a->strings["Previous"] = "Previous"; -$a->strings["Next"] = "Next"; -$a->strings["today"] = "today"; -$a->strings["month"] = "month"; -$a->strings["week"] = "week"; -$a->strings["day"] = "day"; -$a->strings["list"] = "List"; -$a->strings["User not found"] = "User not found"; -$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; -$a->strings["No exportable data found"] = "No exportable data found"; -$a->strings["calendar"] = "calendar"; -$a->strings["No contacts in common."] = "No contacts in common."; -$a->strings["Common Friends"] = "Common friends"; -$a->strings["Profile not found."] = "Profile not found."; +$a->strings["Bad Request."] = ""; $a->strings["Contact not found."] = "Contact not found."; +$a->strings["Permission denied."] = "Permission denied."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; +$a->strings["No recipient selected."] = "No recipient selected."; +$a->strings["Unable to check your home location."] = "Unable to check your home location."; +$a->strings["Message could not be sent."] = "Message could not be sent."; +$a->strings["Message collection failure."] = "Message collection failure."; +$a->strings["No recipient."] = "No recipient."; +$a->strings["Please enter a link URL:"] = "Please enter a link URL:"; +$a->strings["Send Private Message"] = "Send private message"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; +$a->strings["To:"] = "To:"; +$a->strings["Subject:"] = "Subject:"; +$a->strings["Your message:"] = "Your message:"; +$a->strings["Insert web link"] = "Insert web link"; +$a->strings["Profile not found."] = "Profile not found."; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved."; $a->strings["Response from remote site was not understood."] = "Response from remote site was not understood."; $a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: "; @@ -204,265 +283,21 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; $a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; $a->strings["[Name Withheld]"] = "[Name Withheld]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; -$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; -$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d required parameter was not found at the given location", - 1 => "%d required parameters were not found at the given location", -]; -$a->strings["Introduction complete."] = "Introduction complete."; -$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error."; -$a->strings["Profile unavailable."] = "Profile unavailable."; -$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today."; -$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; -$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; -$a->strings["Invalid profile URL."] = "Invalid profile URL."; -$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; -$a->strings["Blocked domain"] = "Blocked domain"; -$a->strings["Failed to update contact record."] = "Failed to update contact record."; -$a->strings["Your introduction has been sent."] = "Your introduction has been sent."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; -$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; -$a->strings["Confirm"] = "Confirm"; -$a->strings["Hide this contact"] = "Hide this contact"; -$a->strings["Welcome home %s."] = "Welcome home %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s."; $a->strings["Public access denied."] = "Public access denied."; -$a->strings["Friend/Connection Request"] = "Friend/Connection request"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."; -$a->strings["Your Webfinger address or profile URL:"] = "Your WebFinger address or profile URL:"; -$a->strings["Please answer the following:"] = "Please answer the following:"; -$a->strings["Submit Request"] = "Submit request"; -$a->strings["%s knows you"] = "%s knows you"; -$a->strings["Add a personal note:"] = "Add a personal note:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "The requested item doesn't exist or has been deleted."; -$a->strings["The feed for this item is unavailable."] = "The feed for this item is unavailable."; -$a->strings["Item not found"] = "Item not found"; -$a->strings["Edit post"] = "Edit post"; -$a->strings["Save"] = "Save"; -$a->strings["Insert web link"] = "Insert web link"; -$a->strings["web link"] = "web link"; -$a->strings["Insert video link"] = "Insert video link"; -$a->strings["video link"] = "video link"; -$a->strings["Insert audio link"] = "Insert audio link"; -$a->strings["audio link"] = "audio link"; -$a->strings["CC: email addresses"] = "CC: email addresses"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; -$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; -$a->strings["Event title and start time are required."] = "Event title and starting time are required."; -$a->strings["Create New Event"] = "Create new event"; -$a->strings["Event details"] = "Event details"; -$a->strings["Starting date and Title are required."] = "Starting date and title are required."; -$a->strings["Event Starts:"] = "Event starts:"; -$a->strings["Required"] = "Required"; -$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; -$a->strings["Event Finishes:"] = "Event finishes:"; -$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; -$a->strings["Description:"] = "Description:"; -$a->strings["Location:"] = "Location:"; -$a->strings["Title:"] = "Title:"; -$a->strings["Share this event"] = "Share this event"; -$a->strings["Submit"] = "Submit"; -$a->strings["Basic"] = "Basic"; -$a->strings["Advanced"] = "Advanced"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Failed to remove event"] = "Failed to remove event"; -$a->strings["Event removed"] = "Event removed"; -$a->strings["Photos"] = "Photos"; -$a->strings["Contact Photos"] = "Contact photos"; -$a->strings["Upload"] = "Upload"; -$a->strings["Files"] = "Files"; -$a->strings["The contact could not be added."] = "Contact could not be added."; -$a->strings["You already added this contact."] = "You already added this contact."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "diaspora* support isn't enabled. Contact can't be added."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; -$a->strings["Your Identity Address:"] = "My identity address:"; -$a->strings["Profile URL"] = "Profile URL:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Status Messages and Posts"] = "Status Messages and Posts"; -$a->strings["Unable to locate original post."] = "Unable to locate original post."; -$a->strings["Empty post discarded."] = "Empty post discarded."; -$a->strings["Post updated."] = "Post updated."; -$a->strings["Item wasn't stored."] = "Item wasn't stored."; -$a->strings["Item couldn't be fetched."] = "Item couldn't be fetched."; -$a->strings["Post published."] = "Post published."; -$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; -$a->strings["Visible to:"] = "Visible to:"; -$a->strings["Followers"] = "Followers"; -$a->strings["Mutuals"] = "Mutuals"; -$a->strings["No valid account found."] = "No valid account found."; -$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was received at \"%2\$s\" to reset your account password.\n\t\tTo confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser's address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided; ignore or delete this email, as the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Password reset requested at %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed."; -$a->strings["Request has expired, please make a new one."] = "Request has expired, please make a new one."; -$a->strings["Forgot your Password?"] = "Reset My Password"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email."; -$a->strings["Nickname or Email: "] = "Nickname or email: "; -$a->strings["Reset"] = "Reset"; -$a->strings["Password Reset"] = "Forgotten password?"; -$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested."; -$a->strings["Your new password is"] = "Your new password is"; -$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then"; -$a->strings["click here to login"] = "click here to login"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Your password may be changed from the Settings page after successful login."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; +$a->strings["No videos selected"] = "No videos selected"; +$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; +$a->strings["View Video"] = "View video"; +$a->strings["View Album"] = "View album"; +$a->strings["Recent Videos"] = "Recent videos"; +$a->strings["Upload New Videos"] = "Upload new videos"; $a->strings["No keywords to match. Please add keywords to your profile."] = "No keywords to match. Please add keywords to your profile."; -$a->strings["Connect"] = "Connect"; $a->strings["first"] = "first"; $a->strings["next"] = "next"; $a->strings["No matches"] = "No matches"; $a->strings["Profile Match"] = "Profile Match"; -$a->strings["New Message"] = "New Message"; -$a->strings["No recipient selected."] = "No recipient selected."; -$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; -$a->strings["Message could not be sent."] = "Message could not be sent."; -$a->strings["Message collection failure."] = "Message collection failure."; -$a->strings["Message sent."] = "Message sent."; -$a->strings["Discard"] = "Discard"; -$a->strings["Messages"] = "Messages"; -$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; -$a->strings["Conversation not found."] = "Conversation not found."; -$a->strings["Message deleted."] = "Message deleted."; -$a->strings["Conversation removed."] = "Conversation removed."; -$a->strings["Please enter a link URL:"] = "Please enter a link URL:"; -$a->strings["Send Private Message"] = "Send private message"; -$a->strings["To:"] = "To:"; -$a->strings["Subject:"] = "Subject:"; -$a->strings["Your message:"] = "Your message:"; -$a->strings["No messages."] = "No messages."; -$a->strings["Message not available."] = "Message not available."; -$a->strings["Delete message"] = "Delete message"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "Delete conversation"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No secure communications available. You may be able to respond from the sender's profile page."; -$a->strings["Send Reply"] = "Send reply"; -$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; -$a->strings["You and %s"] = "Me and %s"; -$a->strings["%s and You"] = "%s and me"; -$a->strings["%d message"] = [ - 0 => "%d message", - 1 => "%d messages", -]; -$a->strings["No such group"] = "No such group"; -$a->strings["Group is empty"] = "Group is empty"; -$a->strings["Group: %s"] = "Group: %s"; -$a->strings["Invalid contact."] = "Invalid contact."; -$a->strings["Latest Activity"] = "Latest activity"; -$a->strings["Sort by latest activity"] = "Sort by latest activity"; -$a->strings["Latest Posts"] = "Latest posts"; -$a->strings["Sort by post received date"] = "Sort by post received date"; -$a->strings["Personal"] = "Personal"; -$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; -$a->strings["New"] = "New"; -$a->strings["Activity Stream - by date"] = "Activity Stream - by date"; -$a->strings["Shared Links"] = "Shared links"; -$a->strings["Interesting Links"] = "Interesting links"; -$a->strings["Starred"] = "Starred"; -$a->strings["Favourite Posts"] = "My favourite posts"; -$a->strings["Personal Notes"] = "Personal notes"; -$a->strings["Post successful."] = "Post successful."; -$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; -$a->strings["No contact provided."] = "No contact provided."; -$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; -$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact."; -$a->strings["Done"] = "Done"; -$a->strings["success"] = "success"; -$a->strings["failed"] = "failed"; -$a->strings["ignored"] = "Ignored"; -$a->strings["Keep this window open until done."] = "Keep this window open until done."; -$a->strings["Photo Albums"] = "Photo Albums"; -$a->strings["Recent Photos"] = "Recent photos"; -$a->strings["Upload New Photos"] = "Upload new photos"; -$a->strings["everybody"] = "everybody"; -$a->strings["Contact information unavailable"] = "Contact information unavailable"; -$a->strings["Album not found."] = "Album not found."; -$a->strings["Album successfully deleted"] = "Album successfully deleted"; -$a->strings["Album was empty."] = "Album was empty."; -$a->strings["a photo"] = "a photo"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; -$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; -$a->strings["Image upload didn't complete, please try again"] = "Image upload didn't complete, please try again"; -$a->strings["Image file is missing"] = "Image file is missing"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server can't accept new file upload at this time, please contact your administrator"; -$a->strings["Image file is empty."] = "Image file is empty."; -$a->strings["Unable to process image."] = "Unable to process image."; -$a->strings["Image upload failed."] = "Image upload failed."; -$a->strings["No photos selected"] = "No photos selected"; -$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; -$a->strings["Upload Photos"] = "Upload photos"; -$a->strings["New album name: "] = "New album name: "; -$a->strings["or select existing album:"] = "or select existing album:"; -$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; -$a->strings["Show to Groups"] = "Show to groups"; -$a->strings["Show to Contacts"] = "Show to contacts"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; -$a->strings["Delete Album"] = "Delete album"; -$a->strings["Edit Album"] = "Edit album"; -$a->strings["Drop Album"] = "Drop album"; -$a->strings["Show Newest First"] = "Show newest first"; -$a->strings["Show Oldest First"] = "Show oldest first"; -$a->strings["View Photo"] = "View photo"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted."; -$a->strings["Photo not available"] = "Photo not available"; -$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; -$a->strings["Delete Photo"] = "Delete photo"; -$a->strings["View photo"] = "View photo"; -$a->strings["Edit photo"] = "Edit photo"; -$a->strings["Delete photo"] = "Delete photo"; -$a->strings["Use as profile photo"] = "Use as profile photo"; -$a->strings["Private Photo"] = "Private photo"; -$a->strings["View Full Size"] = "View full size"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Select tags to remove]"] = "[Select tags to remove]"; -$a->strings["New album name"] = "New album name"; -$a->strings["Caption"] = "Caption"; -$a->strings["Add a Tag"] = "Add Tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Do not rotate"; -$a->strings["Rotate CW (right)"] = "Rotate right (CW)"; -$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)"; -$a->strings["I like this (toggle)"] = "I like this (toggle)"; -$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)"; -$a->strings["This is you"] = "This is me"; -$a->strings["Comment"] = "Comment"; -$a->strings["Map"] = "Map"; -$a->strings["View Album"] = "View album"; -$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend"; -$a->strings["{0} requested registration"] = "{0} requested registration"; -$a->strings["Poke/Prod"] = "Poke/Prod"; -$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; -$a->strings["Recipient"] = "Recipient:"; -$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; -$a->strings["Make this post private"] = "Make this post private"; -$a->strings["User deleted their account"] = "User deleted their account"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups."; -$a->strings["The user id is %d"] = "The user id is %d"; -$a->strings["Remove My Account"] = "Remove My Account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; -$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; -$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; -$a->strings["Error"] = [ - 0 => "Error", - 1 => "Errors", -]; $a->strings["Missing some important data!"] = "Missing some important data!"; $a->strings["Update"] = "Update"; $a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided."; -$a->strings["Email settings updated."] = "Email settings updated."; -$a->strings["Features updated"] = "Features updated"; $a->strings["Contact CSV file upload error"] = "Contact CSV file upload error"; $a->strings["Importing Contacts done"] = "Importing contacts done"; $a->strings["Relocate message has been send to your contacts"] = "Relocate message has been send to your contacts"; @@ -477,7 +312,7 @@ $a->strings["Invalid email."] = "Invalid email."; $a->strings["Cannot change to that email."] = "Cannot change to that email."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Private forum has no privacy permissions. Using default privacy group."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Private forum has no privacy permissions and no default privacy group."; -$a->strings["Settings updated."] = "Settings updated."; +$a->strings["Settings were not updated."] = ""; $a->strings["Add application"] = "Add application"; $a->strings["Save Settings"] = "Save settings"; $a->strings["Name"] = "Name:"; @@ -635,15 +470,158 @@ $a->strings["Upload File"] = "Upload File"; $a->strings["Relocate"] = "Recent relocation"; $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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:"; $a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts"; -$a->strings["Contact suggestion successfully ignored."] = "Contact suggestion ignored."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; -$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?"; -$a->strings["Ignore/Hide"] = "Ignore/Hide"; -$a->strings["Friend Suggestions"] = "Friend suggestions"; -$a->strings["Tag(s) removed"] = "Tag(s) removed"; +$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend"; +$a->strings["{0} requested registration"] = "{0} requested registration"; +$a->strings["No contacts in common."] = "No contacts in common."; +$a->strings["Common Friends"] = "Common friends"; +$a->strings["No items found"] = ""; +$a->strings["No such group"] = "No such group"; +$a->strings["Group is empty"] = "Group is empty"; +$a->strings["Group: %s"] = "Group: %s"; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Latest Activity"] = "Latest activity"; +$a->strings["Sort by latest activity"] = "Sort by latest activity"; +$a->strings["Latest Posts"] = "Latest posts"; +$a->strings["Sort by post received date"] = "Sort by post received date"; +$a->strings["Personal"] = "Personal"; +$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; +$a->strings["Starred"] = "Starred"; +$a->strings["Favourite Posts"] = "My favourite posts"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; +$a->strings["Error"] = [ + 0 => "Error", + 1 => "Errors", +]; +$a->strings["Done"] = "Done"; +$a->strings["Keep this window open until done."] = "Keep this window open until done."; +$a->strings["You aren't following this contact."] = "You aren't following this contact."; +$a->strings["Unfollowing is currently not supported by your network."] = "Unfollowing is currently not supported by your network."; +$a->strings["Disconnect/Unfollow"] = "Disconnect/Unfollow"; +$a->strings["Your Identity Address:"] = "My identity address:"; +$a->strings["Submit Request"] = "Submit request"; +$a->strings["Profile URL"] = "Profile URL:"; +$a->strings["Status Messages and Posts"] = "Status Messages and Posts"; +$a->strings["New Message"] = "New Message"; +$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; +$a->strings["Discard"] = "Discard"; +$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; +$a->strings["Yes"] = "Yes"; +$a->strings["Conversation not found."] = "Conversation not found."; +$a->strings["Message was not deleted."] = ""; +$a->strings["Conversation was not removed."] = ""; +$a->strings["No messages."] = "No messages."; +$a->strings["Message not available."] = "Message not available."; +$a->strings["Delete message"] = "Delete message"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "Delete conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No secure communications available. You may be able to respond from the sender's profile page."; +$a->strings["Send Reply"] = "Send reply"; +$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; +$a->strings["You and %s"] = "Me and %s"; +$a->strings["%s and You"] = "%s and me"; +$a->strings["%d message"] = [ + 0 => "%d message", + 1 => "%d messages", +]; +$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; +$a->strings["No contact provided."] = "No contact provided."; +$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; +$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact."; +$a->strings["success"] = "success"; +$a->strings["failed"] = "failed"; +$a->strings["ignored"] = "Ignored"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; +$a->strings["User deleted their account"] = "User deleted their account"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups."; +$a->strings["The user id is %d"] = "The user id is %d"; +$a->strings["Remove My Account"] = "Remove My Account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; +$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; $a->strings["Remove Item Tag"] = "Remove Item tag"; $a->strings["Select a tag to remove: "] = "Select a tag to remove: "; $a->strings["Remove"] = "Remove"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; +$a->strings["The requested item doesn't exist or has been deleted."] = "The requested item doesn't exist or has been deleted."; +$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; +$a->strings["The feed for this item is unavailable."] = "The feed for this item is unavailable."; +$a->strings["Invalid request."] = "Invalid request."; +$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; +$a->strings["Unable to process image."] = "Unable to process image."; +$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["Image upload failed."] = "Image upload failed."; +$a->strings["No valid account found."] = "No valid account found."; +$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was received at \"%2\$s\" to reset your account password.\n\t\tTo confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser's address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided; ignore or delete this email, as the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Password reset requested at %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed."; +$a->strings["Request has expired, please make a new one."] = "Request has expired, please make a new one."; +$a->strings["Forgot your Password?"] = "Reset My Password"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email."; +$a->strings["Nickname or Email: "] = "Nickname or email: "; +$a->strings["Reset"] = "Reset"; +$a->strings["Password Reset"] = "Forgotten password?"; +$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested."; +$a->strings["Your new password is"] = "Your new password is"; +$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then"; +$a->strings["click here to login"] = "click here to login"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Your password may be changed from the Settings page after successful login."; +$a->strings["Your password has been reset."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; +$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; +$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d required parameter was not found at the given location", + 1 => "%d required parameters were not found at the given location", +]; +$a->strings["Introduction complete."] = "Introduction complete."; +$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error."; +$a->strings["Profile unavailable."] = "Profile unavailable."; +$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today."; +$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; +$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; +$a->strings["Invalid profile URL."] = "Invalid profile URL."; +$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; +$a->strings["Blocked domain"] = "Blocked domain"; +$a->strings["Failed to update contact record."] = "Failed to update contact record."; +$a->strings["Your introduction has been sent."] = "Your introduction has been sent."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; +$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; +$a->strings["Confirm"] = "Confirm"; +$a->strings["Hide this contact"] = "Hide this contact"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s."; +$a->strings["Friend/Connection Request"] = "Friend/Connection request"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."; +$a->strings["Your Webfinger address or profile URL:"] = "Your WebFinger address or profile URL:"; +$a->strings["Please answer the following:"] = "Please answer the following:"; +$a->strings["%s knows you"] = "%s knows you"; +$a->strings["Add a personal note:"] = "Add a personal note:"; +$a->strings["Authorize application connection"] = "Authorise application connection"; +$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; +$a->strings["Please login to continue."] = "Please login to continue."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorise this application to access your posts and contacts and create new posts for you?"; +$a->strings["No"] = "No"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, maybe your upload is bigger than the PHP configuration allows"; +$a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?"; +$a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; +$a->strings["File upload failed."] = "File upload failed."; +$a->strings["Unable to locate original post."] = "Unable to locate original post."; +$a->strings["Empty post discarded."] = "Empty post discarded."; +$a->strings["Post updated."] = "Post updated."; +$a->strings["Item wasn't stored."] = "Item wasn't stored."; +$a->strings["Item couldn't be fetched."] = "Item couldn't be fetched."; +$a->strings["Item not found."] = "Item not found."; +$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; $a->strings["User imports on closed servers can only be done by an administrator."] = "User imports on closed servers can only be done by an administrator."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."; $a->strings["Import"] = "Import profile"; @@ -653,236 +631,139 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from diaspora*."; $a->strings["Account file"] = "Account file:"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""; -$a->strings["You aren't following this contact."] = "You aren't following this contact."; -$a->strings["Unfollowing is currently not supported by your network."] = "Unfollowing is currently not supported by your network."; -$a->strings["Contact unfollowed"] = "Contact unfollowed"; -$a->strings["Disconnect/Unfollow"] = "Disconnect/Unfollow"; -$a->strings["No videos selected"] = "No videos selected"; -$a->strings["View Video"] = "View video"; -$a->strings["Recent Videos"] = "Recent videos"; -$a->strings["Upload New Videos"] = "Upload new videos"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; -$a->strings["Unable to check your home location."] = "Unable to check your home location."; -$a->strings["No recipient."] = "No recipient."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; -$a->strings["Invalid request."] = "Invalid request."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, maybe your upload is bigger than the PHP configuration allows"; -$a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?"; -$a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; -$a->strings["File upload failed."] = "File upload failed."; -$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["User not found."] = "User not found."; +$a->strings["View"] = "View"; +$a->strings["Previous"] = "Previous"; +$a->strings["Next"] = "Next"; +$a->strings["today"] = "today"; +$a->strings["month"] = "month"; +$a->strings["week"] = "week"; +$a->strings["day"] = "day"; +$a->strings["list"] = "List"; +$a->strings["User not found"] = "User not found"; +$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; +$a->strings["No exportable data found"] = "No exportable data found"; +$a->strings["calendar"] = "calendar"; +$a->strings["Item not found"] = "Item not found"; +$a->strings["Edit post"] = "Edit post"; +$a->strings["Save"] = "Save"; +$a->strings["web link"] = "web link"; +$a->strings["Insert video link"] = "Insert video link"; +$a->strings["video link"] = "video link"; +$a->strings["Insert audio link"] = "Insert audio link"; +$a->strings["audio link"] = "audio link"; +$a->strings["CC: email addresses"] = "CC: email addresses"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; +$a->strings["Event title and start time are required."] = "Event title and starting time are required."; +$a->strings["Create New Event"] = "Create new event"; +$a->strings["Event details"] = "Event details"; +$a->strings["Starting date and Title are required."] = "Starting date and title are required."; +$a->strings["Event Starts:"] = "Event starts:"; +$a->strings["Required"] = "Required"; +$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; +$a->strings["Event Finishes:"] = "Event finishes:"; +$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; +$a->strings["Description:"] = "Description:"; +$a->strings["Location:"] = "Location:"; +$a->strings["Title:"] = "Title:"; +$a->strings["Share this event"] = "Share this event"; +$a->strings["Basic"] = "Basic"; +$a->strings["Advanced"] = "Advanced"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Failed to remove event"] = "Failed to remove event"; +$a->strings["The contact could not be added."] = "Contact could not be added."; +$a->strings["You already added this contact."] = "You already added this contact."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "diaspora* support isn't enabled. Contact can't be added."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Contact Photos"] = "Contact photos"; +$a->strings["Upload"] = "Upload"; +$a->strings["Files"] = "Files"; +$a->strings["Personal Notes"] = "Personal notes"; +$a->strings["Photo Albums"] = "Photo Albums"; +$a->strings["Recent Photos"] = "Recent photos"; +$a->strings["Upload New Photos"] = "Upload new photos"; +$a->strings["everybody"] = "everybody"; +$a->strings["Contact information unavailable"] = "Contact information unavailable"; +$a->strings["Album not found."] = "Album not found."; +$a->strings["Album successfully deleted"] = "Album successfully deleted"; +$a->strings["Album was empty."] = "Album was empty."; +$a->strings["Failed to delete the photo."] = ""; +$a->strings["a photo"] = "a photo"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = "Image upload didn't complete, please try again"; +$a->strings["Image file is missing"] = "Image file is missing"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server can't accept new file upload at this time, please contact your administrator"; +$a->strings["Image file is empty."] = "Image file is empty."; +$a->strings["No photos selected"] = "No photos selected"; +$a->strings["Upload Photos"] = "Upload photos"; +$a->strings["New album name: "] = "New album name: "; +$a->strings["or select existing album:"] = "or select existing album:"; +$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; +$a->strings["Show to Groups"] = "Show to groups"; +$a->strings["Show to Contacts"] = "Show to contacts"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; +$a->strings["Delete Album"] = "Delete album"; +$a->strings["Edit Album"] = "Edit album"; +$a->strings["Drop Album"] = "Drop album"; +$a->strings["Show Newest First"] = "Show newest first"; +$a->strings["Show Oldest First"] = "Show oldest first"; +$a->strings["View Photo"] = "View photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted."; +$a->strings["Photo not available"] = "Photo not available"; +$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; +$a->strings["Delete Photo"] = "Delete photo"; +$a->strings["View photo"] = "View photo"; +$a->strings["Edit photo"] = "Edit photo"; +$a->strings["Delete photo"] = "Delete photo"; +$a->strings["Use as profile photo"] = "Use as profile photo"; +$a->strings["Private Photo"] = "Private photo"; +$a->strings["View Full Size"] = "View full size"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Select tags to remove]"] = "[Select tags to remove]"; +$a->strings["New album name"] = "New album name"; +$a->strings["Caption"] = "Caption"; +$a->strings["Add a Tag"] = "Add Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Do not rotate"; +$a->strings["Rotate CW (right)"] = "Rotate right (CW)"; +$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)"; +$a->strings["I like this (toggle)"] = "I like this (toggle)"; +$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)"; +$a->strings["This is you"] = "This is me"; +$a->strings["Comment"] = "Comment"; +$a->strings["Map"] = "Map"; +$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. "; +$a->strings["Delete this item?"] = "Delete this item?"; +$a->strings["toggle mobile"] = "Toggle mobile"; $a->strings["Login failed."] = "Login failed."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "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:"] = "The error message was:"; $a->strings["Login failed. Please check your credentials."] = "Login failed. Please check your credentials."; $a->strings["Welcome %s"] = "Welcome %s"; $a->strings["Please upload a profile photo."] = "Please upload a profile photo."; -$a->strings["Welcome back %s"] = "Welcome back %s"; -$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. "; -$a->strings["Delete this item?"] = "Delete this item?"; -$a->strings["toggle mobile"] = "Toggle mobile"; $a->strings["Method not allowed for this module. Allowed method(s): %s"] = "Method not allowed for this module. Allowed method(s): %s"; $a->strings["Page not found."] = "Page not found"; -$a->strings["No system theme config value set."] = "No system theme configuration value set."; -$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."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Could not find any unarchived contact entry for this URL (%s)"; -$a->strings["The contact entries have been archived"] = "The contact entries have been archived"; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Could not find any contact entry for this URL (%s)"; -$a->strings["The contact has been blocked from the node"] = "The contact has been blocked from the node"; -$a->strings["Post update version number has been set to %s."] = "Post update version number has been set to %s."; -$a->strings["Check for pending update actions."] = "Check for pending update actions."; -$a->strings["Done."] = "Done."; -$a->strings["Execute pending post updates."] = "Execute pending post updates."; -$a->strings["All pending post updates are done."] = "All pending post updates are done."; -$a->strings["Enter new password: "] = "Enter new password: "; -$a->strings["Enter user name: "] = "Enter user name: "; -$a->strings["Enter user nickname: "] = "Enter user nickname: "; -$a->strings["Enter user email address: "] = "Enter user email address: "; -$a->strings["Enter a language (optional): "] = "Enter a language (optional): "; -$a->strings["User is not pending."] = "User is not pending."; -$a->strings["Type \"yes\" to delete %s"] = "Type \"yes\" to delete %s"; -$a->strings["newer"] = "Later posts"; -$a->strings["older"] = "Earlier posts"; -$a->strings["Frequently"] = "Frequently"; -$a->strings["Hourly"] = "Hourly"; -$a->strings["Twice daily"] = "Twice daily"; -$a->strings["Daily"] = "Daily"; -$a->strings["Weekly"] = "Weekly"; -$a->strings["Monthly"] = "Monthly"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Email"; -$a->strings["Diaspora"] = "diaspora*"; -$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["Discourse"] = "Discourse"; -$a->strings["Diaspora Connector"] = "diaspora* connector"; -$a->strings["GNU Social Connector"] = "GNU Social Connector"; -$a->strings["ActivityPub"] = "ActivityPub"; -$a->strings["pnut"] = "pnut"; -$a->strings["%s (via %s)"] = "%s (via %s)"; -$a->strings["General Features"] = "General"; -$a->strings["Photo Location"] = "Photo location"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."; -$a->strings["Export Public Calendar"] = "Export public calendar"; -$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar"; -$a->strings["Trending Tags"] = "Trending Tags"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Show a community page widget with a list of the most popular tags in recent public posts."; -$a->strings["Post Composition Features"] = "Post composition"; -$a->strings["Auto-mention Forums"] = "Auto-mention forums"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; -$a->strings["Explicit Mentions"] = "Explicit mentions"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Add explicit mentions to comment box for manual control over who gets mentioned in replies."; -$a->strings["Network Sidebar"] = "Network sidebar"; -$a->strings["Archives"] = "Archives"; -$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges"; -$a->strings["Protocol Filter"] = "Protocol Filter"; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "Enable widget to display Network posts only from selected protocols"; -$a->strings["Network Tabs"] = "Network tabs"; -$a->strings["Network New Tab"] = "Network new tab"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)"; -$a->strings["Network Shared Links Tab"] = "Network shared links tab"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them"; -$a->strings["Post/Comment Tools"] = "Post/Comment tools"; -$a->strings["Post Categories"] = "Post categories"; -$a->strings["Add categories to your posts"] = "Add categories to your posts"; -$a->strings["Advanced Profile Settings"] = "Advanced profiles"; -$a->strings["List Forums"] = "List forums"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; -$a->strings["Tag Cloud"] = "Tag cloud"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Provides a personal tag cloud on your profile page"; -$a->strings["Display Membership Date"] = "Display membership date"; -$a->strings["Display membership date in profile"] = "Display membership date in profile"; -$a->strings["Forums"] = "Forums"; -$a->strings["External link to forum"] = "External link to forum"; -$a->strings["show more"] = "Show more..."; -$a->strings["Nothing new here"] = "Nothing new here"; -$a->strings["Go back"] = "Go back"; -$a->strings["Clear notifications"] = "Clear notifications"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; -$a->strings["Logout"] = "Logout"; -$a->strings["End this session"] = "End this session"; -$a->strings["Login"] = "Login"; -$a->strings["Sign in"] = "Sign in"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "My posts and conversations"; -$a->strings["Profile"] = "Profile"; -$a->strings["Your profile page"] = "My profile page"; -$a->strings["Your photos"] = "My photos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Your videos"] = "My videos"; -$a->strings["Your events"] = "My events"; -$a->strings["Personal notes"] = "Personal notes"; -$a->strings["Your personal notes"] = "My personal notes"; -$a->strings["Home"] = "Home"; -$a->strings["Home Page"] = "Home page"; -$a->strings["Register"] = "Sign up now >>"; -$a->strings["Create an account"] = "Create account"; -$a->strings["Help"] = "Help"; -$a->strings["Help and documentation"] = "Help and documentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; -$a->strings["Search"] = "Search"; -$a->strings["Search site content"] = "Search site content"; -$a->strings["Full Text"] = "Full text"; -$a->strings["Tags"] = "Tags"; -$a->strings["Contacts"] = "Contacts"; -$a->strings["Community"] = "Community"; -$a->strings["Conversations on this and other servers"] = "Conversations on this and other servers"; -$a->strings["Events and Calendar"] = "Events and calendar"; -$a->strings["Directory"] = "Directory"; -$a->strings["People directory"] = "People directory"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; -$a->strings["Terms of Service"] = "Terms of Service"; -$a->strings["Terms of Service of this Friendica instance"] = "Terms of Service for this Friendica instance"; -$a->strings["Network"] = "Network"; -$a->strings["Conversations from your friends"] = "My friends' conversations"; -$a->strings["Introductions"] = "Introductions"; -$a->strings["Friend Requests"] = "Friend requests"; -$a->strings["Notifications"] = "Notifications"; -$a->strings["See all notifications"] = "See all notifications"; -$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen"; -$a->strings["Private mail"] = "Private messages"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Outbox"; -$a->strings["Accounts"] = "Accounts"; -$a->strings["Manage other pages"] = "Manage other pages"; -$a->strings["Settings"] = "Settings"; -$a->strings["Account settings"] = "Account settings"; -$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Site setup and configuration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Site map"; -$a->strings["Embedding disabled"] = "Embedding disabled"; -$a->strings["Embedded content"] = "Embedded content"; -$a->strings["prev"] = "prev"; -$a->strings["last"] = "last"; -$a->strings["Image/photo"] = "Image/Photo"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["Click to open/close"] = "Reveal/hide"; -$a->strings["$1 wrote:"] = "$1 wrote:"; -$a->strings["Encrypted content"] = "Encrypted content"; -$a->strings["Invalid source protocol"] = "Invalid source protocol"; -$a->strings["Invalid link protocol"] = "Invalid link protocol"; -$a->strings["Loading more entries..."] = "Loading more entries..."; -$a->strings["The end"] = "The end"; -$a->strings["Follow"] = "Follow"; -$a->strings["Export"] = "Export"; -$a->strings["Export calendar as ical"] = "Export calendar as ical"; -$a->strings["Export calendar as csv"] = "Export calendar as csv"; -$a->strings["No contacts"] = "No contacts"; -$a->strings["%d Contact"] = [ - 0 => "%d contact", - 1 => "%d contacts", -]; -$a->strings["View Contacts"] = "View contacts"; -$a->strings["Remove term"] = "Remove term"; -$a->strings["Saved Searches"] = "Saved searches"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "Trending Tags (last %d hour)", - 1 => "Trending tags (last %d hours)", -]; -$a->strings["More Trending Tags"] = "More Trending Tags"; -$a->strings["Add New Contact"] = "Add new contact"; -$a->strings["Enter address or web location"] = "Enter address or web location"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; -$a->strings["%d invitation available"] = [ - 0 => "%d invitation available", - 1 => "%d invitations available", -]; -$a->strings["Find People"] = "Find people"; -$a->strings["Enter name or interest"] = "Enter name or interest"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; -$a->strings["Find"] = "Find"; -$a->strings["Similar Interests"] = "Similar interests"; -$a->strings["Random Profile"] = "Random profile"; -$a->strings["Invite Friends"] = "Invite friends"; -$a->strings["Global Directory"] = "Global directory"; -$a->strings["Local Directory"] = "Local directory"; -$a->strings["Groups"] = "Groups"; -$a->strings["Everyone"] = "Everyone"; -$a->strings["Following"] = "Following"; -$a->strings["Mutual friends"] = "Mutual friends"; -$a->strings["Relationships"] = "Relationships"; -$a->strings["All Contacts"] = "All contacts"; -$a->strings["Protocols"] = "Protocols"; -$a->strings["All Protocols"] = "All Protocols"; -$a->strings["Saved Folders"] = "Saved Folders"; -$a->strings["Everything"] = "Everything"; -$a->strings["Categories"] = "Categories"; -$a->strings["%d contact in common"] = [ - 0 => "%d contact in common", - 1 => "%d contacts in common", -]; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "There are no tables on MyISAM or InnoDB with the Antelope file format."; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; +$a->strings["Another database update is currently running."] = ""; +$a->strings["%s: Database update"] = "%s: Database update"; +$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["Database error %d \"%s\" at \"%s\""] = ""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = "[Friendica Notify] Database update"; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."; $a->strings["Yourself"] = "Yourself"; +$a->strings["Followers"] = "Followers"; +$a->strings["Mutuals"] = "Mutuals"; $a->strings["Post to Email"] = "Post to email"; $a->strings["Public"] = "Public"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "This post will be shown to all your followers and can be seen in the community pages and by anyone with its link."; @@ -895,7 +776,7 @@ $a->strings["The database configuration file \"config/local.config.php\" could n $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\"."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "If your server doesn't have a command line version of PHP installed, you won't be able to run background processing. See 'Setup the worker'"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; $a->strings["PHP executable path"] = "PHP executable path"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; $a->strings["Command line PHP"] = "Command line PHP"; @@ -998,11 +879,6 @@ $a->strings["finger"] = "finger"; $a->strings["fingered"] = "fingered"; $a->strings["rebuff"] = "rebuff"; $a->strings["rebuffed"] = "rebuffed"; -$a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = "[Friendica Notify] Database update"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."; $a->strings["Error decoding account file"] = "Error decoding account file"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?"; $a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!"; @@ -1013,11 +889,104 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "User profile creation error"; $a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "There are no tables on MyISAM or InnoDB with the Antelope file format."; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; -$a->strings["%s: Database update"] = "%s: Database update"; -$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["Legacy module file not found: %s"] = "Legacy module file not found: %s"; +$a->strings["(no subject)"] = "(no subject)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network."; +$a->strings["You may visit them online at %s"] = "You may visit them online at %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages."; +$a->strings["%s posted an update."] = "%s posted an update."; +$a->strings["This entry was edited"] = "This entry was edited"; +$a->strings["Private Message"] = "Private message"; +$a->strings["pinned item"] = "pinned item"; +$a->strings["Delete locally"] = "Delete locally"; +$a->strings["Delete globally"] = "Delete globally"; +$a->strings["Remove locally"] = "Remove locally"; +$a->strings["save to folder"] = "Save to folder"; +$a->strings["I will attend"] = "I will attend"; +$a->strings["I will not attend"] = "I will not attend"; +$a->strings["I might attend"] = "I might attend"; +$a->strings["ignore thread"] = "Ignore thread"; +$a->strings["unignore thread"] = "Unignore thread"; +$a->strings["toggle ignore status"] = "Toggle ignore status"; +$a->strings["pin"] = "pin"; +$a->strings["unpin"] = "unpin"; +$a->strings["toggle pin status"] = "toggle pin status"; +$a->strings["pinned"] = "pinned"; +$a->strings["add star"] = "Add star"; +$a->strings["remove star"] = "Remove star"; +$a->strings["toggle star status"] = "Toggle star status"; +$a->strings["starred"] = "Starred"; +$a->strings["add tag"] = "Add tag"; +$a->strings["like"] = "Like"; +$a->strings["dislike"] = "Dislike"; +$a->strings["Share this"] = "Share this"; +$a->strings["share"] = "Share"; +$a->strings["%s (Received %s)"] = "%s (Received %s)"; +$a->strings["Comment this item on your system"] = "Comment this item on your system"; +$a->strings["remote comment"] = "remote comment"; +$a->strings["Pushed"] = "Pushed"; +$a->strings["Pulled"] = "Pulled"; +$a->strings["to"] = "to"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:"; +$a->strings["Reply to %s"] = "Reply to %s"; +$a->strings["More"] = "More"; +$a->strings["Notifier task is pending"] = "Notifier task is pending"; +$a->strings["Delivery to remote servers is pending"] = "Delivery to remote servers is pending"; +$a->strings["Delivery to remote servers is underway"] = "Delivery to remote servers is underway"; +$a->strings["Delivery to remote servers is mostly done"] = "Delivery to remote servers is mostly done"; +$a->strings["Delivery to remote servers is done"] = "Delivery to remote servers is done"; +$a->strings["%d comment"] = [ + 0 => "%d comment", + 1 => "%d comments", +]; +$a->strings["Show more"] = "Show more"; +$a->strings["Show fewer"] = "Show fewer"; +$a->strings["comment"] = [ + 0 => "comment", + 1 => "comments", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Could not find any unarchived contact entry for this URL (%s)"; +$a->strings["The contact entries have been archived"] = "The contact entries have been archived"; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Could not find any contact entry for this URL (%s)"; +$a->strings["The contact has been blocked from the node"] = "The contact has been blocked from the node"; +$a->strings["Enter new password: "] = "Enter new password: "; +$a->strings["Enter user name: "] = "Enter user name: "; +$a->strings["Enter user nickname: "] = "Enter user nickname: "; +$a->strings["Enter user email address: "] = "Enter user email address: "; +$a->strings["Enter a language (optional): "] = "Enter a language (optional): "; +$a->strings["User is not pending."] = "User is not pending."; +$a->strings["User has already been marked for deletion."] = ""; +$a->strings["Type \"yes\" to delete %s"] = "Type \"yes\" to delete %s"; +$a->strings["Deletion aborted."] = ""; +$a->strings["Post update version number has been set to %s."] = "Post update version number has been set to %s."; +$a->strings["Check for pending update actions."] = "Check for pending update actions."; +$a->strings["Done."] = "Done."; +$a->strings["Execute pending post updates."] = "Execute pending post updates."; +$a->strings["All pending post updates are done."] = "All pending post updates are done."; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "Home town:"; +$a->strings["Marital Status:"] = "Marital Status:"; +$a->strings["With:"] = "With:"; +$a->strings["Since:"] = "Since:"; +$a->strings["Sexual Preference:"] = "Sexual preference:"; +$a->strings["Political Views:"] = "Political views:"; +$a->strings["Religious Views:"] = "Religious views:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Title/Description:"] = "Title/Description:"; +$a->strings["Summary"] = "Summary"; +$a->strings["Musical interests"] = "Music:"; +$a->strings["Books, literature"] = "Books, literature, poetry:"; +$a->strings["Television"] = "Television:"; +$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interests:"; +$a->strings["Love/romance"] = "Love/Romance:"; +$a->strings["Work/employment"] = "Work/Employment:"; +$a->strings["School/education"] = "School/Education:"; +$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:"; +$a->strings["No system theme config value set."] = "No system theme configuration value set."; $a->strings["Friend Suggestion"] = "Friend suggestion"; $a->strings["Friend/Connect Request"] = "Friend/Contact request"; $a->strings["New Follower"] = "New follower"; @@ -1029,182 +998,526 @@ $a->strings["%s is attending %s's event"] = "%s is going to %s's event"; $a->strings["%s is not attending %s's event"] = "%s is not going to %s's event"; $a->strings["%s may attending %s's event"] = "%s may attending %s's event"; $a->strings["%s is now friends with %s"] = "%s is now friends with %s"; -$a->strings["Legacy module file not found: %s"] = "Legacy module file not found: %s"; -$a->strings["UnFollow"] = "Unfollow"; -$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Network Notifications"] = "Network notifications"; +$a->strings["System Notifications"] = "System notifications"; +$a->strings["Personal Notifications"] = "Personal notifications"; +$a->strings["Home Notifications"] = "Home notifications"; +$a->strings["No more %s notifications."] = "No more %s notifications."; +$a->strings["Show unread"] = "Show unread"; +$a->strings["Show all"] = "Show all"; +$a->strings["You must be logged in to show this page."] = "You must be logged in to show this page."; +$a->strings["Notifications"] = "Notifications"; +$a->strings["Show Ignored Requests"] = "Show ignored requests."; +$a->strings["Hide Ignored Requests"] = "Hide ignored requests"; +$a->strings["Notification type:"] = "Notification type:"; +$a->strings["Suggested by:"] = "Suggested by:"; +$a->strings["Hide this contact from others"] = "Hide this contact from others"; $a->strings["Approve"] = "Approve"; -$a->strings["Organisation"] = "Organisation"; -$a->strings["News"] = "News"; -$a->strings["Forum"] = "Forum"; -$a->strings["Connect URL missing."] = "Connect URL missing."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."; -$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; -$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; -$a->strings["An author or name was not found."] = "An author or name was not found."; -$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; -$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; -$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Starts:"; -$a->strings["Finishes:"] = "Finishes:"; -$a->strings["all-day"] = "All-day"; -$a->strings["Sept"] = "Sep"; -$a->strings["No events to display"] = "No events to display"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Edit event"; -$a->strings["Duplicate event"] = "Duplicate event"; -$a->strings["Delete event"] = "Delete event"; -$a->strings["link to source"] = "Link to source"; -$a->strings["D g:i A"] = "D g:i A"; -$a->strings["g:i A"] = "g:i A"; -$a->strings["Show map"] = "Show map"; -$a->strings["Hide map"] = "Hide map"; -$a->strings["%s's birthday"] = "%s's birthday"; -$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; -$a->strings["Item filed"] = "Item filed"; -$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."] = "A deleted group with this name has been 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."; -$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; -$a->strings["Everybody"] = "Everybody"; -$a->strings["edit"] = "edit"; -$a->strings["add"] = "add"; -$a->strings["Edit group"] = "Edit group"; -$a->strings["Contacts not in any group"] = "Contacts not in any group"; -$a->strings["Create a new group"] = "Create new group"; -$a->strings["Group Name: "] = "Group name: "; -$a->strings["Edit groups"] = "Edit groups"; -$a->strings["activity"] = "activity"; -$a->strings["comment"] = [ - 0 => "comment", - 1 => "comments", -]; -$a->strings["post"] = "post"; -$a->strings["Content warning: %s"] = "Content warning: %s"; -$a->strings["bytes"] = "bytes"; -$a->strings["View on separate page"] = "View on separate page"; -$a->strings["view on separate page"] = "view on separate page"; -$a->strings["[no subject]"] = "[no subject]"; -$a->strings["Edit profile"] = "Edit profile"; -$a->strings["Change profile photo"] = "Change profile photo"; -$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Claims to be known to you: "] = "Says they know me:"; +$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; +$a->strings["Friend"] = "Friend"; +$a->strings["Subscriber"] = "Subscriber"; $a->strings["About:"] = "About:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Unfollow"] = "Unfollow"; -$a->strings["Atom feed"] = "Atom feed"; $a->strings["Network:"] = "Network:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[today]"; -$a->strings["Birthday Reminders"] = "Birthday reminders"; -$a->strings["Birthdays this week:"] = "Birthdays this week:"; -$a->strings["[No description]"] = "[No description]"; -$a->strings["Event Reminders"] = "Event reminders"; -$a->strings["Upcoming events the next 7 days:"] = "Upcoming events the next 7 days:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s welcomes %2\$s"; -$a->strings["Database storage failed to update %s"] = "Database storage failed to update %s"; -$a->strings["Database storage failed to insert data"] = "Database storage failed to insert data"; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Filesystem storage failed to create \"%s\". Check you write permissions."; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Filesystem storage failed to save data to \"%s\". Check your write permissions"; -$a->strings["Storage base path"] = "Storage base path"; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree"; -$a->strings["Enter a valid existing folder"] = "Enter a valid existing folder"; -$a->strings["Login failed"] = "Login failed"; -$a->strings["Not enough information to authenticate"] = "Not enough information to authenticate"; -$a->strings["Password can't be empty"] = "Password can't be empty"; -$a->strings["Empty passwords are not allowed."] = "Empty passwords are not allowed."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "The new password has been exposed in a public data dump; please choose another."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "The password can't contain accentuated letters, white spaces or colons"; -$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; -$a->strings["An invitation is required."] = "An invitation is required."; -$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; -$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; -$a->strings["Please enter the required information."] = "Please enter the required information."; -$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."; -$a->strings["Username should be at least %s character."] = [ - 0 => "Username should be at least %s character.", - 1 => "Username should be at least %s characters.", +$a->strings["No introductions."] = "No introductions."; +$a->strings["A Decentralized Social Network"] = "A Decentralized Social Network"; +$a->strings["Logged out."] = "Logged out."; +$a->strings["Invalid code, please retry."] = "Invalid code, please try again."; +$a->strings["Two-factor authentication"] = "Two-factor authentication"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Don’t have your phone? Enter a two-factor recovery code"; +$a->strings["Please enter a code from your authentication app"] = "Please enter a code from your authentication app"; +$a->strings["Verify code and complete login"] = "Verify code and complete login"; +$a->strings["Remaining recovery codes: %d"] = "Remaining recovery codes: %d"; +$a->strings["Two-factor recovery"] = "Two-factor recovery"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"; +$a->strings["Please enter a recovery code"] = "Please enter a recovery code"; +$a->strings["Submit recovery code and complete login"] = "Submit recovery code and complete login"; +$a->strings["Create a New Account"] = "Create a new account"; +$a->strings["Register"] = "Sign up now >>"; +$a->strings["Your OpenID: "] = "Your OpenID: "; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Please enter your username and password to add the OpenID to your existing account."; +$a->strings["Or login using OpenID: "] = "Or login with OpenID: "; +$a->strings["Logout"] = "Logout"; +$a->strings["Login"] = "Login"; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Remember me"; +$a->strings["Forgot your password?"] = "Forgot your password?"; +$a->strings["Website Terms of Service"] = "Website Terms of Service"; +$a->strings["terms of service"] = "Terms of service"; +$a->strings["Website Privacy Policy"] = "Website Privacy Policy"; +$a->strings["privacy policy"] = "Privacy policy"; +$a->strings["OpenID protocol error. No ID returned"] = "OpenID protocol error. No ID returned"; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Account not found. Please login to your existing account to add the OpenID."; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Account not found. Please register a new account or login to your existing account to add the OpenID."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Time conversion"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones."; +$a->strings["UTC time: %s"] = "UTC time: %s"; +$a->strings["Current timezone: %s"] = "Current time zone: %s"; +$a->strings["Converted localtime: %s"] = "Converted local time: %s"; +$a->strings["Please select your timezone:"] = "Please select your time zone:"; +$a->strings["Source input"] = "Source input"; +$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw HTML)"; +$a->strings["BBCode::convert"] = "BBCode::convert"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = "BBCode::toMarkdown => Markdown::convert (raw HTML)"; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; +$a->strings["Item Body"] = "Item Body"; +$a->strings["Item Tags"] = "Item Tags"; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = "Source input (diaspora* format)"; +$a->strings["Source input (Markdown)"] = "Source input (Markdown)"; +$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (raw HTML)"; +$a->strings["Markdown::convert"] = "Markdown::convert"; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Raw HTML input"; +$a->strings["HTML Input"] = "HTML input"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (raw HTML)"; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; +$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (compact)"; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = "Source text"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Diaspora"] = "diaspora*"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing."; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = "You must be logged in to use this module"; +$a->strings["Source URL"] = "Source URL"; +$a->strings["Lookup address"] = "Lookup address"; +$a->strings["%s's timeline"] = "%s's timeline"; +$a->strings["%s's posts"] = "%s's posts"; +$a->strings["%s's comments"] = "%s's comments"; +$a->strings["No contacts."] = "No contacts."; +$a->strings["Follower (%s)"] = [ + 0 => "Follower (%s)", + 1 => "Followers (%s)", ]; -$a->strings["Username should be at most %s character."] = [ - 0 => "Username should be at most %s character.", - 1 => "Username should be at most %s characters.", +$a->strings["Following (%s)"] = [ + 0 => "Following (%s)", + 1 => "Following (%s)", ]; -$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; -$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; -$a->strings["Not a valid email address."] = "Not a valid email address."; -$a->strings["The nickname was blocked from registration by the nodes admin."] = "The nickname was blocked from registration by the nodes admin."; -$a->strings["Cannot use that email."] = "Cannot use that email."; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Your nickname can only contain a-z, 0-9 and _."; -$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; -$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; -$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; -$a->strings["An error occurred creating your self contact. Please try again."] = "An error occurred creating your self-contact. Please try again."; -$a->strings["Friends"] = "Friends"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "An error occurred while creating your default contact group. Please try again."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tDear %1\$s,\n\t\t\tThe administrator of %2\$s has set up an account for you."; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."; -$a->strings["Registration details for %s"] = "Registration details for %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Registration at %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."; -$a->strings["Addon not found."] = "Addon not found."; -$a->strings["Addon %s disabled."] = "Addon %s disabled."; -$a->strings["Addon %s enabled."] = "Addon %s enabled."; +$a->strings["Mutual friend (%s)"] = [ + 0 => "Mutual friend (%s)", + 1 => "Mutual friends (%s)", +]; +$a->strings["Contact (%s)"] = [ + 0 => "Contact (%s)", + 1 => "Contacts (%s)", +]; +$a->strings["All contacts"] = "All contacts"; +$a->strings["Following"] = "Following"; +$a->strings["Mutual friends"] = "Mutual friends"; +$a->strings["You're currently viewing your profile as %s Cancel"] = ""; +$a->strings["Member since:"] = "Member since:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Birthday:"; +$a->strings["Age: "] = "Age: "; +$a->strings["%d year old"] = [ + 0 => "%d year old", + 1 => "%d years old", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Forums:"] = "Forums:"; +$a->strings["View profile as:"] = "View profile as:"; +$a->strings["Edit profile"] = "Edit profile"; +$a->strings["View as"] = ""; +$a->strings["Only parent users can create additional accounts."] = "Only parent users can create additional accounts."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."; +$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?"; +$a->strings["Note for the admin"] = "Note for the admin"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node."; +$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only."; +$a->strings["Your invitation code: "] = "Your invitation code: "; +$a->strings["Registration"] = "Join this Friendica Node Today"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: "; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Your Email Address: (Initial information will be send there; so this must be an existing address.)"; +$a->strings["Please repeat your e-mail address:"] = "Please repeat your e-mail address:"; +$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."; +$a->strings["Choose a nickname: "] = "Choose a nickname: "; +$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; +$a->strings["Terms of Service"] = "Terms of Service"; +$a->strings["Note: This node explicitly contains adult content"] = "Note: This node explicitly contains adult content"; +$a->strings["Parent Password:"] = "Parent password:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Please enter the password of the parent account to authorise this request."; +$a->strings["Password doesn't match."] = "Password doesn't match."; +$a->strings["Please enter your password."] = "Please enter your password."; +$a->strings["You have entered too much information."] = "You have entered too much information."; +$a->strings["Please enter the identical mail address in the second field."] = "Please enter the identical mail address in the second field."; +$a->strings["The additional account was created."] = "The additional account was created."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login."; +$a->strings["Registration successful."] = "Registration successful."; +$a->strings["Your registration can not be processed."] = "Your registration cannot be processed."; +$a->strings["You have to leave a request note for the admin."] = "You have to leave a request note for the admin."; +$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator."; +$a->strings["Bad Request"] = "Bad Request"; +$a->strings["Unauthorized"] = "Unauthorized"; +$a->strings["Forbidden"] = "Forbidden"; +$a->strings["Not Found"] = "Not found"; +$a->strings["Internal Server Error"] = "Internal Server Error"; +$a->strings["Service Unavailable"] = "Service Unavailable"; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = "The server cannot process the request due to an apparent client error."; +$a->strings["Authentication is required and has failed or has not yet been provided."] = "Authentication is required and has failed or has not yet been provided."; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."; +$a->strings["The requested resource could not be found but may be available in the future."] = "The requested resource could not be found but may be available in the future."; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "An unexpected condition was encountered and no more specific message is available."; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."; +$a->strings["Go back"] = "Go back"; +$a->strings["Welcome to %s"] = "Welcome to %s"; +$a->strings["No friends to display."] = "No friends to display."; +$a->strings["Suggested contact not found."] = "Suggested contact not found."; +$a->strings["Friend suggestion sent."] = "Friend suggestion sent"; +$a->strings["Suggest Friends"] = "Suggest friends"; +$a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; +$a->strings["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup"; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state"; +$a->strings["Force all links to use SSL"] = "Force all links to use SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)"; +$a->strings["Base settings"] = "Base settings"; +$a->strings["SSL link policy"] = "SSL link policy"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL"; +$a->strings["Host name"] = "Host name"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Overwrite this field in case the hostname is incorrect, otherwise leave it as is."; +$a->strings["Base path to installation"] = "Base path to installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."; +$a->strings["Sub path of the URL"] = "URL Subpath"; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Overwrite this field in case the subpath determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without subpath."; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database server name"; +$a->strings["Database Login Name"] = "Database login name"; +$a->strings["Database Login Password"] = "Database login password"; +$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty"; +$a->strings["Database Name"] = "Database name"; +$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website"; +$a->strings["Site settings"] = "Site settings"; +$a->strings["Site administrator email address"] = "Site administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["System Language:"] = "System language:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication."; +$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed."; +$a->strings["Installation finished"] = "Installation finished"; +$a->strings["

What next

"] = "

What next

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the worker."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."; +$a->strings["- select -"] = "- select -"; +$a->strings["Item was not removed"] = ""; +$a->strings["Item was not deleted"] = ""; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; +$a->strings["Visible to:"] = "Visible to:"; +$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; +$a->strings["Select an identity to manage: "] = "Select identity:"; +$a->strings["Local Community"] = "Local community"; +$a->strings["Posts from local users on this server"] = "Posts from local users on this server"; +$a->strings["Global Community"] = "Global community"; +$a->strings["Posts from users of the whole federated network"] = "Posts from users of the whole federated network"; +$a->strings["No results."] = "No results."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."; +$a->strings["Community option not available."] = "Community option not available."; +$a->strings["Not available."] = "Not available."; +$a->strings["Welcome to Friendica"] = "Welcome to Friendica"; +$a->strings["New Member Checklist"] = "New Member Checklist"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."; +$a->strings["Getting Started"] = "Getting started"; +$a->strings["Friendica Walk-Through"] = "Friendica walk-through"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."; +$a->strings["Go to Your Settings"] = "Go to your settings"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."; +$a->strings["Upload Profile Photo"] = "Upload profile photo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."; +$a->strings["Edit Your Profile"] = "Edit your profile"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."; +$a->strings["Profile Keywords"] = "Profile keywords"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."; +$a->strings["Connecting"] = "Connecting"; +$a->strings["Importing Emails"] = "Importing emails"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"; +$a->strings["Go to Your Contacts Page"] = "Go to your contacts page"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "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."; +$a->strings["Go to Your Site's Directory"] = "Go to your site's directory"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "The directory 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 when requested."; +$a->strings["Finding New People"] = "Finding new people"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."; +$a->strings["Groups"] = "Groups"; +$a->strings["Group Your Contacts"] = "Group your contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Once you have made some friends, organise them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."; +$a->strings["Why Aren't My Posts Public?"] = "Why aren't my posts public?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."; +$a->strings["Getting Help"] = "Getting help"; +$a->strings["Go to the Help Section"] = "Go to the help section"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; +$a->strings["This page is missing a url parameter."] = "This page is missing a URL parameter."; +$a->strings["The post was created"] = "The post was created"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "Information"; +$a->strings["Overview"] = "Overview"; +$a->strings["Federation Statistics"] = "Federation statistics"; +$a->strings["Configuration"] = "Configuration"; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Users"; +$a->strings["Addons"] = "Addons"; +$a->strings["Themes"] = "Theme selection"; +$a->strings["Additional features"] = "Additional features"; +$a->strings["Database"] = "Database"; +$a->strings["DB updates"] = "DB updates"; +$a->strings["Inspect Deferred Workers"] = "Inspect deferred workers"; +$a->strings["Inspect worker Queue"] = "Inspect worker queue"; +$a->strings["Tools"] = "Tools"; +$a->strings["Contact Blocklist"] = "Contact block-list"; +$a->strings["Server Blocklist"] = "Server block-list"; +$a->strings["Delete Item"] = "Delete item"; +$a->strings["Logs"] = "Logs"; +$a->strings["View Logs"] = "View logs"; +$a->strings["Diagnostics"] = "Diagnostics"; +$a->strings["PHP Info"] = "PHP info"; +$a->strings["probe address"] = "Probe address"; +$a->strings["check webfinger"] = "Check WebFinger"; +$a->strings["Item Source"] = "Item source"; +$a->strings["Babel"] = "Babel"; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "Admin"; +$a->strings["Addon Features"] = "Addon features"; +$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation"; +$a->strings["%d contact edited."] = [ + 0 => "%d contact edited.", + 1 => "%d contacts edited.", +]; +$a->strings["Could not access contact record."] = "Could not access contact record."; +$a->strings["Follow"] = "Follow"; +$a->strings["Unfollow"] = "Unfollow"; +$a->strings["Contact not found"] = "Contact not found"; +$a->strings["Contact has been blocked"] = "Contact has been blocked"; +$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; +$a->strings["Contact has been ignored"] = "Contact has been ignored"; +$a->strings["Contact has been unignored"] = "Contact has been unignored"; +$a->strings["Contact has been archived"] = "Contact has been archived"; +$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; +$a->strings["Drop contact"] = "Drop contact"; +$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; +$a->strings["Contact has been removed."] = "Contact has been removed."; +$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; +$a->strings["You are sharing with %s"] = "You are sharing with %s"; +$a->strings["%s is sharing with you"] = "%s is sharing with you"; +$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; +$a->strings["Never"] = "Never"; +$a->strings["(Update was successful)"] = "(Update was successful)"; +$a->strings["(Update was not successful)"] = "(Update was not successful)"; +$a->strings["Suggest friends"] = "Suggest friends"; +$a->strings["Network type: %s"] = "Network type: %s"; +$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; +$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."; +$a->strings["Disabled"] = "Disabled"; +$a->strings["Fetch information"] = "Fetch information"; +$a->strings["Fetch keywords"] = "Fetch keywords"; +$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; +$a->strings["Contact Information / Notes"] = "Personal note"; +$a->strings["Contact Settings"] = "Notification and privacy "; +$a->strings["Contact"] = "Contact"; +$a->strings["Their personal note"] = "Their personal note"; +$a->strings["Edit contact notes"] = "Edit contact notes"; +$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; +$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; +$a->strings["Ignore contact"] = "Ignore contact"; +$a->strings["View conversations"] = "View conversations"; +$a->strings["Last update:"] = "Last update:"; +$a->strings["Update public posts"] = "Update public posts"; +$a->strings["Update now"] = "Update now"; +$a->strings["Unblock"] = "Unblock"; +$a->strings["Unignore"] = "Unignore"; +$a->strings["Currently blocked"] = "Currently blocked"; +$a->strings["Currently ignored"] = "Currently ignored"; +$a->strings["Currently archived"] = "Currently archived"; +$a->strings["Awaiting connection acknowledge"] = "Awaiting connection acknowledgement "; +$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; +$a->strings["Notification for new posts"] = "Notification for new posts"; +$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; +$a->strings["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; +$a->strings["Actions"] = "Actions"; +$a->strings["All Contacts"] = "All contacts"; +$a->strings["Show all contacts"] = "Show all contacts"; +$a->strings["Pending"] = "Pending"; +$a->strings["Only show pending contacts"] = "Only show pending contacts"; +$a->strings["Blocked"] = "Blocked"; +$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; +$a->strings["Ignored"] = "Ignored"; +$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; +$a->strings["Archived"] = "Archived"; +$a->strings["Only show archived contacts"] = "Only show archived contacts"; +$a->strings["Hidden"] = "Hidden"; +$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; +$a->strings["Organize your contact groups"] = "Organise your contact groups"; +$a->strings["Search your contacts"] = "Search your contacts"; +$a->strings["Results for: %s"] = "Results for: %s"; +$a->strings["Archive"] = "Archive"; +$a->strings["Unarchive"] = "Unarchive"; +$a->strings["Batch Actions"] = "Batch actions"; +$a->strings["Conversations started by this contact"] = "Conversations started by this contact"; +$a->strings["Posts and Comments"] = "Posts and Comments"; +$a->strings["Profile Details"] = "Profile Details"; +$a->strings["View all contacts"] = "View all contacts"; +$a->strings["View all common friends"] = "View all common friends"; +$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; +$a->strings["Mutual Friendship"] = "Mutual friendship"; +$a->strings["is a fan of yours"] = "is a fan of yours"; +$a->strings["you are a fan of"] = "I follow them"; +$a->strings["Pending outgoing contact request"] = "Pending outgoing contact request"; +$a->strings["Pending incoming contact request"] = "Pending incoming contact request"; +$a->strings["Refetch contact data"] = "Re-fetch contact data."; +$a->strings["Toggle Blocked status"] = "Toggle blocked status"; +$a->strings["Toggle Ignored status"] = "Toggle ignored status"; +$a->strings["Toggle Archive status"] = "Toggle archive status"; +$a->strings["Delete contact"] = "Delete contact"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "This information is required for communication and is passed on to the nodes of the communication partners and stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."; +$a->strings["Privacy Statement"] = "Privacy Statement"; +$a->strings["Help:"] = "Help:"; +$a->strings["Method Not Allowed."] = "Method not allowed."; +$a->strings["Profile not found"] = ""; +$a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; +$a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; +$a->strings["Please join us on Friendica"] = "Please join us on Friendica."; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitation limit is exceeded. Please contact your site administrator."; +$a->strings["%s : Message delivery failed."] = "%s : Message delivery failed"; +$a->strings["%d message sent."] = [ + 0 => "%d message sent.", + 1 => "%d messages sent.", +]; +$a->strings["You have no more invitations available"] = "You have no more invitations available."; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members."; +$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."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."; +$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s."; +$a->strings["Send invitations"] = "Send invitations"; +$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"; +$a->strings["People Search - %s"] = "People search - %s"; +$a->strings["Forum Search - %s"] = "Forum search - %s"; $a->strings["Disable"] = "Disable"; $a->strings["Enable"] = "Enable"; +$a->strings["Theme %s disabled."] = "Theme %s disabled."; +$a->strings["Theme %s successfully enabled."] = "Theme %s successfully enabled."; +$a->strings["Theme %s failed to install."] = "Theme %s failed to install."; +$a->strings["Screenshot"] = "Screenshot"; $a->strings["Administration"] = "Administration"; -$a->strings["Addons"] = "Addons"; $a->strings["Toggle"] = "Toggle"; $a->strings["Author: "] = "Author: "; $a->strings["Maintainer: "] = "Maintainer: "; -$a->strings["Addon %s failed to install."] = "Addon %s failed to install."; -$a->strings["Reload active addons"] = "Reload active addons"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"; -$a->strings["%s contact unblocked"] = [ - 0 => "%s contact unblocked", - 1 => "%s contacts unblocked", +$a->strings["Unknown theme."] = "Unknown theme."; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Reload active themes"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "No themes found on the system. They should be placed in %1\$s"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Unsupported]"; +$a->strings["Lock feature %s"] = "Lock feature %s"; +$a->strings["Manage Additional Features"] = "Manage additional features"; +$a->strings["%s user blocked"] = [ + 0 => "%s user blocked", + 1 => "%s users blocked", ]; -$a->strings["Remote Contact Blocklist"] = "Remote contact block-list"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "This page allows you to prevent any message from a remote contact to reach your node."; -$a->strings["Block Remote Contact"] = "Block Remote Contact"; +$a->strings["%s user unblocked"] = [ + 0 => "%s user unblocked", + 1 => "%s users unblocked", +]; +$a->strings["You can't remove yourself"] = "You can't remove yourself"; +$a->strings["%s user deleted"] = [ + 0 => "%s user deleted", + 1 => "%s users deleted", +]; +$a->strings["%s user approved"] = [ + 0 => "%s user approved", + 1 => "%s users approved", +]; +$a->strings["%s registration revoked"] = [ + 0 => "%s registration revoked", + 1 => "%s registrations revoked", +]; +$a->strings["User \"%s\" deleted"] = "User \"%s\" deleted"; +$a->strings["User \"%s\" blocked"] = "User \"%s\" blocked"; +$a->strings["User \"%s\" unblocked"] = "User \"%s\" unblocked"; +$a->strings["Account approved."] = "Account approved."; +$a->strings["Registration revoked"] = "Registration revoked"; +$a->strings["Private Forum"] = "Private Forum"; +$a->strings["Relay"] = "Relay"; +$a->strings["Email"] = "Email"; +$a->strings["Register date"] = "Registration date"; +$a->strings["Last login"] = "Last login"; +$a->strings["Last public item"] = "Last public item"; +$a->strings["Type"] = "Type"; +$a->strings["Add User"] = "Add user"; $a->strings["select all"] = "select all"; -$a->strings["select none"] = "select none"; -$a->strings["Unblock"] = "Unblock"; -$a->strings["No remote contact is blocked from this node."] = "No remote contact is blocked from this node."; -$a->strings["Blocked Remote Contacts"] = "Blocked remote contacts"; -$a->strings["Block New Remote Contact"] = "Block new remote contact"; -$a->strings["Photo"] = "Photo"; -$a->strings["Reason"] = "Reason"; -$a->strings["%s total blocked contact"] = [ - 0 => "%s total blocked contact", - 1 => "%s total blocked contacts", -]; -$a->strings["URL of the remote contact to block."] = "URL of the remote contact to block."; -$a->strings["Block Reason"] = "Reason for blocking"; -$a->strings["Server domain pattern added to blocklist."] = "Server domain pattern added to block-list."; -$a->strings["Site blocklist updated."] = "Site block-list updated."; -$a->strings["Blocked server domain pattern"] = "Blocked server domain pattern"; -$a->strings["Reason for the block"] = "Reason for the block"; -$a->strings["Delete server domain pattern"] = "Delete server domain pattern"; -$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the block-list"; -$a->strings["Server Domain Pattern Blocklist"] = "Server domain pattern block-list"; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "This page can be used to define a block-list of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily."; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"; -$a->strings["Add new entry to block list"] = "Add new entry to block-list"; -$a->strings["Server Domain Pattern"] = "Server Domain Pattern"; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "The domain pattern of the new server to add to the block list. Do not include the protocol."; -$a->strings["Block reason"] = "Block reason"; -$a->strings["The reason why you blocked this server domain pattern."] = "The reason why you blocked this server domain pattern."; -$a->strings["Add Entry"] = "Add entry"; -$a->strings["Save changes to the blocklist"] = "Save changes to the block-list"; -$a->strings["Current Entries in the Blocklist"] = "Current entries in the block-list"; -$a->strings["Delete entry from blocklist"] = "Delete entry from block-list"; -$a->strings["Delete entry from blocklist?"] = "Delete entry from block-list?"; +$a->strings["User registrations waiting for confirm"] = "User registrations awaiting confirmation"; +$a->strings["User waiting for permanent deletion"] = "User awaiting permanent deletion"; +$a->strings["Request date"] = "Request date"; +$a->strings["No registrations."] = "No registrations."; +$a->strings["Note from the user"] = "Note from the user"; +$a->strings["Deny"] = "Deny"; +$a->strings["User blocked"] = "User blocked"; +$a->strings["Site admin"] = "Site admin"; +$a->strings["Account expired"] = "Account expired"; +$a->strings["New User"] = "New user"; +$a->strings["Permanent deletion"] = "Permanent deletion"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$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?"] = "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$a->strings["Name of the new user."] = "Name of the new user."; +$a->strings["Nickname"] = "Nickname"; +$a->strings["Nickname of the new user."] = "Nickname of the new user."; +$a->strings["Email address of the new user."] = "Email address of the new user."; +$a->strings["Inspect Deferred Worker Queue"] = "Inspect Deferred Worker Queue"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed."; +$a->strings["Inspect Worker Queue"] = "Inspect Worker Queue"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = "Job Parameters"; +$a->strings["Created"] = "Created"; +$a->strings["Priority"] = "Priority"; $a->strings["Update has been marked successful"] = "Update has been marked successful"; $a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Executing of database structure update %s failed with error: %s"; @@ -1218,27 +1531,15 @@ $a->strings["Failed Updates"] = "Failed updates"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "This does not include updates prior to 1139, which did not return a status."; $a->strings["Mark success (if update was manually applied)"] = "Mark success (if update was manually applied)"; $a->strings["Attempt to execute this update step automatically"] = "Attempt to execute this update step automatically"; -$a->strings["Lock feature %s"] = "Lock feature %s"; -$a->strings["Manage Additional Features"] = "Manage additional features"; $a->strings["Other"] = "Other"; $a->strings["unknown"] = "unknown"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here."; -$a->strings["Federation Statistics"] = "Federation statistics"; $a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Currently this node is aware of %d nodes with %d registered users from the following platforms:"; -$a->strings["Item marked for deletion."] = "Item marked for deletion."; -$a->strings["Delete Item"] = "Delete item"; -$a->strings["Delete this Item"] = "Delete"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "GUID of item to be deleted."; -$a->strings["Item Guid"] = "Item Guid"; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Couldn't open %1\$s log file.\\r\\n
Check if file %1\$s is readable."; $a->strings["The logfile '%s' is not writable. No logging possible"] = "The logfile '%s' is not writeable. No logging possible"; -$a->strings["Log settings updated."] = "Log settings updated."; $a->strings["PHP log currently enabled."] = "PHP log currently enabled."; $a->strings["PHP log currently disabled."] = "PHP log currently disabled."; -$a->strings["Logs"] = "Logs"; $a->strings["Clear"] = "Clear"; $a->strings["Enable Debugging"] = "Enable debugging"; $a->strings["Log file"] = "Log file"; @@ -1246,20 +1547,9 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Log level"; $a->strings["PHP logging"] = "PHP logging"; $a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Couldn't open %1\$s log file.\\r\\n
Check if file %1\$s is readable."; -$a->strings["View Logs"] = "View logs"; -$a->strings["Inspect Deferred Worker Queue"] = "Inspect Deferred Worker Queue"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed."; -$a->strings["Inspect Worker Queue"] = "Inspect Worker Queue"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = "Job Parameters"; -$a->strings["Created"] = "Created"; -$a->strings["Priority"] = "Priority"; $a->strings["Can not parse base url. Must have at least ://"] = "Can not parse base URL. Must have at least ://"; +$a->strings["Relocation started. Could take a while to complete."] = ""; $a->strings["Invalid storage backend setting value."] = "Invalid storage backend settings."; -$a->strings["Site settings updated."] = "Site settings updated."; $a->strings["No special theme for mobile devices"] = "No special theme for mobile devices"; $a->strings["%s - (Experimental)"] = "%s - (Experimental)"; $a->strings["No community page for local users"] = "No community page for local users"; @@ -1267,31 +1557,18 @@ $a->strings["No community page"] = "No community page"; $a->strings["Public postings from users of this site"] = "Public postings from users of this site"; $a->strings["Public postings from the federated network"] = "Public postings from the federated network"; $a->strings["Public postings from local users and the federated network"] = "Public postings from local users and the federated network"; -$a->strings["Disabled"] = "Disabled"; -$a->strings["Users"] = "Users"; -$a->strings["Users, Global Contacts"] = "Users, global contacts"; -$a->strings["Users, Global Contacts/fallback"] = "Users, Global Contacts/fallback"; -$a->strings["One month"] = "One month"; -$a->strings["Three months"] = "Three months"; -$a->strings["Half a year"] = "Half a year"; -$a->strings["One year"] = "One a year"; $a->strings["Multi user instance"] = "Multi user instance"; $a->strings["Closed"] = "Closed"; $a->strings["Requires approval"] = "Requires approval"; $a->strings["Open"] = "Open"; -$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state"; -$a->strings["Force all links to use SSL"] = "Force all links to use SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)"; $a->strings["Don't check"] = "Don't check"; $a->strings["check the stable version"] = "check for stable version updates"; $a->strings["check the development version"] = "check for development version updates"; $a->strings["none"] = "none"; -$a->strings["Direct contacts"] = "Direct contacts"; -$a->strings["Contacts of contacts"] = "Contacts of contacts"; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; $a->strings["Database (legacy)"] = "Database (legacy)"; -$a->strings["Site"] = "Site"; $a->strings["Republish users to directory"] = "Republish users to directory"; -$a->strings["Registration"] = "Join this Friendica Node Today"; $a->strings["File upload"] = "File upload"; $a->strings["Policies"] = "Policies"; $a->strings["Auto Discovered Contact Directory"] = "Auto-discovered contact directory"; @@ -1316,8 +1593,6 @@ $a->strings["System theme"] = "System theme"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = "Default system theme - may be over-ridden by user profiles - Change default theme settings"; $a->strings["Mobile system theme"] = "Mobile system theme"; $a->strings["Theme for mobile devices"] = "Theme for mobile devices"; -$a->strings["SSL link policy"] = "SSL link policy"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL"; $a->strings["Force SSL"] = "Force SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."; $a->strings["Hide help entry from navigation menu"] = "Hide help entry from navigation menu"; @@ -1398,20 +1673,19 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum load average (frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximum system load before the frontend quits service (default 50)."; $a->strings["Minimal Memory"] = "Minimal memory"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."; -$a->strings["Maximum table size for optimization"] = "Maximum table size for optimization"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maximum table size (in MB) for automatic optimization. Enter -1 to disable it."; -$a->strings["Minimum level of fragmentation"] = "Minimum level of fragmentation"; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimum fragmentation level to start the automatic optimization (default 30%)."; -$a->strings["Periodical check of global contacts"] = "Periodical check of global contacts"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."; -$a->strings["Discover followers/followings from global contacts"] = "Discover followers/followings from global contacts"; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = "If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Days between enquiry"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Number of days after which a server is required check contacts."; $a->strings["Discover contacts from other servers"] = "Discover contacts from other servers"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = "Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."; -$a->strings["Timeframe for fetching global contacts"] = "Time-frame for fetching global contacts"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Search the local directory"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."; $a->strings["Publish server information"] = "Publish server information"; @@ -1434,6 +1708,8 @@ $a->strings["Cache duration in seconds"] = "Cache duration in seconds"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)"; $a->strings["Maximum numbers of comments per post"] = "Maximum numbers of comments per post"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "How many comments should be shown for each post? (Default 100)"; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Temp path"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."; $a->strings["Disable picture proxy"] = "Disable picture proxy"; @@ -1468,8 +1744,10 @@ $a->strings["Comma separated list of tags for the \"tags\" subscription."] = "Co $a->strings["Allow user tags"] = "Allow user tags"; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = "If enabled, the tags from the saved searches will be used for the \"tags\" subscription in addition to the \"relay_server_tags\"."; $a->strings["Start Relocation"] = "Start relocation"; +$a->strings["Template engine (%s) error: %s"] = ""; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"; $a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "A new Friendica version is available now. Your current version is %1\$s, upstream version is %2\$s"; $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear."; $a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear at the standard output and logfile."; @@ -1491,23 +1769,10 @@ $a->strings["Blog Account"] = "Blog account"; $a->strings["Private Forum Account"] = "Private forum account"; $a->strings["Message queues"] = "Message queues"; $a->strings["Server Settings"] = "Server Settings"; -$a->strings["Summary"] = "Summary"; $a->strings["Registered users"] = "Registered users"; $a->strings["Pending registrations"] = "Pending registrations"; $a->strings["Version"] = "Version"; $a->strings["Active addons"] = "Active addons"; -$a->strings["Theme settings updated."] = "Theme settings updated."; -$a->strings["Theme %s disabled."] = "Theme %s disabled."; -$a->strings["Theme %s successfully enabled."] = "Theme %s successfully enabled."; -$a->strings["Theme %s failed to install."] = "Theme %s failed to install."; -$a->strings["Screenshot"] = "Screenshot"; -$a->strings["Themes"] = "Theme selection"; -$a->strings["Unknown theme."] = "Unknown theme."; -$a->strings["Reload active themes"] = "Reload active themes"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "No themes found on the system. They should be placed in %1\$s"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[Unsupported]"; -$a->strings["The Terms of Service settings have been updated."] = "The Terms of Service settings have been updated."; $a->strings["Display Terms of Service"] = "Display Terms of Service"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."; $a->strings["Display Privacy Statement"] = "Display Privacy Statement"; @@ -1515,94 +1780,129 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Privacy Statement Preview"; $a->strings["The Terms of Service"] = "Terms of Service"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or lower."; -$a->strings["%s user blocked"] = [ - 0 => "%s user blocked", - 1 => "%s users blocked", +$a->strings["Server domain pattern added to blocklist."] = "Server domain pattern added to block-list."; +$a->strings["Blocked server domain pattern"] = "Blocked server domain pattern"; +$a->strings["Reason for the block"] = "Reason for the block"; +$a->strings["Delete server domain pattern"] = "Delete server domain pattern"; +$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the block-list"; +$a->strings["Server Domain Pattern Blocklist"] = "Server domain pattern block-list"; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily."; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"; +$a->strings["Add new entry to block list"] = "Add new entry to block-list"; +$a->strings["Server Domain Pattern"] = "Server Domain Pattern"; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "The domain pattern of the new server to add to the block list. Do not include the protocol."; +$a->strings["Block reason"] = "Block reason"; +$a->strings["The reason why you blocked this server domain pattern."] = "The reason why you blocked this server domain pattern."; +$a->strings["Add Entry"] = "Add entry"; +$a->strings["Save changes to the blocklist"] = "Save changes to the block-list"; +$a->strings["Current Entries in the Blocklist"] = "Current entries in the block-list"; +$a->strings["Delete entry from blocklist"] = "Delete entry from block-list"; +$a->strings["Delete entry from blocklist?"] = "Delete entry from block-list?"; +$a->strings["%s contact unblocked"] = [ + 0 => "%s contact unblocked", + 1 => "%s contacts unblocked", ]; -$a->strings["%s user unblocked"] = [ - 0 => "%s user unblocked", - 1 => "%s users unblocked", +$a->strings["Remote Contact Blocklist"] = "Remote contact block-list"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "This page allows you to prevent any message from a remote contact to reach your node."; +$a->strings["Block Remote Contact"] = "Block Remote Contact"; +$a->strings["select none"] = "select none"; +$a->strings["No remote contact is blocked from this node."] = "No remote contact is blocked from this node."; +$a->strings["Blocked Remote Contacts"] = "Blocked remote contacts"; +$a->strings["Block New Remote Contact"] = "Block new remote contact"; +$a->strings["Photo"] = "Photo"; +$a->strings["Reason"] = "Reason"; +$a->strings["%s total blocked contact"] = [ + 0 => "%s total blocked contact", + 1 => "%s total blocked contacts", ]; -$a->strings["You can't remove yourself"] = "You can't remove yourself"; -$a->strings["%s user deleted"] = [ - 0 => "%s user deleted", - 1 => "%s users deleted", -]; -$a->strings["%s user approved"] = [ - 0 => "%s user approved", - 1 => "%s users approved", -]; -$a->strings["%s registration revoked"] = [ - 0 => "%s registration revoked", - 1 => "%s registrations revoked", -]; -$a->strings["User \"%s\" deleted"] = "User \"%s\" deleted"; -$a->strings["User \"%s\" blocked"] = "User \"%s\" blocked"; -$a->strings["User \"%s\" unblocked"] = "User \"%s\" unblocked"; -$a->strings["Account approved."] = "Account approved."; -$a->strings["Registration revoked"] = "Registration revoked"; -$a->strings["Private Forum"] = "Private Forum"; -$a->strings["Relay"] = "Relay"; -$a->strings["Register date"] = "Registration date"; -$a->strings["Last login"] = "Last login"; -$a->strings["Last public item"] = "Last public item"; -$a->strings["Type"] = "Type"; -$a->strings["Add User"] = "Add user"; -$a->strings["User registrations waiting for confirm"] = "User registrations awaiting confirmation"; -$a->strings["User waiting for permanent deletion"] = "User awaiting permanent deletion"; -$a->strings["Request date"] = "Request date"; -$a->strings["No registrations."] = "No registrations."; -$a->strings["Note from the user"] = "Note from the user"; -$a->strings["Deny"] = "Deny"; -$a->strings["User blocked"] = "User blocked"; -$a->strings["Site admin"] = "Site admin"; -$a->strings["Account expired"] = "Account expired"; -$a->strings["New User"] = "New user"; -$a->strings["Permanent deletion"] = "Permanent deletion"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"; -$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?"] = "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"; -$a->strings["Name of the new user."] = "Name of the new user."; -$a->strings["Nickname"] = "Nickname"; -$a->strings["Nickname of the new user."] = "Nickname of the new user."; -$a->strings["Email address of the new user."] = "Email address of the new user."; -$a->strings["No friends to display."] = "No friends to display."; -$a->strings["No installed applications."] = "No installed applications."; -$a->strings["Applications"] = "Applications"; +$a->strings["URL of the remote contact to block."] = "URL of the remote contact to block."; +$a->strings["Block Reason"] = "Reason for blocking"; +$a->strings["Item Guid"] = "Item Guid"; +$a->strings["Item marked for deletion."] = "Item marked for deletion."; +$a->strings["Delete this Item"] = "Delete"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "GUID of item to be deleted."; +$a->strings["Addon not found."] = "Addon not found."; +$a->strings["Addon %s disabled."] = "Addon %s disabled."; +$a->strings["Addon %s enabled."] = "Addon %s enabled."; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = "Addon %s failed to install."; +$a->strings["Reload active addons"] = "Reload active addons"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"; +$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; +$a->strings["Find on this site"] = "Find on this site"; +$a->strings["Results for:"] = "Results for:"; +$a->strings["Site Directory"] = "Site directory"; $a->strings["Item was not found."] = "Item was not found."; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = "A managed account cannot access the administration pages. Please log in as administrator."; -$a->strings["Overview"] = "Overview"; -$a->strings["Configuration"] = "Configuration"; -$a->strings["Additional features"] = "Additional features"; -$a->strings["Database"] = "Database"; -$a->strings["DB updates"] = "DB updates"; -$a->strings["Inspect Deferred Workers"] = "Inspect deferred workers"; -$a->strings["Inspect worker Queue"] = "Inspect worker queue"; -$a->strings["Tools"] = "Tools"; -$a->strings["Contact Blocklist"] = "Contact block-list"; -$a->strings["Server Blocklist"] = "Server block-list"; -$a->strings["Diagnostics"] = "Diagnostics"; -$a->strings["PHP Info"] = "PHP info"; -$a->strings["probe address"] = "Probe address"; -$a->strings["check webfinger"] = "Check WebFinger"; -$a->strings["Item Source"] = "Item source"; -$a->strings["Babel"] = "Babel"; -$a->strings["Addon Features"] = "Addon features"; -$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation"; -$a->strings["Profile Details"] = "Profile Details"; +$a->strings["Please enter a post body."] = "Please enter a post body."; +$a->strings["This feature is only available with the frio theme."] = "This feature is only available with the Frio theme."; +$a->strings["Compose new personal note"] = "Compose new personal note"; +$a->strings["Compose new post"] = "Compose new post"; +$a->strings["Visibility"] = "Visibility"; +$a->strings["Clear the location"] = "Clear location"; +$a->strings["Location services are unavailable on your device"] = "Location services are unavailable on your device"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Location services are disabled. Please check the website's permissions on your device"; +$a->strings["Installed addons/apps:"] = "Installed addons/apps:"; +$a->strings["No installed addons/apps"] = "No installed addons/apps"; +$a->strings["Read about the Terms of Service of this node."] = "Read about the Terms of Service of this node."; +$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Please visit Friendi.ca to learn more about the Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; +$a->strings["the bugtracker at github"] = "the bugtracker at github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"; $a->strings["Only You Can See This"] = "Only you can see this."; $a->strings["Tips for New Members"] = "Tips for New Members"; -$a->strings["People Search - %s"] = "People search - %s"; -$a->strings["Forum Search - %s"] = "Forum search - %s"; +$a->strings["The Photo with id %s is not available."] = "The Photo with id %s is not available."; +$a->strings["Invalid photo with id %s."] = "Invalid photo with id %s."; +$a->strings["The provided profile link doesn't seem to be valid"] = "The provided profile link doesn't seem to be valid"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."; $a->strings["Account"] = "Account"; -$a->strings["Two-factor authentication"] = "Two-factor authentication"; $a->strings["Display"] = "Display"; $a->strings["Manage Accounts"] = "Manage Accounts"; $a->strings["Connected apps"] = "Connected apps"; $a->strings["Export personal data"] = "Export personal data"; $a->strings["Remove account"] = "Remove account"; -$a->strings["This page is missing a url parameter."] = "This page is missing a URL parameter."; -$a->strings["The post was created"] = "The post was created"; -$a->strings["Contact settings applied."] = "Contact settings applied."; +$a->strings["Could not create group."] = "Could not create group."; +$a->strings["Group not found."] = "Group not found."; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = "Unknown group."; +$a->strings["Contact is deleted."] = "Contact is deleted."; +$a->strings["Unable to add the contact to the group."] = "Unable to add contact to group."; +$a->strings["Contact successfully added to group."] = "Contact successfully added to group."; +$a->strings["Unable to remove the contact from the group."] = "Unable to remove contact from group."; +$a->strings["Contact successfully removed from group."] = "Contact removed from group."; +$a->strings["Unknown group command."] = "Unknown group command."; +$a->strings["Bad request."] = "Bad request."; +$a->strings["Save Group"] = "Save group"; +$a->strings["Filter"] = "Filter"; +$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; +$a->strings["Group Name: "] = "Group name: "; +$a->strings["Contacts not in any group"] = "Contacts not in any group"; +$a->strings["Unable to remove group."] = "Unable to remove group."; +$a->strings["Delete Group"] = "Delete group"; +$a->strings["Edit Group Name"] = "Edit group name"; +$a->strings["Members"] = "Members"; +$a->strings["Remove contact from group"] = "Remove contact from group"; +$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove it."; +$a->strings["Add contact to group"] = "Add contact to group"; +$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not logged in users."; +$a->strings["Search"] = "Search"; +$a->strings["Items tagged with: %s"] = "Items tagged with: %s"; +$a->strings["You must be logged in to use this module."] = "You must be logged in to use this module."; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = "Search term already saved."; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "No profile"; +$a->strings["Error while sending poke, please retry."] = ""; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; +$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; +$a->strings["Make this post private"] = "Make this post private"; $a->strings["Contact update failed."] = "Contact update failed."; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Warning: These are highly advanced settings. If you enter incorrect information your communications with this contact may not working."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Please use your browser 'Back' button now if you are uncertain what to do on this page."; @@ -1610,7 +1910,6 @@ $a->strings["No mirroring"] = "No mirroring"; $a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting"; $a->strings["Mirror as my own posting"] = "Mirror as my own posting"; $a->strings["Return to contact editor"] = "Return to contact editor"; -$a->strings["Refetch contact data"] = "Re-fetch contact data."; $a->strings["Remote Self"] = "Remote self"; $a->strings["Mirror postings from this contact"] = "Mirror postings from this contact:"; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "This will cause Friendica to repost new entries from this contact."; @@ -1623,417 +1922,9 @@ $a->strings["Friend Confirm URL"] = "Friend confirm URL:"; $a->strings["Notification Endpoint URL"] = "Notification endpoint URL"; $a->strings["Poll/Feed URL"] = "Poll/Feed URL:"; $a->strings["New photo from this URL"] = "New photo from this URL:"; -$a->strings["%d contact edited."] = [ - 0 => "%d contact edited.", - 1 => "%d contacts edited.", -]; -$a->strings["Could not access contact record."] = "Could not access contact record."; -$a->strings["Contact updated."] = "Contact updated."; -$a->strings["Contact not found"] = "Contact not found"; -$a->strings["Contact has been blocked"] = "Contact has been blocked"; -$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; -$a->strings["Contact has been ignored"] = "Contact has been ignored"; -$a->strings["Contact has been unignored"] = "Contact has been unignored"; -$a->strings["Contact has been archived"] = "Contact has been archived"; -$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; -$a->strings["Drop contact"] = "Drop contact"; -$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; -$a->strings["Contact has been removed."] = "Contact has been removed."; -$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; -$a->strings["You are sharing with %s"] = "You are sharing with %s"; -$a->strings["%s is sharing with you"] = "%s is sharing with you"; -$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; -$a->strings["Never"] = "Never"; -$a->strings["(Update was successful)"] = "(Update was successful)"; -$a->strings["(Update was not successful)"] = "(Update was not successful)"; -$a->strings["Suggest friends"] = "Suggest friends"; -$a->strings["Network type: %s"] = "Network type: %s"; -$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; -$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."; -$a->strings["Fetch information"] = "Fetch information"; -$a->strings["Fetch keywords"] = "Fetch keywords"; -$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; -$a->strings["Contact Information / Notes"] = "Personal note"; -$a->strings["Contact Settings"] = "Notification and privacy "; -$a->strings["Contact"] = "Contact"; -$a->strings["Their personal note"] = "Their personal note"; -$a->strings["Edit contact notes"] = "Edit contact notes"; -$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; -$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; -$a->strings["Ignore contact"] = "Ignore contact"; -$a->strings["View conversations"] = "View conversations"; -$a->strings["Last update:"] = "Last update:"; -$a->strings["Update public posts"] = "Update public posts"; -$a->strings["Update now"] = "Update now"; -$a->strings["Unignore"] = "Unignore"; -$a->strings["Currently blocked"] = "Currently blocked"; -$a->strings["Currently ignored"] = "Currently ignored"; -$a->strings["Currently archived"] = "Currently archived"; -$a->strings["Awaiting connection acknowledge"] = "Awaiting connection acknowledgement "; -$a->strings["Hide this contact from others"] = "Hide this contact from others"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; -$a->strings["Notification for new posts"] = "Notification for new posts"; -$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; -$a->strings["Blacklisted keywords"] = "Blacklisted keywords"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; -$a->strings["Actions"] = "Actions"; -$a->strings["Show all contacts"] = "Show all contacts"; -$a->strings["Pending"] = "Pending"; -$a->strings["Only show pending contacts"] = "Only show pending contacts"; -$a->strings["Blocked"] = "Blocked"; -$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; -$a->strings["Ignored"] = "Ignored"; -$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; -$a->strings["Archived"] = "Archived"; -$a->strings["Only show archived contacts"] = "Only show archived contacts"; -$a->strings["Hidden"] = "Hidden"; -$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; -$a->strings["Organize your contact groups"] = "Organise your contact groups"; -$a->strings["Search your contacts"] = "Search your contacts"; -$a->strings["Results for: %s"] = "Results for: %s"; -$a->strings["Archive"] = "Archive"; -$a->strings["Unarchive"] = "Unarchive"; -$a->strings["Batch Actions"] = "Batch actions"; -$a->strings["Conversations started by this contact"] = "Conversations started by this contact"; -$a->strings["Posts and Comments"] = "Posts and Comments"; -$a->strings["View all contacts"] = "View all contacts"; -$a->strings["View all common friends"] = "View all common friends"; -$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; -$a->strings["Mutual Friendship"] = "Mutual friendship"; -$a->strings["is a fan of yours"] = "is a fan of yours"; -$a->strings["you are a fan of"] = "I follow them"; -$a->strings["Pending outgoing contact request"] = "Pending outgoing contact request"; -$a->strings["Pending incoming contact request"] = "Pending incoming contact request"; -$a->strings["Edit contact"] = "Edit contact"; -$a->strings["Toggle Blocked status"] = "Toggle blocked status"; -$a->strings["Toggle Ignored status"] = "Toggle ignored status"; -$a->strings["Toggle Archive status"] = "Toggle archive status"; -$a->strings["Delete contact"] = "Delete contact"; -$a->strings["Local Community"] = "Local community"; -$a->strings["Posts from local users on this server"] = "Posts from local users on this server"; -$a->strings["Global Community"] = "Global community"; -$a->strings["Posts from users of the whole federated network"] = "Posts from users of the whole federated network"; -$a->strings["No results."] = "No results."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."; -$a->strings["Community option not available."] = "Community option not available."; -$a->strings["Not available."] = "Not available."; -$a->strings["Credits"] = "Credits"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"; -$a->strings["Source input"] = "Source input"; -$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw HTML)"; -$a->strings["BBCode::convert"] = "BBCode::convert"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = "BBCode::toMarkdown => Markdown::convert (raw HTML)"; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; -$a->strings["Item Body"] = "Item Body"; -$a->strings["Item Tags"] = "Item Tags"; -$a->strings["Source input (Diaspora format)"] = "Source input (diaspora* format)"; -$a->strings["Source input (Markdown)"] = "Source input (Markdown)"; -$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (raw HTML)"; -$a->strings["Markdown::convert"] = "Markdown::convert"; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Raw HTML input"; -$a->strings["HTML Input"] = "HTML input"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (raw HTML)"; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; -$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (compact)"; -$a->strings["Source text"] = "Source text"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["You must be logged in to use this module"] = "You must be logged in to use this module"; -$a->strings["Source URL"] = "Source URL"; -$a->strings["Time Conversion"] = "Time conversion"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones."; -$a->strings["UTC time: %s"] = "UTC time: %s"; -$a->strings["Current timezone: %s"] = "Current time zone: %s"; -$a->strings["Converted localtime: %s"] = "Converted local time: %s"; -$a->strings["Please select your timezone:"] = "Please select your time zone:"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing."; -$a->strings["Lookup address"] = "Lookup address"; -$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; -$a->strings["Select an identity to manage: "] = "Select identity:"; -$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; -$a->strings["Find on this site"] = "Find on this site"; -$a->strings["Results for:"] = "Results for:"; -$a->strings["Site Directory"] = "Site directory"; -$a->strings["Filetag %s saved to item"] = "File-tag %s saved to item"; -$a->strings["- select -"] = "- select -"; -$a->strings["Installed addons/apps:"] = "Installed addons/apps:"; -$a->strings["No installed addons/apps"] = "No installed addons/apps"; -$a->strings["Read about the Terms of Service of this node."] = "Read about the Terms of Service of this node."; -$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Please visit Friendi.ca to learn more about the Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; -$a->strings["the bugtracker at github"] = "the bugtracker at github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"; -$a->strings["Suggested contact not found."] = "Suggested contact not found."; -$a->strings["Friend suggestion sent."] = "Friend suggestion sent"; -$a->strings["Suggest Friends"] = "Suggest friends"; -$a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; -$a->strings["Group created."] = "Group created."; -$a->strings["Could not create group."] = "Could not create group."; -$a->strings["Group not found."] = "Group not found."; -$a->strings["Group name changed."] = "Group name changed."; -$a->strings["Unknown group."] = "Unknown group."; -$a->strings["Contact is deleted."] = "Contact is deleted."; -$a->strings["Unable to add the contact to the group."] = "Unable to add contact to group."; -$a->strings["Contact successfully added to group."] = "Contact successfully added to group."; -$a->strings["Unable to remove the contact from the group."] = "Unable to remove contact from group."; -$a->strings["Contact successfully removed from group."] = "Contact removed from group."; -$a->strings["Unknown group command."] = "Unknown group command."; -$a->strings["Bad request."] = "Bad request."; -$a->strings["Save Group"] = "Save group"; -$a->strings["Filter"] = "Filter"; -$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; -$a->strings["Group removed."] = "Group removed."; -$a->strings["Unable to remove group."] = "Unable to remove group."; -$a->strings["Delete Group"] = "Delete group"; -$a->strings["Edit Group Name"] = "Edit group name"; -$a->strings["Members"] = "Members"; -$a->strings["Remove contact from group"] = "Remove contact from group"; -$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove it."; -$a->strings["Add contact to group"] = "Add contact to group"; -$a->strings["Help:"] = "Help:"; -$a->strings["Welcome to %s"] = "Welcome to %s"; -$a->strings["No profile"] = "No profile"; -$a->strings["Method Not Allowed."] = "Method not allowed."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup"; -$a->strings["System check"] = "System check"; -$a->strings["Check again"] = "Check again"; -$a->strings["Base settings"] = "Base settings"; -$a->strings["Host name"] = "Host name"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Overwrite this field in case the hostname is incorrect, otherwise leave it as is."; -$a->strings["Base path to installation"] = "Base path to installation"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."; -$a->strings["Sub path of the URL"] = "URL Subpath"; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Overwrite this field in case the subpath determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without subpath."; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database server name"; -$a->strings["Database Login Name"] = "Database login name"; -$a->strings["Database Login Password"] = "Database login password"; -$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty"; -$a->strings["Database Name"] = "Database name"; -$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website"; -$a->strings["Site settings"] = "Site settings"; -$a->strings["Site administrator email address"] = "Site administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["System Language:"] = "System language:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication."; -$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed."; -$a->strings["Installation finished"] = "Installation finished"; -$a->strings["

What next

"] = "

What next

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the worker."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."; -$a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; -$a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; -$a->strings["Please join us on Friendica"] = "Please join us on Friendica."; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitation limit is exceeded. Please contact your site administrator."; -$a->strings["%s : Message delivery failed."] = "%s : Message delivery failed"; -$a->strings["%d message sent."] = [ - 0 => "%d message sent.", - 1 => "%d messages sent.", -]; -$a->strings["You have no more invitations available"] = "You have no more invitations available."; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members."; -$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."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."; -$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s."; -$a->strings["Send invitations"] = "Send invitations"; -$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"; -$a->strings["Please enter a post body."] = "Please enter a post body."; -$a->strings["This feature is only available with the frio theme."] = "This feature is only available with the Frio theme."; -$a->strings["Compose new personal note"] = "Compose new personal note"; -$a->strings["Compose new post"] = "Compose new post"; -$a->strings["Visibility"] = "Visibility"; -$a->strings["Clear the location"] = "Clear location"; -$a->strings["Location services are unavailable on your device"] = "Location services are unavailable on your device"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Location services are disabled. Please check the website's permissions on your device"; -$a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; -$a->strings["A Decentralized Social Network"] = "A Decentralized Social Network"; -$a->strings["Show Ignored Requests"] = "Show ignored requests."; -$a->strings["Hide Ignored Requests"] = "Hide ignored requests"; -$a->strings["Notification type:"] = "Notification type:"; -$a->strings["Suggested by:"] = "Suggested by:"; -$a->strings["Claims to be known to you: "] = "Says they know me:"; -$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; -$a->strings["Friend"] = "Friend"; -$a->strings["Subscriber"] = "Subscriber"; -$a->strings["No introductions."] = "No introductions."; -$a->strings["No more %s notifications."] = "No more %s notifications."; -$a->strings["You must be logged in to show this page."] = "You must be logged in to show this page."; -$a->strings["Network Notifications"] = "Network notifications"; -$a->strings["System Notifications"] = "System notifications"; -$a->strings["Personal Notifications"] = "Personal notifications"; -$a->strings["Home Notifications"] = "Home notifications"; -$a->strings["Show unread"] = "Show unread"; -$a->strings["Show all"] = "Show all"; -$a->strings["The Photo with id %s is not available."] = "The Photo with id %s is not available."; -$a->strings["Invalid photo with id %s."] = "Invalid photo with id %s."; -$a->strings["User not found."] = "User not found."; -$a->strings["No contacts."] = "No contacts."; -$a->strings["Follower (%s)"] = [ - 0 => "Follower (%s)", - 1 => "Followers (%s)", -]; -$a->strings["Following (%s)"] = [ - 0 => "Following (%s)", - 1 => "Following (%s)", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "Mutual friend (%s)", - 1 => "Mutual friends (%s)", -]; -$a->strings["Contact (%s)"] = [ - 0 => "Contact (%s)", - 1 => "Contacts (%s)", -]; -$a->strings["All contacts"] = "All contacts"; -$a->strings["Member since:"] = "Member since:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Birthday:"; -$a->strings["Age: "] = "Age: "; -$a->strings["%d year old"] = [ - 0 => "%d year old", - 1 => "%d years old", -]; -$a->strings["Forums:"] = "Forums:"; -$a->strings["View profile as:"] = "View profile as:"; -$a->strings["%s's timeline"] = "%s's timeline"; -$a->strings["%s's posts"] = "%s's posts"; -$a->strings["%s's comments"] = "%s's comments"; -$a->strings["Only parent users can create additional accounts."] = "Only parent users can create additional accounts."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."; -$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?"; -$a->strings["Note for the admin"] = "Note for the admin"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node."; -$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only."; -$a->strings["Your invitation code: "] = "Your invitation code: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: "; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Your Email Address: (Initial information will be send there; so this must be an existing address.)"; -$a->strings["Please repeat your e-mail address:"] = "Please repeat your e-mail address:"; -$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."; -$a->strings["Choose a nickname: "] = "Choose a nickname: "; -$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; -$a->strings["Note: This node explicitly contains adult content"] = "Note: This node explicitly contains adult content"; -$a->strings["Parent Password:"] = "Parent password:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Please enter the password of the parent account to authorise this request."; -$a->strings["Password doesn't match."] = "Password doesn't match."; -$a->strings["Please enter your password."] = "Please enter your password."; -$a->strings["You have entered too much information."] = "You have entered too much information."; -$a->strings["Please enter the identical mail address in the second field."] = "Please enter the identical mail address in the second field."; -$a->strings["The additional account was created."] = "The additional account was created."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Failed to send email message. Here your account details:
login: %s
password: %s

You can change your password after login."; -$a->strings["Registration successful."] = "Registration successful."; -$a->strings["Your registration can not be processed."] = "Your registration cannot be processed."; -$a->strings["You have to leave a request note for the admin."] = "You have to leave a request note for the admin."; -$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator."; -$a->strings["The provided profile link doesn't seem to be valid"] = "The provided profile link doesn't seem to be valid"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."; -$a->strings["You must be logged in to use this module."] = "You must be logged in to use this module."; -$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not logged in users."; -$a->strings["Items tagged with: %s"] = "Items tagged with: %s"; -$a->strings["Search term successfully saved."] = "Search term successfully saved."; -$a->strings["Search term already saved."] = "Search term already saved."; -$a->strings["Search term successfully removed."] = "Search term successfully removed."; -$a->strings["Create a New Account"] = "Create a new account"; -$a->strings["Your OpenID: "] = "Your OpenID: "; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Please enter your username and password to add the OpenID to your existing account."; -$a->strings["Or login using OpenID: "] = "Or login with OpenID: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Remember me"] = "Remember me"; -$a->strings["Forgot your password?"] = "Forgot your password?"; -$a->strings["Website Terms of Service"] = "Website Terms of Service"; -$a->strings["terms of service"] = "Terms of service"; -$a->strings["Website Privacy Policy"] = "Website Privacy Policy"; -$a->strings["privacy policy"] = "Privacy policy"; -$a->strings["Logged out."] = "Logged out."; -$a->strings["OpenID protocol error. No ID returned"] = "OpenID protocol error. No ID returned"; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Account not found. Please login to your existing account to add the OpenID."; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Account not found. Please register a new account or login to your existing account to add the OpenID."; -$a->strings["Remaining recovery codes: %d"] = "Remaining recovery codes: %d"; -$a->strings["Invalid code, please retry."] = "Invalid code, please try again."; -$a->strings["Two-factor recovery"] = "Two-factor recovery"; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Don’t have your phone? Enter a two-factor recovery code"; -$a->strings["Please enter a recovery code"] = "Please enter a recovery code"; -$a->strings["Submit recovery code and complete login"] = "Submit recovery code and complete login"; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"; -$a->strings["Please enter a code from your authentication app"] = "Please enter a code from your authentication app"; -$a->strings["Verify code and complete login"] = "Verify code and complete login"; -$a->strings["Delegation successfully granted."] = "Delegation successfully granted."; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "Parent user not found, unavailable or password doesn't match."; -$a->strings["Delegation successfully revoked."] = "Delegation successfully revoked."; -$a->strings["Delegated administrators can view but not change delegation permissions."] = "Delegated administrators can view but not change delegation permissions."; -$a->strings["Delegate user not found."] = "Delegate user not found."; -$a->strings["No parent user"] = "No parent user"; -$a->strings["Parent User"] = "Parent user"; -$a->strings["Additional Accounts"] = "Additional Accounts"; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "Register additional accounts that are automatically connected to your existing account so you can manage them from this account."; -$a->strings["Register an additional account"] = "Register an additional account"; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Parent users have total control of this account, including core settings. Please double-check whom you grant such access."; -$a->strings["Delegates"] = "Delegates"; -$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."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."; -$a->strings["Existing Page Delegates"] = "Existing page delegates"; -$a->strings["Potential Delegates"] = "Potential delegates"; -$a->strings["Add"] = "Add"; -$a->strings["No entries."] = "No entries."; -$a->strings["The theme you chose isn't available."] = "The chosen theme isn't available."; -$a->strings["%s - (Unsupported)"] = "%s - (Unsupported)"; -$a->strings["Display Settings"] = "Display Settings"; -$a->strings["General Theme Settings"] = "Themes"; -$a->strings["Custom Theme Settings"] = "Theme customisation"; -$a->strings["Content Settings"] = "Content/Layout"; -$a->strings["Theme settings"] = "Theme settings"; -$a->strings["Calendar"] = "Calendar"; -$a->strings["Display Theme:"] = "Display theme:"; -$a->strings["Mobile Theme:"] = "Mobile theme:"; -$a->strings["Number of items to display per page:"] = "Number of items displayed per page:"; -$a->strings["Maximum of 100 items"] = "Maximum of 100 items"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Number of items displayed per page on mobile devices:"; -$a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1."; -$a->strings["Automatic updates only at the top of the post stream pages"] = "Automatic updates only at the top of the post stream pages"; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "Auto update may add new posts at the top of the post stream pages. This can affect the scroll position and perturb normal reading if something happens anywhere else the top of the page."; -$a->strings["Don't show emoticons"] = "Don't show emoticons"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Normally emoticons are replaced with matching symbols. This setting disables this behaviour."; -$a->strings["Infinite scroll"] = "Infinite scroll"; -$a->strings["Automatic fetch new items when reaching the page end."] = "Automatic fetch new items when reaching the page end."; -$a->strings["Disable Smart Threading"] = "Disable smart threading"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Disable the automatic suppression of extraneous thread indentation."; -$a->strings["Hide the Dislike feature"] = "Hide the Dislike feature"; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Hides the Dislike button and Dislike reactions on posts and comments."; -$a->strings["Beginning of week:"] = "Week begins: "; +$a->strings["No installed applications."] = "No installed applications."; +$a->strings["Applications"] = "Applications"; $a->strings["Profile Name is required."] = "Profile name is required."; -$a->strings["Profile updated."] = "Profile updated."; $a->strings["Profile couldn't be updated."] = "Profile couldn't be updated."; $a->strings["Label:"] = "Label:"; $a->strings["Value:"] = "Value:"; @@ -2047,7 +1938,6 @@ $a->strings["Profile picture"] = "Profile picture"; $a->strings["Location"] = "Location"; $a->strings["Miscellaneous"] = "Miscellaneous"; $a->strings["Custom Profile Fields"] = "Custom Profile Fields"; -$a->strings["Upload Profile Photo"] = "Upload profile photo"; $a->strings["Display name:"] = "Display name:"; $a->strings["Street Address:"] = "Street address:"; $a->strings["Locality/City:"] = "Locality/City:"; @@ -2071,7 +1961,6 @@ $a->strings["Crop Image"] = "Crop Image"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing."; $a->strings["Use Image As Is"] = "Use image as it is."; $a->strings["Missing uploaded image."] = "Missing uploaded image."; -$a->strings["Image uploaded successfully."] = "Image uploaded successfully."; $a->strings["Profile Picture Settings"] = "Profile Picture Settings"; $a->strings["Current Profile Picture"] = "Current Profile Picture"; $a->strings["Upload Profile Picture"] = "Upload Profile Picture"; @@ -2079,23 +1968,23 @@ $a->strings["Upload Picture:"] = "Upload Picture:"; $a->strings["or"] = "or"; $a->strings["skip this step"] = "skip this step"; $a->strings["select a photo from your photo albums"] = "select a photo from your photo albums"; -$a->strings["Please enter your password to access this page."] = "Please enter your password to access this page."; -$a->strings["App-specific password generation failed: The description is empty."] = "App-specific password generation failed: The description is empty."; -$a->strings["App-specific password generation failed: This description already exists."] = "App-specific password generation failed: This description already exists."; -$a->strings["New app-specific password generated."] = "New app-specific password generated."; -$a->strings["App-specific passwords successfully revoked."] = "App-specific passwords successfully revoked."; -$a->strings["App-specific password successfully revoked."] = "App-specific password successfully revoked."; -$a->strings["Two-factor app-specific passwords"] = "Two-factor app-specific passwords"; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Make sure to copy your new app-specific password now. You won’t be able to see it again!"; -$a->strings["Description"] = "Description"; -$a->strings["Last Used"] = "Last Used"; -$a->strings["Revoke"] = "Revoke"; -$a->strings["Revoke All"] = "Revoke All"; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it."; -$a->strings["Generate new app-specific password"] = "Generate new app-specific password"; -$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa on my Fairphone 2..."; -$a->strings["Generate"] = "Generate"; +$a->strings["Delegation successfully granted."] = "Delegation successfully granted."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "Parent user not found, unavailable or password doesn't match."; +$a->strings["Delegation successfully revoked."] = "Delegation successfully revoked."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "Delegated administrators can view but not change delegation permissions."; +$a->strings["Delegate user not found."] = "Delegate user not found."; +$a->strings["No parent user"] = "No parent user"; +$a->strings["Parent User"] = "Parent user"; +$a->strings["Additional Accounts"] = "Additional Accounts"; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "Register additional accounts that are automatically connected to your existing account so you can manage them from this account."; +$a->strings["Register an additional account"] = "Register an additional account"; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Parent users have total control of this account, including core settings. Please double-check whom you grant such access."; +$a->strings["Delegates"] = "Delegates"; +$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."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."; +$a->strings["Existing Page Delegates"] = "Existing page delegates"; +$a->strings["Potential Delegates"] = "Potential delegates"; +$a->strings["Add"] = "Add"; +$a->strings["No entries."] = "No entries."; $a->strings["Two-factor authentication successfully disabled."] = "Two-factor authentication successfully disabled."; $a->strings["Wrong Password"] = "Wrong password"; $a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"; @@ -2117,150 +2006,76 @@ $a->strings["Disable two-factor authentication"] = "Disable two-factor authentic $a->strings["Show recovery codes"] = "Show recovery codes"; $a->strings["Manage app-specific passwords"] = "Manage app-specific passwords"; $a->strings["Finish app configuration"] = "Finish app configuration"; -$a->strings["New recovery codes successfully generated."] = "New recovery codes successfully generated."; -$a->strings["Two-factor recovery codes"] = "Two-factor recovery codes"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

"; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."; -$a->strings["Generate new recovery codes"] = "Generate new recovery codes"; -$a->strings["Next: Verification"] = "Next: Verification"; +$a->strings["Please enter your password to access this page."] = "Please enter your password to access this page."; $a->strings["Two-factor authentication successfully activated."] = "Two-factor authentication successfully activated."; $a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account name
\n\t
%s
\n\t
Secret key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"; $a->strings["Two-factor code verification"] = "Two-factor code verification"; $a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Please scan this QR Code with your authenticator app and submit the provided code.

"; $a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = "

Or you can open the following URL in your mobile device:

%s

"; $a->strings["Verify code and enable two-factor authentication"] = "Verify code and enable two-factor authentication"; +$a->strings["New recovery codes successfully generated."] = "New recovery codes successfully generated."; +$a->strings["Two-factor recovery codes"] = "Two-factor recovery codes"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

"; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."; +$a->strings["Generate new recovery codes"] = "Generate new recovery codes"; +$a->strings["Next: Verification"] = "Next: Verification"; +$a->strings["App-specific password generation failed: The description is empty."] = "App-specific password generation failed: The description is empty."; +$a->strings["App-specific password generation failed: This description already exists."] = "App-specific password generation failed: This description already exists."; +$a->strings["New app-specific password generated."] = "New app-specific password generated."; +$a->strings["App-specific passwords successfully revoked."] = "App-specific passwords successfully revoked."; +$a->strings["App-specific password successfully revoked."] = "App-specific password successfully revoked."; +$a->strings["Two-factor app-specific passwords"] = "Two-factor app-specific passwords"; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Make sure to copy your new app-specific password now. You won’t be able to see it again!"; +$a->strings["Description"] = "Description"; +$a->strings["Last Used"] = "Last Used"; +$a->strings["Revoke"] = "Revoke"; +$a->strings["Revoke All"] = "Revoke All"; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it."; +$a->strings["Generate new app-specific password"] = "Generate new app-specific password"; +$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa on my Fairphone 2..."; +$a->strings["Generate"] = "Generate"; +$a->strings["The theme you chose isn't available."] = "The chosen theme isn't available."; +$a->strings["%s - (Unsupported)"] = "%s - (Unsupported)"; +$a->strings["Display Settings"] = "Display Settings"; +$a->strings["General Theme Settings"] = "Themes"; +$a->strings["Custom Theme Settings"] = "Theme customisation"; +$a->strings["Content Settings"] = "Content/Layout"; +$a->strings["Calendar"] = "Calendar"; +$a->strings["Display Theme:"] = "Display theme:"; +$a->strings["Mobile Theme:"] = "Mobile theme:"; +$a->strings["Number of items to display per page:"] = "Number of items displayed per page:"; +$a->strings["Maximum of 100 items"] = "Maximum of 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Number of items displayed per page on mobile devices:"; +$a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1."; +$a->strings["Automatic updates only at the top of the post stream pages"] = "Automatic updates only at the top of the post stream pages"; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "Auto update may add new posts at the top of the post stream pages. This can affect the scroll position and perturb normal reading if something happens anywhere else the top of the page."; +$a->strings["Don't show emoticons"] = "Don't show emoticons"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Normally emoticons are replaced with matching symbols. This setting disables this behaviour."; +$a->strings["Infinite scroll"] = "Infinite scroll"; +$a->strings["Automatic fetch new items when reaching the page end."] = "Automatic fetch new items when reaching the page end."; +$a->strings["Disable Smart Threading"] = "Disable smart threading"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Disable the automatic suppression of extraneous thread indentation."; +$a->strings["Hide the Dislike feature"] = "Hide the Dislike feature"; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Hides the Dislike button and Dislike reactions on posts and comments."; +$a->strings["Beginning of week:"] = "Week begins: "; $a->strings["Export account"] = "Export account"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server."; $a->strings["Export all"] = "Export all"; $a->strings["Export your account 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)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"; $a->strings["Export Contacts to CSV"] = "Export contacts to CSV"; $a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example."; -$a->strings["Bad Request"] = "Bad Request"; -$a->strings["Unauthorized"] = "Unauthorized"; -$a->strings["Forbidden"] = "Forbidden"; -$a->strings["Not Found"] = "Not found"; -$a->strings["Internal Server Error"] = "Internal Server Error"; -$a->strings["Service Unavailable"] = "Service Unavailable"; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = "The server cannot process the request due to an apparent client error."; -$a->strings["Authentication is required and has failed or has not yet been provided."] = "Authentication is required and has failed or has not yet been provided."; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."; -$a->strings["The requested resource could not be found but may be available in the future."] = "The requested resource could not be found but may be available in the future."; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "An unexpected condition was encountered and no more specific message is available."; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "This information is required for communication and is passed on to the nodes of the communication partners and stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."; -$a->strings["Privacy Statement"] = "Privacy Statement"; -$a->strings["Welcome to Friendica"] = "Welcome to Friendica"; -$a->strings["New Member Checklist"] = "New Member Checklist"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."; -$a->strings["Getting Started"] = "Getting started"; -$a->strings["Friendica Walk-Through"] = "Friendica walk-through"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."; -$a->strings["Go to Your Settings"] = "Go to your settings"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."; -$a->strings["Upload 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 a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."; -$a->strings["Edit Your Profile"] = "Edit your profile"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."; -$a->strings["Profile Keywords"] = "Profile keywords"; -$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."; -$a->strings["Connecting"] = "Connecting"; -$a->strings["Importing Emails"] = "Importing emails"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"; -$a->strings["Go to Your Contacts Page"] = "Go to your contacts page"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "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."; -$a->strings["Go to Your Site's Directory"] = "Go to your site's directory"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "The directory 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 when requested."; -$a->strings["Finding New People"] = "Finding new people"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."; -$a->strings["Group Your Contacts"] = "Group your contacts"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Once you have made some friends, organise them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."; -$a->strings["Why Aren't My Posts Public?"] = "Why aren't my posts public?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."; -$a->strings["Getting Help"] = "Getting help"; -$a->strings["Go to the Help Section"] = "Go to the help section"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network."; -$a->strings["You may visit them online at %s"] = "You may visit them online at %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages."; -$a->strings["%s posted an update."] = "%s posted an update."; -$a->strings["This entry was edited"] = "This entry was edited"; -$a->strings["Private Message"] = "Private message"; -$a->strings["pinned item"] = "pinned item"; -$a->strings["Delete locally"] = "Delete locally"; -$a->strings["Delete globally"] = "Delete globally"; -$a->strings["Remove locally"] = "Remove locally"; -$a->strings["save to folder"] = "Save to folder"; -$a->strings["I will attend"] = "I will attend"; -$a->strings["I will not attend"] = "I will not attend"; -$a->strings["I might attend"] = "I might attend"; -$a->strings["ignore thread"] = "Ignore thread"; -$a->strings["unignore thread"] = "Unignore thread"; -$a->strings["toggle ignore status"] = "Toggle ignore status"; -$a->strings["pin"] = "pin"; -$a->strings["unpin"] = "unpin"; -$a->strings["toggle pin status"] = "toggle pin status"; -$a->strings["pinned"] = "pinned"; -$a->strings["add star"] = "Add star"; -$a->strings["remove star"] = "Remove star"; -$a->strings["toggle star status"] = "Toggle star status"; -$a->strings["starred"] = "Starred"; -$a->strings["add tag"] = "Add tag"; -$a->strings["like"] = "Like"; -$a->strings["dislike"] = "Dislike"; -$a->strings["Share this"] = "Share this"; -$a->strings["share"] = "Share"; -$a->strings["%s (Received %s)"] = "%s (Received %s)"; -$a->strings["Comment this item on your system"] = "Comment this item on your system"; -$a->strings["remote comment"] = "remote comment"; -$a->strings["Pushed"] = "Pushed"; -$a->strings["Pulled"] = "Pulled"; -$a->strings["to"] = "to"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-wall"; -$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:"; -$a->strings["Reply to %s"] = "Reply to %s"; -$a->strings["More"] = "More"; -$a->strings["Notifier task is pending"] = "Notifier task is pending"; -$a->strings["Delivery to remote servers is pending"] = "Delivery to remote servers is pending"; -$a->strings["Delivery to remote servers is underway"] = "Delivery to remote servers is underway"; -$a->strings["Delivery to remote servers is mostly done"] = "Delivery to remote servers is mostly done"; -$a->strings["Delivery to remote servers is done"] = "Delivery to remote servers is done"; -$a->strings["%d comment"] = [ - 0 => "%d comment", - 1 => "%d comments", -]; -$a->strings["Show more"] = "Show more"; -$a->strings["Show fewer"] = "Show fewer"; -$a->strings["Attachments:"] = "Attachments:"; +$a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; $a->strings["%s is now following %s."] = "%s is now following %s."; $a->strings["following"] = "following"; $a->strings["%s stopped following %s."] = "%s stopped following %s."; $a->strings["stopped following"] = "stopped following"; -$a->strings["Hometown:"] = "Home town:"; -$a->strings["Marital Status:"] = "Marital Status:"; -$a->strings["With:"] = "With:"; -$a->strings["Since:"] = "Since:"; -$a->strings["Sexual Preference:"] = "Sexual preference:"; -$a->strings["Political Views:"] = "Political views:"; -$a->strings["Religious Views:"] = "Religious views:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Title/Description:"] = "Title/Description:"; -$a->strings["Musical interests"] = "Music:"; -$a->strings["Books, literature"] = "Books, literature, poetry:"; -$a->strings["Television"] = "Television:"; -$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interests:"; -$a->strings["Love/romance"] = "Love/Romance:"; -$a->strings["Work/employment"] = "Work/Employment:"; -$a->strings["School/education"] = "School/Education:"; -$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:"; -$a->strings["Friendica Notification"] = "Friendica notification"; +$a->strings["Attachments:"] = "Attachments:"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator"; $a->strings["%s Administrator"] = "%s Administrator"; $a->strings["thanks"] = "thanks"; +$a->strings["Friendica Notification"] = "Friendica notification"; $a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD or MM-DD"; $a->strings["never"] = "never"; $a->strings["less than a second ago"] = "less than a second ago"; @@ -2277,58 +2092,236 @@ $a->strings["second"] = "second"; $a->strings["seconds"] = "seconds"; $a->strings["in %1\$d %2\$s"] = "in %1\$d %2\$s"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago"; -$a->strings["(no subject)"] = "(no subject)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Updating author-id and owner-id in item and thread table. "; -$a->strings["%s: Updating post-type."] = "%s: Updating post-type."; -$a->strings["default"] = "default"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variations"; -$a->strings["Custom"] = "Custom"; -$a->strings["Note"] = "Note"; -$a->strings["Check image permissions if all users are allowed to see the image"] = "Check image permissions that all everyone is allowed to see the image"; -$a->strings["Select color scheme"] = "Select colour scheme"; -$a->strings["Copy or paste schemestring"] = "Copy or paste theme string"; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "You can copy this string to share your theme with others. Pasting here applies the theme string"; -$a->strings["Navigation bar background color"] = "Navigation bar background colour:"; -$a->strings["Navigation bar icon color "] = "Navigation bar icon colour:"; -$a->strings["Link color"] = "Link colour:"; -$a->strings["Set the background color"] = "Background colour:"; -$a->strings["Content background opacity"] = "Content background opacity"; -$a->strings["Set the background image"] = "Background image:"; -$a->strings["Background image style"] = "Background image style"; -$a->strings["Login page background image"] = "Login page background image"; -$a->strings["Login page background color"] = "Login page background colour"; -$a->strings["Leave background image and color empty for theme defaults"] = "Leave background image and colour empty for theme defaults"; -$a->strings["Skip to main content"] = "Skip to main content"; -$a->strings["Top Banner"] = "Top Banner"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Resize image to the width of the screen and show background colour below on long pages."; -$a->strings["Full screen"] = "Full screen"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Resize image to fill entire screen, clipping either the right or the bottom."; -$a->strings["Single row mosaic"] = "Single row mosaic"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Resize image to repeat it on a single row, either vertical or horizontal."; -$a->strings["Mosaic"] = "Mosaic"; -$a->strings["Repeat image to fill the screen."] = "Repeat image to fill the screen."; -$a->strings["Guest"] = "Guest"; -$a->strings["Visitor"] = "Visitor"; -$a->strings["Alignment"] = "Alignment"; -$a->strings["Left"] = "Left"; -$a->strings["Center"] = "Centre"; -$a->strings["Color scheme"] = "Colour scheme"; -$a->strings["Posts font size"] = "Posts font size"; -$a->strings["Textareas font size"] = "Text areas font size"; -$a->strings["Comma separated list of helper forums"] = "Comma separated list of helper forums"; -$a->strings["don't show"] = "don't show"; -$a->strings["show"] = "show"; -$a->strings["Set style"] = "Set style"; -$a->strings["Community Pages"] = "Community pages"; -$a->strings["Community Profiles"] = "Community profiles"; -$a->strings["Help or @NewHere ?"] = "Help or @NewHere ?"; -$a->strings["Connect Services"] = "Connect services"; -$a->strings["Find Friends"] = "Find friends"; -$a->strings["Last users"] = "Last users"; -$a->strings["Quick Start"] = "Quick start"; +$a->strings["Database storage failed to update %s"] = "Database storage failed to update %s"; +$a->strings["Database storage failed to insert data"] = "Database storage failed to insert data"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Filesystem storage failed to create \"%s\". Check you write permissions."; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Filesystem storage failed to save data to \"%s\". Check your write permissions"; +$a->strings["Storage base path"] = "Storage base path"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree"; +$a->strings["Enter a valid existing folder"] = "Enter a valid existing folder"; +$a->strings["activity"] = "activity"; +$a->strings["post"] = "post"; +$a->strings["Content warning: %s"] = "Content warning: %s"; +$a->strings["bytes"] = "bytes"; +$a->strings["View on separate page"] = "View on separate page"; +$a->strings["view on separate page"] = "view on separate page"; +$a->strings["link to source"] = "Link to source"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["UnFollow"] = "Unfollow"; +$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Organisation"] = "Organisation"; +$a->strings["News"] = "News"; +$a->strings["Forum"] = "Forum"; +$a->strings["Connect URL missing."] = "Connect URL missing."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."; +$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; +$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; +$a->strings["An author or name was not found."] = "An author or name was not found."; +$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; +$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; +$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; +$a->strings["Starts:"] = "Starts:"; +$a->strings["Finishes:"] = "Finishes:"; +$a->strings["all-day"] = "All-day"; +$a->strings["Sept"] = "Sep"; +$a->strings["No events to display"] = "No events to display"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Edit event"; +$a->strings["Duplicate event"] = "Duplicate event"; +$a->strings["Delete event"] = "Delete event"; +$a->strings["D g:i A"] = "D g:i A"; +$a->strings["g:i A"] = "g:i A"; +$a->strings["Show map"] = "Show map"; +$a->strings["Hide map"] = "Hide map"; +$a->strings["%s's birthday"] = "%s's birthday"; +$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; +$a->strings["Login failed"] = "Login failed"; +$a->strings["Not enough information to authenticate"] = "Not enough information to authenticate"; +$a->strings["Password can't be empty"] = "Password can't be empty"; +$a->strings["Empty passwords are not allowed."] = "Empty passwords are not allowed."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "The new password has been exposed in a public data dump; please choose another."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "The password can't contain accentuated letters, white spaces or colons"; +$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; +$a->strings["An invitation is required."] = "An invitation is required."; +$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; +$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; +$a->strings["Please enter the required information."] = "Please enter the required information."; +$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."; +$a->strings["Username should be at least %s character."] = [ + 0 => "Username should be at least %s character.", + 1 => "Username should be at least %s characters.", +]; +$a->strings["Username should be at most %s character."] = [ + 0 => "Username should be at most %s character.", + 1 => "Username should be at most %s characters.", +]; +$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; +$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; +$a->strings["Not a valid email address."] = "Not a valid email address."; +$a->strings["The nickname was blocked from registration by the nodes admin."] = "The nickname was blocked from registration by the nodes admin."; +$a->strings["Cannot use that email."] = "Cannot use that email."; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Your nickname can only contain a-z, 0-9 and _."; +$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; +$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; +$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; +$a->strings["An error occurred creating your self contact. Please try again."] = "An error occurred creating your self-contact. Please try again."; +$a->strings["Friends"] = "Friends"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "An error occurred while creating your default contact group. Please try again."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tDear %1\$s,\n\t\t\tThe administrator of %2\$s has set up an account for you."; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."; +$a->strings["Registration details for %s"] = "Registration details for %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Registration at %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."; +$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."] = "A deleted group with this name has been 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."; +$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; +$a->strings["Everybody"] = "Everybody"; +$a->strings["edit"] = "edit"; +$a->strings["add"] = "add"; +$a->strings["Edit group"] = "Edit group"; +$a->strings["Create a new group"] = "Create new group"; +$a->strings["Edit groups"] = "Edit groups"; +$a->strings["Change profile photo"] = "Change profile photo"; +$a->strings["Atom feed"] = "Atom feed"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[today]"; +$a->strings["Birthday Reminders"] = "Birthday reminders"; +$a->strings["Birthdays this week:"] = "Birthdays this week:"; +$a->strings["[No description]"] = "[No description]"; +$a->strings["Event Reminders"] = "Event reminders"; +$a->strings["Upcoming events the next 7 days:"] = "Upcoming events the next 7 days:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s welcomes %2\$s"; +$a->strings["Add New Contact"] = "Add new contact"; +$a->strings["Enter address or web location"] = "Enter address or web location"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; +$a->strings["Connect"] = "Connect"; +$a->strings["%d invitation available"] = [ + 0 => "%d invitation available", + 1 => "%d invitations available", +]; +$a->strings["Everyone"] = "Everyone"; +$a->strings["Relationships"] = "Relationships"; +$a->strings["Protocols"] = "Protocols"; +$a->strings["All Protocols"] = "All Protocols"; +$a->strings["Saved Folders"] = "Saved Folders"; +$a->strings["Everything"] = "Everything"; +$a->strings["Categories"] = "Categories"; +$a->strings["%d contact in common"] = [ + 0 => "%d contact in common", + 1 => "%d contacts in common", +]; +$a->strings["Archives"] = "Archives"; +$a->strings["Frequently"] = "Frequently"; +$a->strings["Hourly"] = "Hourly"; +$a->strings["Twice daily"] = "Twice daily"; +$a->strings["Daily"] = "Daily"; +$a->strings["Weekly"] = "Weekly"; +$a->strings["Monthly"] = "Monthly"; +$a->strings["DFRN"] = "DFRN"; +$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["Discourse"] = "Discourse"; +$a->strings["Diaspora Connector"] = "diaspora* connector"; +$a->strings["GNU Social Connector"] = "GNU Social Connector"; +$a->strings["ActivityPub"] = "ActivityPub"; +$a->strings["pnut"] = "pnut"; +$a->strings["%s (via %s)"] = "%s (via %s)"; +$a->strings["General Features"] = "General"; +$a->strings["Photo Location"] = "Photo location"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."; +$a->strings["Trending Tags"] = "Trending Tags"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Show a community page widget with a list of the most popular tags in recent public posts."; +$a->strings["Post Composition Features"] = "Post composition"; +$a->strings["Auto-mention Forums"] = "Auto-mention forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; +$a->strings["Explicit Mentions"] = "Explicit mentions"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Add explicit mentions to comment box for manual control over who gets mentioned in replies."; +$a->strings["Post/Comment Tools"] = "Post/Comment tools"; +$a->strings["Post Categories"] = "Post categories"; +$a->strings["Add categories to your posts"] = "Add categories to your posts"; +$a->strings["Advanced Profile Settings"] = "Advanced profiles"; +$a->strings["List Forums"] = "List forums"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; +$a->strings["Tag Cloud"] = "Tag cloud"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Provides a personal tag cloud on your profile page"; +$a->strings["Display Membership Date"] = "Display membership date"; +$a->strings["Display membership date in profile"] = "Display membership date in profile"; +$a->strings["Nothing new here"] = "Nothing new here"; +$a->strings["Clear notifications"] = "Clear notifications"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["End this session"] = "End this session"; +$a->strings["Sign in"] = "Sign in"; +$a->strings["Personal notes"] = "Personal notes"; +$a->strings["Your personal notes"] = "My personal notes"; +$a->strings["Home"] = "Home"; +$a->strings["Home Page"] = "Home page"; +$a->strings["Create an account"] = "Create account"; +$a->strings["Help and documentation"] = "Help and documentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; +$a->strings["Search site content"] = "Search site content"; +$a->strings["Full Text"] = "Full text"; +$a->strings["Tags"] = "Tags"; +$a->strings["Community"] = "Community"; +$a->strings["Conversations on this and other servers"] = "Conversations on this and other servers"; +$a->strings["Directory"] = "Directory"; +$a->strings["People directory"] = "People directory"; +$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; +$a->strings["Terms of Service of this Friendica instance"] = "Terms of Service for this Friendica instance"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["Friend Requests"] = "Friend requests"; +$a->strings["See all notifications"] = "See all notifications"; +$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Outbox"; +$a->strings["Accounts"] = "Accounts"; +$a->strings["Manage other pages"] = "Manage other pages"; +$a->strings["Site setup and configuration"] = "Site setup and configuration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Site map"; +$a->strings["Remove term"] = "Remove term"; +$a->strings["Saved Searches"] = "Saved searches"; +$a->strings["Export"] = "Export"; +$a->strings["Export calendar as ical"] = "Export calendar as ical"; +$a->strings["Export calendar as csv"] = "Export calendar as csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "Trending Tags (last %d hour)", + 1 => "Trending tags (last %d hours)", +]; +$a->strings["More Trending Tags"] = "More Trending Tags"; +$a->strings["No contacts"] = "No contacts"; +$a->strings["%d Contact"] = [ + 0 => "%d contact", + 1 => "%d contacts", +]; +$a->strings["View Contacts"] = "View contacts"; +$a->strings["newer"] = "Later posts"; +$a->strings["older"] = "Earlier posts"; +$a->strings["Embedding disabled"] = "Embedding disabled"; +$a->strings["Embedded content"] = "Embedded content"; +$a->strings["prev"] = "prev"; +$a->strings["last"] = "last"; +$a->strings["Loading more entries..."] = "Loading more entries..."; +$a->strings["The end"] = "The end"; +$a->strings["Click to open/close"] = "Reveal/hide"; +$a->strings["Image/photo"] = "Image/Photo"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 wrote:"; +$a->strings["Encrypted content"] = "Encrypted content"; +$a->strings["Invalid source protocol"] = "Invalid source protocol"; +$a->strings["Invalid link protocol"] = "Invalid link protocol"; +$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."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; diff --git a/view/lang/en-us/messages.po b/view/lang/en-us/messages.po index c78624a049..f37732e419 100644 --- a/view/lang/en-us/messages.po +++ b/view/lang/en-us/messages.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-05 10:58-0400\n" -"PO-Revision-Date: 2020-06-23 16:04+0000\n" -"Last-Translator: Andy H3 \n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-05 00:17+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: English (United States) (http://www.transifex.com/Friendica/friendica/language/en_US/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,433 +21,801 @@ msgstr "" "Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1123 +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "default" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Submit" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Theme settings" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Variations" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Alignment" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Left" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Center" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Color scheme" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Posts font size" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Text areas font size" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Comma-separated list of helper forums" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "don't show" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "show" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Set style" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Community pages" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Community profiles" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Help or @NewHere ?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Connect services" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Find friends" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Last users" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Find people" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Enter name or interest" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Connect/Follow" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Examples: Robert Morgenstein, fishing" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Find" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Friend suggestions" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Similar interests" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Random profile" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Invite friends" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Global directory" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Local directory" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Forums" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "External link to forum" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "show more" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Quick start" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Help" + +#: view/theme/frio/config.php:123 +msgid "Custom" +msgstr "Custom" + +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Note" + +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Check image permissions that everyone is allowed to see the image" + +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "Select color scheme" + +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "Copy or paste theme string" + +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "You can copy this string to share your theme with others. Pasting here applies the theme string" + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Navigation bar background color:" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Navigation bar icon color:" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Link color:" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Background color:" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "Content background opacity" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Background image:" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "Background image style" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "Login page background image" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "Login page background color" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "Leave background image and color empty for theme defaults" + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Guest" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Visitor" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Status" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "My posts and conversations" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Profile" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "My profile page" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Photos" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "My photos" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Videos" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "My videos" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Events" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "My events" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Network" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "My friends' conversations" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Events and calendar" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Messages" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Private messages" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Settings" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Account settings" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Contacts" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Manage/Edit friends and contacts" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Follow thread" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Top Banner" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Resize image to the width of the screen and show background color below on long pages." + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Full screen" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Resize image to fill entire screen, clipping either the right or the bottom." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Single row mosaic" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Resize image to repeat it on a single row, either vertical or horizontal." + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Mosaic" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Repeat image to fill the screen." + +#: update.php:195 #, php-format -msgid "Daily posting limit of %d post reached. The post was rejected." -msgid_plural "Daily posting limit of %d posts reached. The post was rejected." -msgstr[0] "Daily posting limit of %d post reached. The post was rejected." -msgstr[1] "Daily posting limit of %d posts reached. This post was rejected." +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "%s: Updating author-id and owner-id in item and thread table. " -#: include/api.php:1137 +#: update.php:250 #, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "Weekly posting limit of %d post reached. The post was rejected." -msgstr[1] "Weekly posting limit of %d posts reached. This post was rejected." +msgid "%s: Updating post-type." +msgstr "%s: Updating post-type." -#: include/api.php:1151 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Monthly posting limit of %d posts reached. This post was rejected." - -#: include/api.php:4560 mod/photos.php:104 mod/photos.php:195 -#: mod/photos.php:641 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1587 src/Model/User.php:859 src/Model/User.php:867 -#: src/Model/User.php:875 src/Module/Settings/Profile/Photo/Crop.php:97 -#: src/Module/Settings/Profile/Photo/Crop.php:113 -#: src/Module/Settings/Profile/Photo/Crop.php:129 -#: src/Module/Settings/Profile/Photo/Crop.php:178 -#: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:104 -msgid "Profile Photos" -msgstr "Profile photos" - -#: include/conversation.php:189 +#: include/conversation.php:188 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s poked %2$s" -#: include/conversation.php:221 src/Model/Item.php:3444 +#: include/conversation.php:220 src/Model/Item.php:3330 msgid "event" msgstr "event" -#: include/conversation.php:224 include/conversation.php:233 mod/tagger.php:88 +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 msgid "status" msgstr "status" -#: include/conversation.php:229 mod/tagger.php:88 src/Model/Item.php:3446 +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 msgid "photo" msgstr "photo" -#: include/conversation.php:243 mod/tagger.php:121 +#: include/conversation.php:242 mod/tagger.php:122 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s tagged %2$s's %3$s with %4$s" -#: include/conversation.php:555 mod/photos.php:1480 src/Object/Post.php:228 +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 msgid "Select" msgstr "Select" -#: include/conversation.php:556 mod/photos.php:1481 mod/settings.php:568 -#: mod/settings.php:710 src/Module/Admin/Users.php:253 -#: src/Module/Contact.php:855 src/Module/Contact.php:1136 +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 msgid "Delete" msgstr "Delete" -#: include/conversation.php:590 src/Object/Post.php:438 -#: src/Object/Post.php:439 +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 #, php-format msgid "View %s's profile @ %s" msgstr "View %s's profile @ %s" -#: include/conversation.php:603 src/Object/Post.php:426 +#: include/conversation.php:602 src/Object/Post.php:428 msgid "Categories:" msgstr "Categories:" -#: include/conversation.php:604 src/Object/Post.php:427 +#: include/conversation.php:603 src/Object/Post.php:429 msgid "Filed under:" msgstr "Filed under:" -#: include/conversation.php:611 src/Object/Post.php:452 +#: include/conversation.php:610 src/Object/Post.php:454 #, php-format msgid "%s from %s" msgstr "%s from %s" -#: include/conversation.php:626 +#: include/conversation.php:625 msgid "View in context" msgstr "View in context" -#: include/conversation.php:628 include/conversation.php:1149 -#: mod/editpost.php:104 mod/message.php:275 mod/message.php:457 -#: mod/photos.php:1385 mod/wallmessage.php:157 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:484 +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 msgid "Please wait" msgstr "Please wait" -#: include/conversation.php:692 +#: include/conversation.php:691 msgid "remove" msgstr "Remove" -#: include/conversation.php:696 +#: include/conversation.php:695 msgid "Delete Selected Items" msgstr "Delete selected items" -#: include/conversation.php:857 view/theme/frio/theme.php:354 -msgid "Follow Thread" -msgstr "Follow thread" - -#: include/conversation.php:858 src/Model/Contact.php:1277 +#: include/conversation.php:876 src/Model/Contact.php:1170 msgid "View Status" msgstr "View status" -#: include/conversation.php:859 include/conversation.php:877 mod/match.php:101 -#: mod/suggest.php:102 src/Model/Contact.php:1203 src/Model/Contact.php:1269 -#: src/Model/Contact.php:1278 src/Module/AllFriends.php:93 -#: src/Module/BaseSearch.php:158 src/Module/Directory.php:164 -#: src/Module/Settings/Profile/Index.php:246 +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 msgid "View Profile" msgstr "View profile" -#: include/conversation.php:860 src/Model/Contact.php:1279 +#: include/conversation.php:878 src/Model/Contact.php:1172 msgid "View Photos" msgstr "View photos" -#: include/conversation.php:861 src/Model/Contact.php:1270 -#: src/Model/Contact.php:1280 +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 msgid "Network Posts" msgstr "Network posts" -#: include/conversation.php:862 src/Model/Contact.php:1271 -#: src/Model/Contact.php:1281 +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 msgid "View Contact" msgstr "View contact" -#: include/conversation.php:863 src/Model/Contact.php:1283 +#: include/conversation.php:881 src/Model/Contact.php:1176 msgid "Send PM" msgstr "Send PM" -#: include/conversation.php:864 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users.php:254 src/Module/Contact.php:604 -#: src/Module/Contact.php:852 src/Module/Contact.php:1111 +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 msgid "Block" msgstr "Block" -#: include/conversation.php:865 src/Module/Contact.php:605 -#: src/Module/Contact.php:853 src/Module/Contact.php:1119 +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 #: src/Module/Notifications/Introductions.php:110 -#: src/Module/Notifications/Introductions.php:185 -#: src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 msgid "Ignore" msgstr "Ignore" -#: include/conversation.php:869 src/Model/Contact.php:1284 +#: include/conversation.php:887 src/Model/Contact.php:1177 msgid "Poke" msgstr "Poke" -#: include/conversation.php:874 mod/follow.php:182 mod/match.php:102 -#: mod/suggest.php:103 src/Content/Widget.php:80 src/Model/Contact.php:1272 -#: src/Model/Contact.php:1285 src/Module/AllFriends.php:94 -#: src/Module/BaseSearch.php:159 view/theme/vier/theme.php:176 -msgid "Connect/Follow" -msgstr "Connect/Follow" - -#: include/conversation.php:1000 +#: include/conversation.php:1018 #, php-format msgid "%s likes this." msgstr "%s likes this." -#: include/conversation.php:1003 +#: include/conversation.php:1021 #, php-format msgid "%s doesn't like this." msgstr "%s doesn't like this." -#: include/conversation.php:1006 +#: include/conversation.php:1024 #, php-format msgid "%s attends." msgstr "%s attends." -#: include/conversation.php:1009 +#: include/conversation.php:1027 #, php-format msgid "%s doesn't attend." msgstr "%s won't attend." -#: include/conversation.php:1012 +#: include/conversation.php:1030 #, php-format msgid "%s attends maybe." msgstr "%s might attend." -#: include/conversation.php:1015 include/conversation.php:1058 +#: include/conversation.php:1033 include/conversation.php:1076 #, php-format msgid "%s reshared this." msgstr "%s reshared this." -#: include/conversation.php:1023 +#: include/conversation.php:1041 msgid "and" msgstr "and" -#: include/conversation.php:1029 +#: include/conversation.php:1047 #, php-format msgid "and %d other people" msgstr "and %d other people" -#: include/conversation.php:1037 +#: include/conversation.php:1055 #, php-format msgid "%2$d people like this" msgstr "%2$d people like this" -#: include/conversation.php:1038 +#: include/conversation.php:1056 #, php-format msgid "%s like this." msgstr "%s like this." -#: include/conversation.php:1041 +#: include/conversation.php:1059 #, php-format msgid "%2$d people don't like this" msgstr "%2$d people don't like this" -#: include/conversation.php:1042 +#: include/conversation.php:1060 #, php-format msgid "%s don't like this." msgstr "%s don't like this." -#: include/conversation.php:1045 +#: include/conversation.php:1063 #, php-format msgid "%2$d people attend" msgstr "%2$d people attend" -#: include/conversation.php:1046 +#: include/conversation.php:1064 #, php-format msgid "%s attend." msgstr "%s attend." -#: include/conversation.php:1049 +#: include/conversation.php:1067 #, php-format msgid "%2$d people don't attend" msgstr "%2$d people won't attend" -#: include/conversation.php:1050 +#: include/conversation.php:1068 #, php-format msgid "%s don't attend." msgstr "%s won't attend." -#: include/conversation.php:1053 +#: include/conversation.php:1071 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d people might attend" -#: include/conversation.php:1054 +#: include/conversation.php:1072 #, php-format msgid "%s attend maybe." msgstr "%s may be attending." -#: include/conversation.php:1057 +#: include/conversation.php:1075 #, php-format msgid "%2$d people reshared this" msgstr "%2$d people reshared this" -#: include/conversation.php:1087 +#: include/conversation.php:1105 msgid "Visible to everybody" msgstr "Visible to everybody" -#: include/conversation.php:1088 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:954 +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Please enter an image/video/audio/webpage URL:" -#: include/conversation.php:1089 +#: include/conversation.php:1107 msgid "Tag term:" msgstr "Tag term:" -#: include/conversation.php:1090 src/Module/Filer/SaveTag.php:66 +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 msgid "Save to Folder:" msgstr "Save to folder:" -#: include/conversation.php:1091 +#: include/conversation.php:1109 msgid "Where are you right now?" msgstr "Where are you right now?" -#: include/conversation.php:1092 +#: include/conversation.php:1110 msgid "Delete item(s)?" msgstr "Delete item(s)?" -#: include/conversation.php:1124 +#: include/conversation.php:1142 msgid "New Post" msgstr "New post" -#: include/conversation.php:1127 +#: include/conversation.php:1145 msgid "Share" msgstr "Share" -#: include/conversation.php:1128 mod/editpost.php:89 mod/photos.php:1404 -#: src/Object/Post.php:945 +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 msgid "Loading..." msgstr "" -#: include/conversation.php:1129 mod/editpost.php:90 mod/message.php:273 -#: mod/message.php:454 mod/wallmessage.php:155 +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 msgid "Upload photo" msgstr "Upload photo" -#: include/conversation.php:1130 mod/editpost.php:91 +#: include/conversation.php:1148 mod/editpost.php:91 msgid "upload photo" msgstr "upload photo" -#: include/conversation.php:1131 mod/editpost.php:92 +#: include/conversation.php:1149 mod/editpost.php:92 msgid "Attach file" msgstr "Attach file" -#: include/conversation.php:1132 mod/editpost.php:93 +#: include/conversation.php:1150 mod/editpost.php:93 msgid "attach file" msgstr "attach file" -#: include/conversation.php:1133 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:946 +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 msgid "Bold" msgstr "Bold" -#: include/conversation.php:1134 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:947 +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 msgid "Italic" msgstr "Italic" -#: include/conversation.php:1135 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:948 +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 msgid "Underline" msgstr "Underline" -#: include/conversation.php:1136 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:949 +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 msgid "Quote" msgstr "Quote" -#: include/conversation.php:1137 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:950 +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 msgid "Code" msgstr "Code" -#: include/conversation.php:1138 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:951 +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 msgid "Image" msgstr "Image" -#: include/conversation.php:1139 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:952 +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 msgid "Link" msgstr "Link" -#: include/conversation.php:1140 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:953 +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 msgid "Link or Media" msgstr "Link or media" -#: include/conversation.php:1141 mod/editpost.php:100 +#: include/conversation.php:1159 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "Set your location" -#: include/conversation.php:1142 mod/editpost.php:101 +#: include/conversation.php:1160 mod/editpost.php:101 msgid "set location" msgstr "set location" -#: include/conversation.php:1143 mod/editpost.php:102 +#: include/conversation.php:1161 mod/editpost.php:102 msgid "Clear browser location" msgstr "Clear browser location" -#: include/conversation.php:1144 mod/editpost.php:103 +#: include/conversation.php:1162 mod/editpost.php:103 msgid "clear location" msgstr "clear location" -#: include/conversation.php:1146 mod/editpost.php:117 +#: include/conversation.php:1164 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "Set title" -#: include/conversation.php:1148 mod/editpost.php:119 +#: include/conversation.php:1166 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "Categories (comma-separated list)" -#: include/conversation.php:1150 mod/editpost.php:105 +#: include/conversation.php:1168 mod/editpost.php:105 msgid "Permission settings" msgstr "Permission settings" -#: include/conversation.php:1151 mod/editpost.php:134 +#: include/conversation.php:1169 mod/editpost.php:134 msgid "permissions" -msgstr "permissions" +msgstr "Permissions" -#: include/conversation.php:1160 mod/editpost.php:114 +#: include/conversation.php:1178 mod/editpost.php:114 msgid "Public post" msgstr "Public post" -#: include/conversation.php:1164 mod/editpost.php:125 mod/events.php:565 -#: mod/photos.php:1403 mod/photos.php:1450 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:955 +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 msgid "Preview" msgstr "Preview" -#: include/conversation.php:1168 include/items.php:400 -#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/fbrowser.php:109 -#: mod/fbrowser.php:138 mod/follow.php:188 mod/message.php:168 -#: mod/photos.php:1055 mod/photos.php:1162 mod/settings.php:508 -#: mod/settings.php:534 mod/suggest.php:91 mod/tagrm.php:36 mod/tagrm.php:131 -#: mod/unfollow.php:138 src/Module/Contact.php:456 -#: src/Module/RemoteFollow.php:112 +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "Cancel" -#: include/conversation.php:1173 +#: include/conversation.php:1191 msgid "Post to Groups" msgstr "Post to groups" -#: include/conversation.php:1174 +#: include/conversation.php:1192 msgid "Post to Contacts" msgstr "Post to contacts" -#: include/conversation.php:1175 +#: include/conversation.php:1193 msgid "Private post" msgstr "Private post" -#: include/conversation.php:1180 mod/editpost.php:132 -#: src/Model/Profile.php:471 src/Module/Contact.php:331 +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 msgid "Message" msgstr "Message" -#: include/conversation.php:1181 mod/editpost.php:133 +#: include/conversation.php:1199 mod/editpost.php:133 msgid "Browser" msgstr "Browser" -#: include/conversation.php:1183 mod/editpost.php:136 +#: include/conversation.php:1201 mod/editpost.php:136 msgid "Open Compose page" msgstr "" @@ -455,262 +823,262 @@ msgstr "" msgid "[Friendica:Notify]" msgstr "" -#: include/enotify.php:128 +#: include/enotify.php:140 #, php-format msgid "%s New mail received at %s" msgstr "" -#: include/enotify.php:130 +#: include/enotify.php:142 #, 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:131 +#: include/enotify.php:143 msgid "a private message" msgstr "a private message" -#: include/enotify.php:131 +#: include/enotify.php:143 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sent you %2$s." -#: include/enotify.php:133 +#: include/enotify.php:145 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Please visit %s to view or reply to your private messages." -#: include/enotify.php:177 +#: include/enotify.php:189 #, php-format msgid "%1$s replied to you on %2$s's %3$s %4$s" msgstr "" -#: include/enotify.php:179 +#: include/enotify.php:191 #, php-format msgid "%1$s tagged you on %2$s's %3$s %4$s" msgstr "" -#: include/enotify.php:181 +#: include/enotify.php:193 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: include/enotify.php:191 +#: include/enotify.php:203 #, php-format msgid "%1$s replied to you on your %2$s %3$s" msgstr "" -#: include/enotify.php:193 +#: include/enotify.php:205 #, php-format msgid "%1$s tagged you on your %2$s %3$s" msgstr "" -#: include/enotify.php:195 +#: include/enotify.php:207 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: include/enotify.php:202 +#: include/enotify.php:214 #, php-format msgid "%1$s replied to you on their %2$s %3$s" msgstr "" -#: include/enotify.php:204 +#: include/enotify.php:216 #, php-format msgid "%1$s tagged you on their %2$s %3$s" msgstr "" -#: include/enotify.php:206 +#: include/enotify.php:218 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: include/enotify.php:217 +#: include/enotify.php:229 #, php-format msgid "%s %s tagged you" msgstr "" -#: include/enotify.php:219 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s tagged you at %2$s" -#: include/enotify.php:221 +#: include/enotify.php:233 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: include/enotify.php:223 +#: include/enotify.php:235 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s commented on an item/conversation you have been following." -#: include/enotify.php:228 include/enotify.php:243 include/enotify.php:258 -#: include/enotify.php:277 include/enotify.php:293 +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Please visit %s to view or reply to the conversation." -#: include/enotify.php:235 +#: include/enotify.php:247 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: include/enotify.php:237 +#: include/enotify.php:249 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s posted to your profile wall at %2$s" -#: include/enotify.php:238 +#: include/enotify.php:250 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s posted to [url=%2$s]your wall[/url]" -#: include/enotify.php:250 +#: include/enotify.php:262 #, php-format msgid "%s %s shared a new post" msgstr "" -#: include/enotify.php:252 +#: include/enotify.php:264 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s shared a new post at %2$s" -#: include/enotify.php:253 +#: include/enotify.php:265 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]shared a post[/url]." -#: include/enotify.php:265 +#: include/enotify.php:277 #, php-format msgid "%1$s %2$s poked you" msgstr "" -#: include/enotify.php:267 +#: include/enotify.php:279 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s poked you at %2$s" -#: include/enotify.php:268 +#: include/enotify.php:280 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]poked you[/url]." -#: include/enotify.php:285 +#: include/enotify.php:297 #, php-format msgid "%s %s tagged your post" msgstr "" -#: include/enotify.php:287 +#: include/enotify.php:299 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s tagged your post at %2$s" -#: include/enotify.php:288 +#: include/enotify.php:300 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s tagged [url=%2$s]your post[/url]" -#: include/enotify.php:300 +#: include/enotify.php:312 #, php-format msgid "%s Introduction received" msgstr "" -#: include/enotify.php:302 +#: include/enotify.php:314 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "You've received an introduction from '%1$s' at %2$s" -#: include/enotify.php:303 +#: include/enotify.php:315 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "You've received [url=%1$s]an introduction[/url] from %2$s." -#: include/enotify.php:308 include/enotify.php:354 +#: include/enotify.php:320 include/enotify.php:366 #, php-format msgid "You may visit their profile at %s" msgstr "You may visit their profile at %s" -#: include/enotify.php:310 +#: include/enotify.php:322 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Please visit %s to approve or reject the introduction." -#: include/enotify.php:317 +#: include/enotify.php:329 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: include/enotify.php:319 include/enotify.php:320 +#: include/enotify.php:331 include/enotify.php:332 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s is sharing with you at %2$s" -#: include/enotify.php:327 +#: include/enotify.php:339 #, php-format msgid "%s You have a new follower" msgstr "" -#: include/enotify.php:329 include/enotify.php:330 +#: include/enotify.php:341 include/enotify.php:342 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "You have a new follower at %2$s : %1$s" -#: include/enotify.php:343 +#: include/enotify.php:355 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: include/enotify.php:345 +#: include/enotify.php:357 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "You've received a friend suggestion from '%1$s' at %2$s" -#: include/enotify.php:346 +#: include/enotify.php:358 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -#: include/enotify.php:352 +#: include/enotify.php:364 msgid "Name:" msgstr "Name:" -#: include/enotify.php:353 +#: include/enotify.php:365 msgid "Photo:" msgstr "Photo:" -#: include/enotify.php:356 +#: include/enotify.php:368 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Please visit %s to approve or reject the suggestion." -#: include/enotify.php:364 include/enotify.php:379 +#: include/enotify.php:376 include/enotify.php:391 #, php-format msgid "%s Connection accepted" msgstr "" -#: include/enotify.php:366 include/enotify.php:381 +#: include/enotify.php:378 include/enotify.php:393 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' has accepted your connection request at %2$s" -#: include/enotify.php:367 include/enotify.php:382 +#: include/enotify.php:379 include/enotify.php:394 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s has accepted your [url=%1$s]connection request[/url]." -#: include/enotify.php:372 +#: include/enotify.php:384 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction." -#: include/enotify.php:374 +#: include/enotify.php:386 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: include/enotify.php:387 +#: include/enotify.php:399 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -719,37 +1087,37 @@ msgid "" "automatically." msgstr "'%1$s' has chosen to accept you as a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically." -#: include/enotify.php:389 +#: include/enotify.php:401 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future." -#: include/enotify.php:391 +#: include/enotify.php:403 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Please visit %s if you wish to make any changes to this relationship." -#: include/enotify.php:401 mod/removeme.php:63 +#: include/enotify.php:413 mod/removeme.php:63 msgid "[Friendica System Notify]" msgstr "[Friendica System Notify]" -#: include/enotify.php:401 +#: include/enotify.php:413 msgid "registration request" msgstr "registration request" -#: include/enotify.php:403 +#: include/enotify.php:415 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "You've received a registration request from '%1$s' at %2$s." -#: include/enotify.php:404 +#: include/enotify.php:416 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "You've received a [url=%1$s]registration request[/url] from %2$s." -#: include/enotify.php:409 +#: include/enotify.php:421 #, php-format msgid "" "Full Name:\t%s\n" @@ -757,665 +1125,1390 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)" -#: include/enotify.php:415 +#: include/enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Please visit %s to approve or reject the request." -#: include/items.php:363 src/Module/Admin/Themes/Details.php:72 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:46 -#: src/Module/Debug/ItemBody.php:59 -msgid "Item not found." -msgstr "Item not found." +#: include/api.php:1127 +#, php-format +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "Daily posting limit of %d post reached. The post was rejected." +msgstr[1] "Daily posting limit of %d posts reached. This post was rejected." -#: include/items.php:395 -msgid "Do you really want to delete this item?" -msgstr "Do you really want to delete this item?" +#: include/api.php:1141 +#, php-format +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "Weekly posting limit of %d post reached. The post was rejected." +msgstr[1] "Weekly posting limit of %d posts reached. This post was rejected." -#: include/items.php:397 mod/api.php:125 mod/message.php:165 -#: mod/suggest.php:88 src/Module/Contact.php:453 -#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 -msgid "Yes" -msgstr "Yes" +#: include/api.php:1155 +#, php-format +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "Monthly posting limit of %d posts reached. This post was rejected." -#: include/items.php:447 mod/api.php:50 mod/api.php:55 mod/cal.php:293 -#: mod/common.php:43 mod/dfrn_confirm.php:79 mod/editpost.php:38 -#: mod/events.php:228 mod/follow.php:76 mod/follow.php:156 mod/item.php:183 -#: mod/item.php:188 mod/message.php:71 mod/message.php:116 mod/network.php:50 -#: mod/notes.php:43 mod/ostatus_subscribe.php:32 mod/photos.php:177 -#: mod/photos.php:937 mod/poke.php:142 mod/repair_ostatus.php:31 -#: mod/settings.php:48 mod/settings.php:66 mod/settings.php:497 -#: mod/suggest.php:54 mod/uimport.php:32 mod/unfollow.php:37 -#: mod/unfollow.php:92 mod/unfollow.php:124 mod/wallmessage.php:35 -#: mod/wallmessage.php:59 mod/wallmessage.php:98 mod/wallmessage.php:122 -#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:110 -#: mod/wall_upload.php:113 src/Module/Attach.php:56 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/BaseNotifications.php:88 -#: src/Module/Contact/Advanced.php:43 src/Module/Contact.php:370 -#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 -#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 -#: src/Module/Group.php:91 src/Module/Invite.php:40 src/Module/Invite.php:128 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Profile/Contacts.php:67 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:195 -#: src/Module/Register.php:234 src/Module/Search/Directory.php:38 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:115 -msgid "Permission denied." -msgstr "Permission denied." +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 +#: src/Module/Settings/Profile/Photo/Crop.php:113 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 +msgid "Profile Photos" +msgstr "Profile photos" -#: mod/api.php:100 mod/api.php:122 -msgid "Authorize application connection" -msgstr "Authorize application connection" - -#: mod/api.php:101 -msgid "Return to your app and insert this Securty Code:" -msgstr "Return to your app and insert this security code:" - -#: mod/api.php:110 src/Module/BaseAdmin.php:73 -msgid "Please login to continue." -msgstr "Please login to continue." - -#: mod/api.php:124 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?" - -#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 -#: src/Module/Register.php:116 -msgid "No" -msgstr "No" - -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:36 -#: src/Module/Conversation/Community.php:145 src/Module/Debug/ItemBody.php:37 -#: src/Module/Diaspora/Receive.php:51 src/Module/Item/Ignore.php:41 +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Access denied." -#: mod/cal.php:132 mod/display.php:284 src/Module/Profile/Profile.php:92 -#: src/Module/Profile/Profile.php:107 src/Module/Profile/Status.php:99 -#: src/Module/Update/Profile.php:55 -msgid "Access to this profile has been restricted." -msgstr "Access to this profile has been restricted." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "" -#: mod/cal.php:263 mod/events.php:409 src/Content/Nav.php:179 -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:262 -#: view/theme/frio/theme.php:266 -msgid "Events" -msgstr "Events" - -#: mod/cal.php:264 mod/events.php:410 -msgid "View" -msgstr "View" - -#: mod/cal.php:265 mod/events.php:412 -msgid "Previous" -msgstr "Previous" - -#: mod/cal.php:266 mod/events.php:413 src/Module/Install.php:192 -msgid "Next" -msgstr "Next" - -#: mod/cal.php:269 mod/events.php:418 src/Model/Event.php:443 -msgid "today" -msgstr "today" - -#: mod/cal.php:270 mod/events.php:419 src/Model/Event.php:444 -#: src/Util/Temporal.php:330 -msgid "month" -msgstr "month" - -#: mod/cal.php:271 mod/events.php:420 src/Model/Event.php:445 -#: src/Util/Temporal.php:331 -msgid "week" -msgstr "week" - -#: mod/cal.php:272 mod/events.php:421 src/Model/Event.php:446 -#: src/Util/Temporal.php:332 -msgid "day" -msgstr "day" - -#: mod/cal.php:273 mod/events.php:422 -msgid "list" -msgstr "List" - -#: mod/cal.php:286 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 src/Model/User.php:430 -msgid "User not found" -msgstr "User not found" - -#: mod/cal.php:302 -msgid "This calendar format is not supported" -msgstr "This calendar format is not supported" - -#: mod/cal.php:304 -msgid "No exportable data found" -msgstr "No exportable data found" - -#: mod/cal.php:321 -msgid "calendar" -msgstr "calendar" - -#: mod/common.php:106 -msgid "No contacts in common." -msgstr "No contacts in common." - -#: mod/common.php:157 src/Module/Contact.php:920 -msgid "Common Friends" -msgstr "Common friends" - -#: mod/dfrn_confirm.php:85 src/Module/Profile/Profile.php:80 -msgid "Profile not found." -msgstr "Profile not found." - -#: mod/dfrn_confirm.php:140 mod/redir.php:51 mod/redir.php:141 -#: mod/redir.php:156 src/Module/Contact/Advanced.php:53 -#: src/Module/Contact/Advanced.php:108 src/Module/FriendSuggest.php:54 -#: src/Module/FriendSuggest.php:93 src/Module/Group.php:106 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Contact not found." -#: mod/dfrn_confirm.php:141 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Permission denied." + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Message failed." + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "No recipient selected." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Unable to check your home location." + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "Message could not be sent." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Message collection failure." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "No recipient." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Please enter a link URL:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Send private message" + +#: 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." + +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "To:" + +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Subject:" + +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Your message:" + +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Insert web link" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "Profile not found." + +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved." -#: mod/dfrn_confirm.php:242 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "Response from remote site was not understood." -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:255 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Unexpected response from remote site: " -#: mod/dfrn_confirm.php:264 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Confirmation completed successfully." -#: mod/dfrn_confirm.php:276 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "Temporary failure. Please wait and try again." -#: mod/dfrn_confirm.php:279 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "Introduction failed or was revoked." -#: mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "Remote site reported: " -#: mod/dfrn_confirm.php:389 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "No user record found for '%s' " -#: mod/dfrn_confirm.php:399 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "Our site encryption key is apparently messed up." -#: mod/dfrn_confirm.php:410 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "An empty URL was provided, or the URL could not be decrypted by us." -#: mod/dfrn_confirm.php:426 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "Contact record was not found for you on our site." -#: mod/dfrn_confirm.php:440 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "Site public key not available in contact record for URL %s." -#: mod/dfrn_confirm.php:456 +#: mod/dfrn_confirm.php:455 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again." -#: mod/dfrn_confirm.php:467 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "Unable to set your contact credentials on our system." -#: mod/dfrn_confirm.php:523 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "Unable to update your contact profile details on our system" -#: mod/dfrn_confirm.php:553 mod/dfrn_request.php:569 -#: src/Model/Contact.php:2653 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Name Withheld]" -#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:539 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Public access denied." + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "No videos selected" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "Access to this item is restricted." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "View video" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "View album" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Recent videos" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Upload new videos" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "first" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "next" + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "No matches" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Profile Match" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "Missing some important data!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Update" + +#: mod/settings.php:200 +msgid "Failed to connect with email account using the settings provided." +msgstr "Failed to connect with email account using the settings provided." + +#: mod/settings.php:229 +msgid "Contact CSV file upload error" +msgstr "Contact CSV file upload error" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "Importing contacts done" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Relocate message has been sent to your contacts" + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "Passwords do not match." + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "Password update failed. Please try again." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Password changed." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "Password unchanged." + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "" + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "" + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "" + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "Invalid email." + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "Cannot change to that email." + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Private forum has no privacy permissions. Using default privacy group." + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Private forum has no privacy permissions and no default privacy group." + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Add application" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Save settings" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Name:" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Consumer key" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Consumer secret" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "You cannot edit this application." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Connected Apps" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Edit" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Client key starts with" + +#: mod/settings.php:562 +msgid "No name" +msgstr "No name" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Remove authorization" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "No addon settings configured" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "Addon Settings" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Additional Features" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "diaspora* (Socialhome, Hubzilla)" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "enabled" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "disabled" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Built-in support for %s connectivity is %s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "Email access is disabled on this site." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "None" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Social networks" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "General Social Media Settings" + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "Accept only top-level posts by contacts you follow" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don't follow, because one of your followers commented there. This setting will deactivate this behavior. If activated, you will only receive posts from people you really do follow." + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "Disable content warning" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Users on networks like Mastodon or Pleroma are able to set a content warning field which collapses their post by default. This disables the automatic collapsing and sets the content warning as the post title. It doesn't affect any other content filtering you may set up." + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Disable intelligent shortening" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "Attach the link title" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "If activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content." + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners" + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Create a new contact for every unknown OStatus user from whom you receive a message." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Default group for OStatus contacts" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Your legacy GNU Social account" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done." + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "Repair OStatus subscriptions" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "Email/Mailbox setup" + +#: mod/settings.php:692 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." + +#: mod/settings.php:693 +msgid "Last successful email check:" +msgstr "Last successful email check:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "IMAP server name:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Security:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "Email login name:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "Email password:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Reply-to address:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Send public posts to all email contacts:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Action after import:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Mark as seen" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "Move to folder" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "Move to folder:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Unable to find your profile. Please contact your admin." + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Account types:" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Personal Page subtypes" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Community forum subtypes" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Personal Page" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Account for a personal profile." + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Organization Page" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Account for an organization that automatically approves contact requests as \"Followers\"." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "News Page" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Community Forum" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Account for community discussions." + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Standard" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Soapbox" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Public forum" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Automatically approves all contact requests." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "Love-all" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Private forum [Experimental]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Requires manual approval of contact requests." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Allow this OpenID to login to this account." + +#: mod/settings.php:814 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "My identity address: '%s' or '%s'" + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Account Settings" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Password change" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "New password:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)." + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Confirm new password:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Leave password fields blank unless changing" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Current password:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Current password to confirm change" + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "Delete OpenID URL" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Basic information" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Full name:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "Email address:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Time zone:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Language:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Set the language of your Friendica interface and emails sent to you." + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Posting location:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Use browser location:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Security and privacy" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum friend requests per day:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "May prevent spam and abusive registrations" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Hide your profile details from anonymous viewers?" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies may still be accessible by other means." + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "Allow friends to post to my wall?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "Allow friends to tag my post?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "Your contacts can add additional tags to your posts." + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "Allow unknown people to send me private messages?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Friendica network users may send you private messages even if they are not in your contact list." + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum private messages per day from unknown people:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Default post permissions" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Automatically expire posts after this many days:" + +#: mod/settings.php:901 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Posts will not expire if empty; expired posts will be deleted" + +#: mod/settings.php:902 +msgid "Expire posts" +msgstr "" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "If activated, posts and comments will expire." + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "If activated, the personal notes on your profile page will expire." + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "If activated, photos will expire." + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "If activated, your own posts never expire. The settings above are only valid for posts you received." + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Notification" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Send notification email when:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "Receiving an introduction" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "My introductions are confirmed" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "Someone writes on my wall" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "A follow up comment is posted" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "receiving a private message" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "Receiving a friend suggestion" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "Tagged in a post" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "Poked in a post" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Activate desktop notifications" + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Show desktop pop-up on new notifications" + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "Text-only notification emails" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Receive text only emails without HTML " + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Show detailled notifications" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Advanced account types" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Change behavior of this account for special situations" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "Import contacts" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "Upload file" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Recent relocation" + +#: mod/settings.php:939 +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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" + +#: mod/settings.php:940 +msgid "Resend relocate message to contacts" +msgstr "Resend relocation message to contacts" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} wants to be your friend" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} requested registration" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "No contacts in common." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Common friends" + +#: mod/network.php:304 +msgid "No items found" +msgstr "" + +#: mod/network.php:547 +msgid "No such group" +msgstr "No such group" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "Group is empty" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Group: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "Latest activity" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "Sort by latest activity" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "Latest posts" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "Sort by post received date" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Personal" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Posts mentioning or involving me" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Starred" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "My favorite posts" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribing to OStatus contacts" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Error" +msgstr[1] "Errors" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "Done" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Keep this window open until done." + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "You aren't following this contact." + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Unfollowing is currently not supported by your network." + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Disconnect/Unfollow" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "My identity address:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Submit request" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "Profile URL:" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Status Messages and Posts" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "New Message" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "Unable to locate contact information." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Discard" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "Do you really want to delete this message?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Yes" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "Conversation not found." + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:300 +msgid "No messages." +msgstr "No messages." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Message not available." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Delete message" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Delete conversation" + +#: mod/message.php:426 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No secure communications available. You may be able to respond from the sender's profile page." + +#: mod/message.php:430 +msgid "Send Reply" +msgstr "Send reply" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Unknown sender - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Me and %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s and me" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribing to OStatus contacts" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "No contact provided." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "Couldn't fetch information for contact." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "Couldn't fetch friends for contact." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "success" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "failed" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "Ignored" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s welcomes %2$s" -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "This introduction has already been accepted." +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "User deleted their account" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profile location is not valid or does not contain profile information." - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warning: profile location has no identifiable owner name." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Warning: profile location has no profile photo." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, 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 required parameter was not found at the given location" -msgstr[1] "%d required parameters were not found at the given location" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Introduction complete." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Unrecoverable protocol error." - -#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:53 -msgid "Profile unavailable." -msgstr "Profile unavailable." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s has received too many connection requests today." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "Spam protection measures have been invoked." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Friends are advised to please try again in 24 hours." - -#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:59 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "You have already introduced yourself here." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Apparently you are already friends with %s." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Invalid profile URL." - -#: mod/dfrn_request.php:355 src/Model/Contact.php:2276 -msgid "Disallowed profile URL." -msgstr "Disallowed profile URL." - -#: mod/dfrn_request.php:361 src/Model/Contact.php:2281 -#: src/Module/Friendica.php:77 -msgid "Blocked domain" -msgstr "Blocked domain" - -#: mod/dfrn_request.php:428 src/Module/Contact.php:150 -msgid "Failed to update contact record." -msgstr "Failed to update contact record." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "Your introduction has been sent." - -#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:74 +#: mod/removeme.php:64 msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups." -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Please login to confirm introduction." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "The user id is %d" -#: mod/dfrn_request.php:504 +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Remove My Account" + +#: mod/removeme.php:100 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Incorrect identity currently logged in. Please login to this profile." +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "This will completely remove your account. Once this has been done it is not recoverable." -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Confirm" +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Please enter your password for verification:" -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "Hide this contact" +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Remove Item tag" -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Welcome home %s." +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Select a tag to remove: " -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Please confirm your introduction/connection request to %s." +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Remove" -#: mod/dfrn_request.php:606 mod/display.php:183 mod/photos.php:851 -#: mod/videos.php:129 src/Module/Conversation/Community.php:139 -#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 -#: src/Module/Directory.php:50 src/Module/Search/Index.php:48 -#: src/Module/Search/Index.php:53 -msgid "Public access denied." -msgstr "Public access denied." - -#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:106 -msgid "Friend/Connection Request" -msgstr "Friend/Connection request" - -#: mod/dfrn_request.php:643 -#, php-format +#: mod/suggest.php:44 msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No suggestions available. If this is a new site, please try again in 24 hours." -#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:108 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "" - -#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:109 -msgid "Your Webfinger address or profile URL:" -msgstr "Your WebFinger address or profile URL:" - -#: mod/dfrn_request.php:646 mod/follow.php:183 src/Module/RemoteFollow.php:110 -msgid "Please answer the following:" -msgstr "Please answer the following:" - -#: mod/dfrn_request.php:647 mod/follow.php:95 mod/unfollow.php:137 -#: src/Module/RemoteFollow.php:111 -msgid "Submit Request" -msgstr "Submit request" - -#: mod/dfrn_request.php:654 mod/follow.php:197 -#, php-format -msgid "%s knows you" -msgstr "" - -#: mod/dfrn_request.php:655 mod/follow.php:198 -msgid "Add a personal note:" -msgstr "Add a personal note:" - -#: mod/display.php:240 mod/display.php:320 +#: mod/display.php:238 mod/display.php:318 msgid "The requested item doesn't exist or has been deleted." msgstr "The requested item doesn't exist or has been deleted." -#: mod/display.php:400 +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Access to this profile has been restricted." + +#: mod/display.php:398 msgid "The feed for this item is unavailable." msgstr "The feed for this item is unavailable." -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Item not found" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Invalid request." -#: mod/editpost.php:62 -msgid "Edit post" -msgstr "Edit post" +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Image exceeds size limit of %s" -#: mod/editpost.php:88 mod/notes.php:62 src/Content/Text/HTML.php:910 -#: src/Module/Filer/SaveTag.php:67 -msgid "Save" -msgstr "Save" +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Unable to process image." -#: mod/editpost.php:94 mod/message.php:274 mod/message.php:455 -#: mod/wallmessage.php:156 -msgid "Insert web link" -msgstr "Insert web link" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Wall photos" -#: mod/editpost.php:95 -msgid "web link" -msgstr "web link" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Insert video link" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "video link" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Insert audio link" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "audio link" - -#: mod/editpost.php:113 src/Core/ACL.php:314 -msgid "CC: email addresses" -msgstr "CC: email addresses" - -#: mod/editpost.php:120 src/Core/ACL.php:315 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Example: bob@example.com, mary@example.com" - -#: mod/events.php:135 mod/events.php:137 -msgid "Event can not end before it has started." -msgstr "Event cannot end before it has started." - -#: mod/events.php:144 mod/events.php:146 -msgid "Event title and start time are required." -msgstr "Event title and starting time are required." - -#: mod/events.php:411 -msgid "Create New Event" -msgstr "Create new event" - -#: mod/events.php:523 -msgid "Event details" -msgstr "Event details" - -#: mod/events.php:524 -msgid "Starting date and Title are required." -msgstr "Starting date and title are required." - -#: mod/events.php:525 mod/events.php:530 -msgid "Event Starts:" -msgstr "Event starts:" - -#: mod/events.php:525 mod/events.php:557 -msgid "Required" -msgstr "Required" - -#: mod/events.php:538 mod/events.php:563 -msgid "Finish date/time is not known or not relevant" -msgstr "Finish date/time is not known or not relevant" - -#: mod/events.php:540 mod/events.php:545 -msgid "Event Finishes:" -msgstr "Event finishes:" - -#: mod/events.php:551 mod/events.php:564 -msgid "Adjust for viewer timezone" -msgstr "Adjust for viewer's time zone" - -#: mod/events.php:553 src/Module/Profile/Profile.php:159 -#: src/Module/Settings/Profile/Index.php:259 -msgid "Description:" -msgstr "Description:" - -#: mod/events.php:555 src/Model/Event.php:83 src/Model/Event.php:110 -#: src/Model/Event.php:452 src/Model/Event.php:948 src/Model/Profile.php:378 -#: src/Module/Contact.php:626 src/Module/Directory.php:154 -#: src/Module/Notifications/Introductions.php:166 -#: src/Module/Profile/Profile.php:177 -msgid "Location:" -msgstr "Location:" - -#: mod/events.php:557 mod/events.php:559 -msgid "Title:" -msgstr "Title:" - -#: mod/events.php:560 mod/events.php:561 -msgid "Share this event" -msgstr "Share this event" - -#: mod/events.php:567 mod/message.php:276 mod/message.php:456 -#: mod/photos.php:966 mod/photos.php:1072 mod/photos.php:1358 -#: mod/photos.php:1402 mod/photos.php:1449 mod/photos.php:1512 -#: mod/poke.php:185 src/Module/Contact/Advanced.php:142 -#: src/Module/Contact.php:583 src/Module/Debug/Localtime.php:64 -#: src/Module/Delegation.php:151 src/Module/FriendSuggest.php:129 -#: src/Module/Install.php:230 src/Module/Install.php:270 -#: src/Module/Install.php:306 src/Module/Invite.php:175 -#: src/Module/Item/Compose.php:144 src/Module/Settings/Profile/Index.php:243 -#: src/Object/Post.php:944 view/theme/duepuntozero/config.php:69 -#: view/theme/frio/config.php:139 view/theme/quattro/config.php:71 -#: view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Submit" - -#: mod/events.php:568 src/Module/Profile/Profile.php:227 -msgid "Basic" -msgstr "Basic" - -#: mod/events.php:569 src/Module/Admin/Site.php:610 src/Module/Contact.php:930 -#: src/Module/Profile/Profile.php:228 -msgid "Advanced" -msgstr "Advanced" - -#: mod/events.php:570 mod/photos.php:984 mod/photos.php:1354 -msgid "Permissions" -msgstr "Permissions" - -#: mod/events.php:586 -msgid "Failed to remove event" -msgstr "Failed to remove event" - -#: mod/events.php:588 -msgid "Event removed" -msgstr "Event removed" - -#: mod/fbrowser.php:42 src/Content/Nav.php:177 src/Module/BaseProfile.php:68 -#: view/theme/frio/theme.php:260 -msgid "Photos" -msgstr "Photos" - -#: mod/fbrowser.php:51 mod/fbrowser.php:75 mod/photos.php:195 -#: mod/photos.php:948 mod/photos.php:1061 mod/photos.php:1078 -#: mod/photos.php:1561 mod/photos.php:1576 src/Model/Photo.php:566 -#: src/Model/Photo.php:575 -msgid "Contact Photos" -msgstr "Contact photos" - -#: mod/fbrowser.php:111 mod/fbrowser.php:140 -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload" -msgstr "Upload" - -#: mod/fbrowser.php:135 -msgid "Files" -msgstr "Files" - -#: mod/follow.php:65 -msgid "The contact could not be added." -msgstr "Contact could not be added." - -#: mod/follow.php:106 -msgid "You already added this contact." -msgstr "You already added this contact." - -#: mod/follow.php:118 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "diaspora* support isn't enabled. Contact can't be added." - -#: mod/follow.php:125 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus support is disabled. Contact can't be added." - -#: mod/follow.php:135 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "The network type couldn't be detected. Contact can't be added." - -#: mod/follow.php:184 mod/unfollow.php:135 -msgid "Your Identity Address:" -msgstr "My identity address:" - -#: mod/follow.php:185 mod/unfollow.php:141 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622 -#: src/Module/Notifications/Introductions.php:103 -#: src/Module/Notifications/Introductions.php:177 -msgid "Profile URL" -msgstr "Profile URL:" - -#: mod/follow.php:186 src/Module/Contact.php:632 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Profile/Profile.php:189 -msgid "Tags:" -msgstr "Tags:" - -#: mod/follow.php:210 mod/unfollow.php:151 src/Module/BaseProfile.php:63 -#: src/Module/Contact.php:892 -msgid "Status Messages and Posts" -msgstr "Status Messages and Posts" - -#: mod/item.php:136 mod/item.php:140 -msgid "Unable to locate original post." -msgstr "Unable to locate original post." - -#: mod/item.php:330 mod/item.php:335 -msgid "Empty post discarded." -msgstr "Empty post discarded." - -#: mod/item.php:712 mod/item.php:717 -msgid "Post updated." -msgstr "" - -#: mod/item.php:734 mod/item.php:739 -msgid "Item wasn't stored." -msgstr "" - -#: mod/item.php:750 -msgid "Item couldn't be fetched." -msgstr "" - -#: mod/item.php:831 -msgid "Post published." -msgstr "" - -#: mod/lockview.php:64 mod/lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Remote privacy information not available." - -#: mod/lockview.php:86 -msgid "Visible to:" -msgstr "Visible to:" - -#: mod/lockview.php:92 mod/lockview.php:127 src/Content/Widget.php:242 -#: src/Core/ACL.php:184 src/Module/Contact.php:821 -#: src/Module/Profile/Contacts.php:143 -msgid "Followers" -msgstr "Followers" - -#: mod/lockview.php:98 mod/lockview.php:133 src/Core/ACL.php:191 -msgid "Mutuals" -msgstr "Mutuals" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Image upload failed." #: mod/lostpass.php:40 msgid "No valid account found." @@ -1517,6 +2610,10 @@ msgid "" "successful login." msgstr "Your password may be changed from the Settings page after successful login." +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + #: mod/lostpass.php:158 #, php-format msgid "" @@ -1547,1400 +2644,227 @@ msgstr "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1$s msgid "Your password has been changed at %s" msgstr "Your password has been changed at %s" -#: mod/match.php:63 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "" +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "This introduction has already been accepted." -#: mod/match.php:116 mod/suggest.php:121 src/Content/Widget.php:57 -#: src/Module/AllFriends.php:110 src/Module/BaseSearch.php:156 -msgid "Connect" -msgstr "Connect" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profile location is not valid or does not contain profile information." -#: mod/match.php:129 src/Content/Pager.php:216 -msgid "first" -msgstr "first" +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warning: profile location has no identifiable owner name." -#: mod/match.php:134 src/Content/Pager.php:276 -msgid "next" -msgstr "next" +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Warning: profile location has no profile photo." -#: mod/match.php:144 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "No matches" - -#: mod/match.php:149 -msgid "Profile Match" -msgstr "Profile Match" - -#: mod/message.php:48 mod/message.php:131 src/Content/Nav.php:271 -msgid "New Message" -msgstr "New Message" - -#: mod/message.php:85 mod/wallmessage.php:76 -msgid "No recipient selected." -msgstr "No recipient selected." - -#: mod/message.php:89 -msgid "Unable to locate contact information." -msgstr "Unable to locate contact information." - -#: mod/message.php:92 mod/wallmessage.php:82 -msgid "Message could not be sent." -msgstr "Message could not be sent." - -#: mod/message.php:95 mod/wallmessage.php:85 -msgid "Message collection failure." -msgstr "Message collection failure." - -#: mod/message.php:98 mod/wallmessage.php:88 -msgid "Message sent." -msgstr "Message sent." - -#: mod/message.php:125 src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:149 -#: src/Module/Notifications/Notification.php:56 -msgid "Discard" -msgstr "Discard" - -#: mod/message.php:138 src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Messages" -msgstr "Messages" - -#: mod/message.php:163 -msgid "Do you really want to delete this message?" -msgstr "Do you really want to delete this message?" - -#: mod/message.php:181 -msgid "Conversation not found." -msgstr "Conversation not found." - -#: mod/message.php:186 -msgid "Message deleted." -msgstr "Message deleted." - -#: mod/message.php:191 mod/message.php:205 -msgid "Conversation removed." -msgstr "Conversation removed." - -#: mod/message.php:219 mod/message.php:375 mod/wallmessage.php:139 -msgid "Please enter a link URL:" -msgstr "Please enter a link URL:" - -#: mod/message.php:261 mod/wallmessage.php:144 -msgid "Send Private Message" -msgstr "Send private message" - -#: mod/message.php:262 mod/message.php:445 mod/wallmessage.php:146 -msgid "To:" -msgstr "To:" - -#: mod/message.php:266 mod/message.php:447 mod/wallmessage.php:147 -msgid "Subject:" -msgstr "Subject:" - -#: mod/message.php:270 mod/message.php:450 mod/wallmessage.php:153 -#: src/Module/Invite.php:168 -msgid "Your message:" -msgstr "Your message:" - -#: mod/message.php:304 -msgid "No messages." -msgstr "No messages." - -#: mod/message.php:367 -msgid "Message not available." -msgstr "Message not available." - -#: mod/message.php:421 -msgid "Delete message" -msgstr "Delete message" - -#: mod/message.php:423 mod/message.php:555 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:438 mod/message.php:552 -msgid "Delete conversation" -msgstr "Delete conversation" - -#: mod/message.php:440 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "No secure communications available. You may be able to respond from the sender's profile page." - -#: mod/message.php:444 -msgid "Send Reply" -msgstr "Send reply" - -#: mod/message.php:527 +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 #, php-format -msgid "Unknown sender - %s" -msgstr "Unknown sender - %s" +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 required parameter was not found at the given location" +msgstr[1] "%d required parameters were not found at the given location" -#: mod/message.php:529 +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Introduction complete." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Unrecoverable protocol error." + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Profile unavailable." + +#: mod/dfrn_request.php:264 #, php-format -msgid "You and %s" -msgstr "Me and %s" +msgid "%s has received too many connection requests today." +msgstr "%s has received too many connection requests today." -#: mod/message.php:531 +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Spam protection measures have been invoked." + +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Friends are advised to please try again in 24 hours." + +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "You have already introduced yourself here." + +#: mod/dfrn_request.php:329 #, php-format -msgid "%s and You" -msgstr "%s and me" +msgid "Apparently you are already friends with %s." +msgstr "Apparently you are already friends with %s." -#: mod/message.php:558 +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Invalid profile URL." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Disallowed profile URL." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Blocked domain" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Failed to update contact record." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Your introduction has been sent." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system." + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Please login to confirm introduction." + +#: mod/dfrn_request.php:504 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Incorrect identity currently logged in. Please login to this profile." + +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Confirm" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Hide this contact" + +#: mod/dfrn_request.php:531 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" +msgid "Welcome home %s." +msgstr "Welcome home %s." -#: mod/network.php:568 -msgid "No such group" -msgstr "No such group" - -#: mod/network.php:589 src/Module/Group.php:296 -msgid "Group is empty" -msgstr "Group is empty" - -#: mod/network.php:593 +#: mod/dfrn_request.php:532 #, php-format -msgid "Group: %s" -msgstr "Group: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Please confirm your introduction/connection request to %s." -#: mod/network.php:618 src/Module/AllFriends.php:54 -#: src/Module/AllFriends.php:62 -msgid "Invalid contact." -msgstr "Invalid contact." +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Friend/Connection request" -#: mod/network.php:902 -msgid "Latest Activity" -msgstr "Latest activity" - -#: mod/network.php:905 -msgid "Sort by latest activity" -msgstr "Sort by latest activity" - -#: mod/network.php:910 -msgid "Latest Posts" -msgstr "Latest posts" - -#: mod/network.php:913 -msgid "Sort by post received date" -msgstr "Sort by post received date" - -#: mod/network.php:920 src/Module/Settings/Profile/Index.php:248 -msgid "Personal" -msgstr "Personal" - -#: mod/network.php:923 -msgid "Posts that mention or involve you" -msgstr "Posts mentioning or involving me" - -#: mod/network.php:930 -msgid "New" -msgstr "New" - -#: mod/network.php:933 -msgid "Activity Stream - by date" -msgstr "Activity Stream - by date" - -#: mod/network.php:941 -msgid "Shared Links" -msgstr "Shared links" - -#: mod/network.php:944 -msgid "Interesting Links" -msgstr "Interesting links" - -#: mod/network.php:951 -msgid "Starred" -msgstr "Starred" - -#: mod/network.php:954 -msgid "Favourite Posts" -msgstr "My favorite posts" - -#: mod/notes.php:50 src/Module/BaseProfile.php:110 -msgid "Personal Notes" -msgstr "Personal notes" - -#: mod/oexchange.php:48 -msgid "Post successful." -msgstr "Post successful." - -#: mod/ostatus_subscribe.php:37 -msgid "Subscribing to OStatus contacts" -msgstr "Subscribing to OStatus contacts" - -#: mod/ostatus_subscribe.php:47 -msgid "No contact provided." -msgstr "No contact provided." - -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Couldn't fetch information for contact." - -#: mod/ostatus_subscribe.php:64 -msgid "Couldn't fetch friends for contact." -msgstr "Couldn't fetch friends for contact." - -#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Done" - -#: mod/ostatus_subscribe.php:96 -msgid "success" -msgstr "success" - -#: mod/ostatus_subscribe.php:98 -msgid "failed" -msgstr "failed" - -#: mod/ostatus_subscribe.php:101 src/Object/Post.php:306 -msgid "ignored" -msgstr "Ignored" - -#: mod/ostatus_subscribe.php:106 mod/repair_ostatus.php:71 -msgid "Keep this window open until done." -msgstr "Keep this window open until done." - -#: mod/photos.php:126 src/Module/BaseProfile.php:71 -msgid "Photo Albums" -msgstr "Photo Albums" - -#: mod/photos.php:127 mod/photos.php:1616 -msgid "Recent Photos" -msgstr "Recent photos" - -#: mod/photos.php:129 mod/photos.php:1123 mod/photos.php:1618 -msgid "Upload New Photos" -msgstr "Upload new photos" - -#: mod/photos.php:147 src/Module/BaseSettings.php:37 -msgid "everybody" -msgstr "everybody" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Contact information unavailable" - -#: mod/photos.php:206 -msgid "Album not found." -msgstr "Album not found." - -#: mod/photos.php:264 -msgid "Album successfully deleted" -msgstr "Album successfully deleted" - -#: mod/photos.php:266 -msgid "Album was empty." -msgstr "Album was empty." - -#: mod/photos.php:591 -msgid "a photo" -msgstr "a photo" - -#: mod/photos.php:591 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s was tagged in %2$s by %3$s" - -#: mod/photos.php:686 mod/photos.php:689 mod/photos.php:716 -#: mod/wall_upload.php:185 src/Module/Settings/Profile/Photo/Index.php:61 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Image exceeds size limit of %s" - -#: mod/photos.php:692 -msgid "Image upload didn't complete, please try again" -msgstr "Image upload didn't complete. Please try again." - -#: mod/photos.php:695 -msgid "Image file is missing" -msgstr "Image file is missing" - -#: mod/photos.php:700 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Server can't accept new file uploads at this time. Please contact your administrator." - -#: mod/photos.php:724 -msgid "Image file is empty." -msgstr "Image file is empty." - -#: mod/photos.php:739 mod/wall_upload.php:199 -#: src/Module/Settings/Profile/Photo/Index.php:70 -msgid "Unable to process image." -msgstr "Unable to process image." - -#: mod/photos.php:768 mod/wall_upload.php:238 -#: src/Module/Settings/Profile/Photo/Index.php:99 -msgid "Image upload failed." -msgstr "Image upload failed." - -#: mod/photos.php:856 -msgid "No photos selected" -msgstr "No photos selected" - -#: mod/photos.php:922 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Access to this item is restricted." - -#: mod/photos.php:976 -msgid "Upload Photos" -msgstr "Upload photos" - -#: mod/photos.php:980 mod/photos.php:1068 -msgid "New album name: " -msgstr "New album name: " - -#: mod/photos.php:981 -msgid "or select existing album:" -msgstr "or select existing album:" - -#: mod/photos.php:982 -msgid "Do not show a status post for this upload" -msgstr "Do not show a status post for this upload" - -#: mod/photos.php:998 mod/photos.php:1362 -msgid "Show to Groups" -msgstr "Show to groups" - -#: mod/photos.php:999 mod/photos.php:1363 -msgid "Show to Contacts" -msgstr "Show to contacts" - -#: mod/photos.php:1050 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Do you really want to delete this photo album and all its photos?" - -#: mod/photos.php:1052 mod/photos.php:1073 -msgid "Delete Album" -msgstr "Delete album" - -#: mod/photos.php:1079 -msgid "Edit Album" -msgstr "Edit album" - -#: mod/photos.php:1080 -msgid "Drop Album" -msgstr "Drop album" - -#: mod/photos.php:1085 -msgid "Show Newest First" -msgstr "Show newest first" - -#: mod/photos.php:1087 -msgid "Show Oldest First" -msgstr "Show oldest first" - -#: mod/photos.php:1108 mod/photos.php:1601 -msgid "View Photo" -msgstr "View photo" - -#: mod/photos.php:1145 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permission denied. Access to this item may be restricted." - -#: mod/photos.php:1147 -msgid "Photo not available" -msgstr "Photo not available" - -#: mod/photos.php:1157 -msgid "Do you really want to delete this photo?" -msgstr "Do you really want to delete this photo?" - -#: mod/photos.php:1159 mod/photos.php:1359 -msgid "Delete Photo" -msgstr "Delete photo" - -#: mod/photos.php:1250 -msgid "View photo" -msgstr "View photo" - -#: mod/photos.php:1252 -msgid "Edit photo" -msgstr "Edit photo" - -#: mod/photos.php:1253 -msgid "Delete photo" -msgstr "Delete photo" - -#: mod/photos.php:1254 -msgid "Use as profile photo" -msgstr "Use as profile photo" - -#: mod/photos.php:1261 -msgid "Private Photo" -msgstr "Private photo" - -#: mod/photos.php:1267 -msgid "View Full Size" -msgstr "View full size" - -#: mod/photos.php:1327 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1330 -msgid "[Select tags to remove]" -msgstr "[Select tags to remove]" - -#: mod/photos.php:1345 -msgid "New album name" -msgstr "New album name" - -#: mod/photos.php:1346 -msgid "Caption" -msgstr "Caption" - -#: mod/photos.php:1347 -msgid "Add a Tag" -msgstr "Add Tag" - -#: mod/photos.php:1347 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Example: @bob, @jojo@example.com, #California, #camping" - -#: mod/photos.php:1348 -msgid "Do not rotate" -msgstr "Do not rotate" - -#: mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Rotate right (CW)" - -#: mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Rotate left (CCW)" - -#: mod/photos.php:1383 src/Object/Post.php:346 -msgid "I like this (toggle)" -msgstr "I like this (toggle)" - -#: mod/photos.php:1384 src/Object/Post.php:347 -msgid "I don't like this (toggle)" -msgstr "I don't like this (toggle)" - -#: mod/photos.php:1399 mod/photos.php:1446 mod/photos.php:1509 -#: src/Module/Contact.php:1052 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:941 -msgid "This is you" -msgstr "This is me" - -#: mod/photos.php:1401 mod/photos.php:1448 mod/photos.php:1511 -#: src/Object/Post.php:478 src/Object/Post.php:943 -msgid "Comment" -msgstr "Comment" - -#: mod/photos.php:1537 -msgid "Map" -msgstr "Map" - -#: mod/photos.php:1607 mod/videos.php:259 -msgid "View Album" -msgstr "View album" - -#: mod/ping.php:286 -msgid "{0} wants to be your friend" -msgstr "{0} wants to be your friend" - -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} requested registration" - -#: mod/poke.php:178 -msgid "Poke/Prod" -msgstr "Poke/Prod" - -#: mod/poke.php:179 -msgid "poke, prod or do other things to somebody" -msgstr "Poke, prod or do other things to somebody" - -#: mod/poke.php:180 -msgid "Recipient" -msgstr "Recipient:" - -#: mod/poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Choose what you wish to do:" - -#: mod/poke.php:184 -msgid "Make this post private" -msgstr "Make this post private" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "User deleted their account" - -#: mod/removeme.php:64 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups." - -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "The user id is %d" - -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Remove My Account" - -#: mod/removeme.php:100 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "This will completely remove your account. Once this has been done it is not recoverable." - -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Please enter your password for verification:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribing to OStatus contacts" - -#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Error" -msgstr[1] "Errors" - -#: mod/settings.php:91 -msgid "Missing some important data!" -msgstr "Missing some important data!" - -#: mod/settings.php:93 mod/settings.php:533 src/Module/Contact.php:851 -msgid "Update" -msgstr "Update" - -#: mod/settings.php:201 -msgid "Failed to connect with email account using the settings provided." -msgstr "Failed to connect with email account using the settings provided." - -#: mod/settings.php:206 -msgid "Email settings updated." -msgstr "Email settings updated." - -#: mod/settings.php:222 -msgid "Features updated" -msgstr "Features updated" - -#: mod/settings.php:234 -msgid "Contact CSV file upload error" -msgstr "Contact CSV file upload error" - -#: mod/settings.php:249 -msgid "Importing Contacts done" -msgstr "Importing contacts done" - -#: mod/settings.php:260 -msgid "Relocate message has been send to your contacts" -msgstr "Relocate message has been sent to your contacts" - -#: mod/settings.php:272 -msgid "Passwords do not match." -msgstr "Passwords do not match." - -#: mod/settings.php:280 src/Console/User.php:166 -msgid "Password update failed. Please try again." -msgstr "Password update failed. Please try again." - -#: mod/settings.php:283 src/Console/User.php:169 -msgid "Password changed." -msgstr "Password changed." - -#: mod/settings.php:286 -msgid "Password unchanged." -msgstr "Password unchanged." - -#: mod/settings.php:369 -msgid "Please use a shorter name." -msgstr "" - -#: mod/settings.php:372 -msgid "Name too short." -msgstr "" - -#: mod/settings.php:379 -msgid "Wrong Password." -msgstr "" - -#: mod/settings.php:384 -msgid "Invalid email." -msgstr "Invalid email." - -#: mod/settings.php:390 -msgid "Cannot change to that email." -msgstr "Cannot change to that email." - -#: mod/settings.php:427 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Private forum has no privacy permissions. Using default privacy group." - -#: mod/settings.php:430 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Private forum has no privacy permissions and no default privacy group." - -#: mod/settings.php:447 -msgid "Settings updated." -msgstr "Settings updated." - -#: mod/settings.php:506 mod/settings.php:532 mod/settings.php:566 -msgid "Add application" -msgstr "Add application" - -#: mod/settings.php:507 mod/settings.php:614 mod/settings.php:712 -#: mod/settings.php:867 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:605 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:68 src/Module/Settings/Delegation.php:169 -#: src/Module/Settings/Display.php:182 -msgid "Save Settings" -msgstr "Save settings" - -#: mod/settings.php:509 mod/settings.php:535 -#: src/Module/Admin/Blocklist/Contact.php:90 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:278 src/Module/Contact/Advanced.php:152 -msgid "Name" -msgstr "Name:" - -#: mod/settings.php:510 mod/settings.php:536 -msgid "Consumer Key" -msgstr "Consumer key" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Secret" -msgstr "Consumer secret" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Redirect" -msgstr "Redirect" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:524 -msgid "You can't edit this application." -msgstr "You cannot edit this application." - -#: mod/settings.php:565 -msgid "Connected Apps" -msgstr "Connected Apps" - -#: mod/settings.php:567 src/Object/Post.php:185 src/Object/Post.php:187 -msgid "Edit" -msgstr "Edit" - -#: mod/settings.php:569 -msgid "Client key starts with" -msgstr "Client key starts with" - -#: mod/settings.php:570 -msgid "No name" -msgstr "No name" - -#: mod/settings.php:571 -msgid "Remove authorization" -msgstr "Remove authorization" - -#: mod/settings.php:582 -msgid "No Addon settings configured" -msgstr "No addon settings configured" - -#: mod/settings.php:591 -msgid "Addon Settings" -msgstr "Addon Settings" - -#: mod/settings.php:612 -msgid "Additional Features" -msgstr "Additional Features" - -#: mod/settings.php:637 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "diaspora* (Socialhome, Hubzilla)" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "enabled" -msgstr "enabled" - -#: mod/settings.php:637 mod/settings.php:638 -msgid "disabled" -msgstr "disabled" - -#: mod/settings.php:637 mod/settings.php:638 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Built-in support for %s connectivity is %s" - -#: mod/settings.php:638 -msgid "OStatus (GNU Social)" -msgstr "" - -#: mod/settings.php:669 -msgid "Email access is disabled on this site." -msgstr "Email access is disabled on this site." - -#: mod/settings.php:674 mod/settings.php:710 -msgid "None" -msgstr "None" - -#: mod/settings.php:680 src/Module/BaseSettings.php:80 -msgid "Social Networks" -msgstr "Social networks" - -#: mod/settings.php:685 -msgid "General Social Media Settings" -msgstr "General Social Media Settings" - -#: mod/settings.php:686 -msgid "Accept only top level posts by contacts you follow" -msgstr "Accept only top-level posts by contacts you follow" - -#: mod/settings.php:686 -msgid "" -"The system does an auto completion of threads when a comment arrives. This " -"has got the side effect that you can receive posts that had been started by " -"a non-follower but had been commented by someone you follow. This setting " -"deactivates this behaviour. When activated, you strictly only will receive " -"posts from people you really do follow." -msgstr "The system automatically completes threads when a comment arrives. This has a side effect that you may receive posts started by someone you don't follow, because one of your followers commented there. This setting will deactivate this behavior. If activated, you will only receive posts from people you really do follow." - -#: mod/settings.php:687 -msgid "Disable Content Warning" -msgstr "Disable content warning" - -#: mod/settings.php:687 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Users on networks like Mastodon or Pleroma are able to set a content warning field which collapses their post by default. This disables the automatic collapsing and sets the content warning as the post title. It doesn't affect any other content filtering you may set up." - -#: mod/settings.php:688 -msgid "Disable intelligent shortening" -msgstr "Disable intelligent shortening" - -#: mod/settings.php:688 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post." - -#: mod/settings.php:689 -msgid "Attach the link title" -msgstr "Attach the link title" - -#: mod/settings.php:689 -msgid "" -"When activated, the title of the attached link will be added as a title on " -"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" -" share feed content." -msgstr "If activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content." - -#: mod/settings.php:690 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners" - -#: mod/settings.php:690 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Create a new contact for every unknown OStatus user from whom you receive a message." - -#: mod/settings.php:691 -msgid "Default group for OStatus contacts" -msgstr "Default group for OStatus contacts" - -#: mod/settings.php:692 -msgid "Your legacy GNU Social account" -msgstr "Your legacy GNU Social account" - -#: mod/settings.php:692 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done." - -#: mod/settings.php:695 -msgid "Repair OStatus subscriptions" -msgstr "Repair OStatus subscriptions" - -#: mod/settings.php:699 -msgid "Email/Mailbox Setup" -msgstr "Email/Mailbox setup" - -#: mod/settings.php:700 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts." - -#: mod/settings.php:701 -msgid "Last successful email check:" -msgstr "Last successful email check:" - -#: mod/settings.php:703 -msgid "IMAP server name:" -msgstr "IMAP server name:" - -#: mod/settings.php:704 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:705 -msgid "Security:" -msgstr "Security:" - -#: mod/settings.php:706 -msgid "Email login name:" -msgstr "Email login name:" - -#: mod/settings.php:707 -msgid "Email password:" -msgstr "Email password:" - -#: mod/settings.php:708 -msgid "Reply-to address:" -msgstr "Reply-to address:" - -#: mod/settings.php:709 -msgid "Send public posts to all email contacts:" -msgstr "Send public posts to all email contacts:" - -#: mod/settings.php:710 -msgid "Action after import:" -msgstr "Action after import:" - -#: mod/settings.php:710 src/Content/Nav.php:265 -msgid "Mark as seen" -msgstr "Mark as seen" - -#: mod/settings.php:710 -msgid "Move to folder" -msgstr "Move to folder" - -#: mod/settings.php:711 -msgid "Move to folder:" -msgstr "Move to folder:" - -#: mod/settings.php:725 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Unable to find your profile. Please contact your admin." - -#: mod/settings.php:761 -msgid "Account Types" -msgstr "Account types:" - -#: mod/settings.php:762 -msgid "Personal Page Subtypes" -msgstr "Personal Page subtypes" - -#: mod/settings.php:763 -msgid "Community Forum Subtypes" -msgstr "Community forum subtypes" - -#: mod/settings.php:770 src/Module/Admin/Users.php:194 -msgid "Personal Page" -msgstr "Personal Page" - -#: mod/settings.php:771 -msgid "Account for a personal profile." -msgstr "Account for a personal profile." - -#: mod/settings.php:774 src/Module/Admin/Users.php:195 -msgid "Organisation Page" -msgstr "Organization Page" - -#: mod/settings.php:775 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Account for an organization that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:778 src/Module/Admin/Users.php:196 -msgid "News Page" -msgstr "News Page" - -#: mod/settings.php:779 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:782 src/Module/Admin/Users.php:197 -msgid "Community Forum" -msgstr "Community Forum" - -#: mod/settings.php:783 -msgid "Account for community discussions." -msgstr "Account for community discussions." - -#: mod/settings.php:786 src/Module/Admin/Users.php:187 -msgid "Normal Account Page" -msgstr "Standard" - -#: mod/settings.php:787 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"." - -#: mod/settings.php:790 src/Module/Admin/Users.php:188 -msgid "Soapbox Page" -msgstr "Soapbox" - -#: mod/settings.php:791 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"." - -#: mod/settings.php:794 src/Module/Admin/Users.php:189 -msgid "Public Forum" -msgstr "Public forum" - -#: mod/settings.php:795 -msgid "Automatically approves all contact requests." -msgstr "Automatically approves all contact requests." - -#: mod/settings.php:798 src/Module/Admin/Users.php:190 -msgid "Automatic Friend Page" -msgstr "Love-all" - -#: mod/settings.php:799 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"." - -#: mod/settings.php:802 -msgid "Private Forum [Experimental]" -msgstr "Private forum [Experimental]" - -#: mod/settings.php:803 -msgid "Requires manual approval of contact requests." -msgstr "Requires manual approval of contact requests." - -#: mod/settings.php:814 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:814 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Allow this OpenID to login to this account." - -#: mod/settings.php:822 -msgid "Publish your profile in your local site directory?" -msgstr "" - -#: mod/settings.php:822 +#: mod/dfrn_request.php:643 #, php-format msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings." +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system" -#: mod/settings.php:828 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Your profile will also be published in the global friendica directories " -"(e.g. %s)." +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." msgstr "" -#: mod/settings.php:834 +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "Your WebFinger address or profile URL:" + +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Please answer the following:" + +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "My identity address: '%s' or '%s'" - -#: mod/settings.php:865 -msgid "Account Settings" -msgstr "Account Settings" - -#: mod/settings.php:873 -msgid "Password Settings" -msgstr "Password change" - -#: mod/settings.php:874 src/Module/Register.php:149 -msgid "New Password:" -msgstr "New password:" - -#: mod/settings.php:874 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)." - -#: mod/settings.php:875 src/Module/Register.php:150 -msgid "Confirm:" -msgstr "Confirm new password:" - -#: mod/settings.php:875 -msgid "Leave password fields blank unless changing" -msgstr "Leave password fields blank unless changing" - -#: mod/settings.php:876 -msgid "Current Password:" -msgstr "Current password:" - -#: mod/settings.php:876 mod/settings.php:877 -msgid "Your current password to confirm the changes" -msgstr "Current password to confirm change" - -#: mod/settings.php:877 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:880 -msgid "Delete OpenID URL" -msgstr "Delete OpenID URL" - -#: mod/settings.php:882 -msgid "Basic Settings" -msgstr "Basic information" - -#: mod/settings.php:883 src/Module/Profile/Profile.php:131 -msgid "Full Name:" -msgstr "Full name:" - -#: mod/settings.php:884 -msgid "Email Address:" -msgstr "Email address:" - -#: mod/settings.php:885 -msgid "Your Timezone:" -msgstr "Time zone:" - -#: mod/settings.php:886 -msgid "Your Language:" -msgstr "Language:" - -#: mod/settings.php:886 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Set the language of your Friendica interface and emails sent to you." - -#: mod/settings.php:887 -msgid "Default Post Location:" -msgstr "Posting location:" - -#: mod/settings.php:888 -msgid "Use Browser Location:" -msgstr "Use browser location:" - -#: mod/settings.php:890 -msgid "Security and Privacy Settings" -msgstr "Security and privacy" - -#: mod/settings.php:892 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum friend requests per day:" - -#: mod/settings.php:892 mod/settings.php:902 -msgid "(to prevent spam abuse)" -msgstr "May prevent spam and abusive registrations" - -#: mod/settings.php:894 -msgid "Allow your profile to be searchable globally?" +msgid "%s knows you" msgstr "" -#: mod/settings.php:894 +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Add a personal note:" + +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Authorize application connection" + +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Return to your app and insert this security code:" + +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Please login to continue." + +#: mod/api.php:124 msgid "" -"Activate this setting if you want others to easily find and follow you. Your" -" profile will be searchable on remote systems. This setting also determines " -"whether Friendica will inform search engines that your profile should be " -"indexed or not." +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?" + +#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "No" + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Or did you try to upload an empty file?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "File exceeds size limit of %s" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "File upload failed." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "Unable to locate original post." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Empty post discarded." + +#: mod/item.php:710 +msgid "Post updated." msgstr "" -#: mod/settings.php:895 -msgid "Hide your contact/friend list from viewers of your profile?" +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." msgstr "" -#: mod/settings.php:895 -msgid "" -"A list of your contacts is displayed on your profile page. Activate this " -"option to disable the display of your contact list." +#: mod/item.php:743 +msgid "Item couldn't be fetched." msgstr "" -#: mod/settings.php:896 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Hide your profile details from anonymous viewers?" +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Item not found." -#: mod/settings.php:896 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies may still be accessible by other means." - -#: mod/settings.php:897 -msgid "Make public posts unlisted" -msgstr "" - -#: mod/settings.php:897 -msgid "" -"Your public posts will not appear on the community pages or in search " -"results, nor be sent to relay servers. However they can still appear on " -"public feeds on remote servers." -msgstr "" - -#: mod/settings.php:898 -msgid "Make all posted pictures accessible" -msgstr "" - -#: mod/settings.php:898 -msgid "" -"This option makes every posted picture accessible via the direct link. This " -"is a workaround for the problem that most other networks can't handle " -"permissions on pictures. Non public pictures still won't be visible for the " -"public on your photo albums though." -msgstr "" - -#: mod/settings.php:899 -msgid "Allow friends to post to your profile page?" -msgstr "Allow friends to post to my wall?" - -#: mod/settings.php:899 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts" - -#: mod/settings.php:900 -msgid "Allow friends to tag your posts?" -msgstr "Allow friends to tag my post?" - -#: mod/settings.php:900 -msgid "Your contacts can add additional tags to your posts." -msgstr "Your contacts can add additional tags to your posts." - -#: mod/settings.php:901 -msgid "Permit unknown people to send you private mail?" -msgstr "Allow unknown people to send me private messages?" - -#: mod/settings.php:901 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Friendica network users may send you private messages even if they are not in your contact list." - -#: mod/settings.php:902 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum private messages per day from unknown people:" - -#: mod/settings.php:904 -msgid "Default Post Permissions" -msgstr "Default post permissions" - -#: mod/settings.php:908 -msgid "Expiration settings" -msgstr "" - -#: mod/settings.php:909 -msgid "Automatically expire posts after this many days:" -msgstr "Automatically expire posts after this many days:" - -#: mod/settings.php:909 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Posts will not expire if empty; expired posts will be deleted" - -#: mod/settings.php:910 -msgid "Expire posts" -msgstr "" - -#: mod/settings.php:910 -msgid "When activated, posts and comments will be expired." -msgstr "If activated, posts and comments will expire." - -#: mod/settings.php:911 -msgid "Expire personal notes" -msgstr "" - -#: mod/settings.php:911 -msgid "" -"When activated, the personal notes on your profile page will be expired." -msgstr "If activated, the personal notes on your profile page will expire." - -#: mod/settings.php:912 -msgid "Expire starred posts" -msgstr "" - -#: mod/settings.php:912 -msgid "" -"Starring posts keeps them from being expired. That behaviour is overwritten " -"by this setting." -msgstr "" - -#: mod/settings.php:913 -msgid "Expire photos" -msgstr "" - -#: mod/settings.php:913 -msgid "When activated, photos will be expired." -msgstr "If activated, photos will expire." - -#: mod/settings.php:914 -msgid "Only expire posts by others" -msgstr "" - -#: mod/settings.php:914 -msgid "" -"When activated, your own posts never expire. Then the settings above are " -"only valid for posts you received." -msgstr "If activated, your own posts never expire. The settings above are only valid for posts you received." - -#: mod/settings.php:917 -msgid "Notification Settings" -msgstr "Notification" - -#: mod/settings.php:918 -msgid "Send a notification email when:" -msgstr "Send notification email when:" - -#: mod/settings.php:919 -msgid "You receive an introduction" -msgstr "Receiving an introduction" - -#: mod/settings.php:920 -msgid "Your introductions are confirmed" -msgstr "My introductions are confirmed" - -#: mod/settings.php:921 -msgid "Someone writes on your profile wall" -msgstr "Someone writes on my wall" - -#: mod/settings.php:922 -msgid "Someone writes a followup comment" -msgstr "A follow up comment is posted" - -#: mod/settings.php:923 -msgid "You receive a private message" -msgstr "receiving a private message" - -#: mod/settings.php:924 -msgid "You receive a friend suggestion" -msgstr "Receiving a friend suggestion" - -#: mod/settings.php:925 -msgid "You are tagged in a post" -msgstr "Tagged in a post" - -#: mod/settings.php:926 -msgid "You are poked/prodded/etc. in a post" -msgstr "Poked in a post" - -#: mod/settings.php:928 -msgid "Activate desktop notifications" -msgstr "Activate desktop notifications" - -#: mod/settings.php:928 -msgid "Show desktop popup on new notifications" -msgstr "Show desktop pop-up on new notifications" - -#: mod/settings.php:930 -msgid "Text-only notification emails" -msgstr "Text-only notification emails" - -#: mod/settings.php:932 -msgid "Send text only notification emails, without the html part" -msgstr "Receive text only emails without HTML " - -#: mod/settings.php:934 -msgid "Show detailled notifications" -msgstr "Show detailled notifications" - -#: mod/settings.php:936 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "By default, notifications are condensed into a single notification for each item. If enabled, every notification is displayed." - -#: mod/settings.php:938 -msgid "Advanced Account/Page Type Settings" -msgstr "Advanced account types" - -#: mod/settings.php:939 -msgid "Change the behaviour of this account for special situations" -msgstr "Change behavior of this account for special situations" - -#: mod/settings.php:942 -msgid "Import Contacts" -msgstr "Import contacts" - -#: mod/settings.php:943 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account." - -#: mod/settings.php:944 -msgid "Upload File" -msgstr "Upload file" - -#: mod/settings.php:946 -msgid "Relocate" -msgstr "Recent relocation" - -#: mod/settings.php:947 -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 "If you have moved this profile from another server and some of your contacts don't receive your updates:" - -#: mod/settings.php:948 -msgid "Resend relocate message to contacts" -msgstr "Resend relocation message to contacts" - -#: mod/suggest.php:43 -msgid "Contact suggestion successfully ignored." -msgstr "Contact suggestion successfully ignored." - -#: mod/suggest.php:67 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No suggestions available. If this is a new site, please try again in 24 hours." - -#: mod/suggest.php:86 -msgid "Do you really want to delete this suggestion?" -msgstr "Do you really want to delete this suggestion?" - -#: mod/suggest.php:104 mod/suggest.php:124 -msgid "Ignore/Hide" -msgstr "Ignore/Hide" - -#: mod/suggest.php:134 src/Content/Widget.php:83 view/theme/vier/theme.php:179 -msgid "Friend Suggestions" -msgstr "Friend suggestions" - -#: mod/tagrm.php:47 -msgid "Tag(s) removed" -msgstr "Tag(s) removed" - -#: mod/tagrm.php:117 -msgid "Remove Item Tag" -msgstr "Remove Item tag" - -#: mod/tagrm.php:119 -msgid "Select a tag to remove: " -msgstr "Select a tag to remove: " - -#: mod/tagrm.php:130 src/Module/Settings/Delegation.php:178 -msgid "Remove" -msgstr "Remove" +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "Do you really want to delete this item?" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." @@ -2987,96 +2911,471 @@ msgid "" "select \"Export account\"" msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"" -#: mod/unfollow.php:51 mod/unfollow.php:107 -msgid "You aren't following this contact." -msgstr "You aren't following this contact." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." +msgstr "User not found." -#: mod/unfollow.php:61 mod/unfollow.php:113 -msgid "Unfollowing is currently not supported by your network." -msgstr "Unfollowing is currently not supported by your network." +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "View" -#: mod/unfollow.php:82 -msgid "Contact unfollowed" -msgstr "Contact unfollowed" +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Previous" -#: mod/unfollow.php:133 -msgid "Disconnect/Unfollow" -msgstr "Disconnect/Unfollow" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Next" -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "No videos selected" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "today" -#: mod/videos.php:252 src/Model/Item.php:3636 -msgid "View Video" -msgstr "View video" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "month" -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Recent videos" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "week" -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Upload new videos" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "day" -#: mod/wallmessage.php:68 mod/wallmessage.php:131 +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "List" + +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "User not found" + +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "This calendar format is not supported" + +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "No exportable data found" + +#: mod/cal.php:319 +msgid "calendar" +msgstr "calendar" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Item not found" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Edit post" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Save" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "web link" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Insert video link" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "video link" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Insert audio link" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "audio link" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "CC: email addresses" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Example: bob@example.com, mary@example.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Event cannot end before it has started." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Event title and starting time are required." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Create new event" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Event details" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Starting date and title are required." + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Event starts:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Required" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "Finish date/time is not known or not relevant" + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Event finishes:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "Adjust for viewer's time zone" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Location:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Title:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Share this event" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Basic" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Advanced" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Permissions" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Failed to remove event" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "Contact could not be added." + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "You already added this contact." + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "The network type couldn't be detected. Contact can't be added." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "diaspora* support isn't enabled. Contact can't be added." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus support is disabled. Contact can't be added." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Tags:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Contact photos" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Upload" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Files" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Personal notes" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Photo Albums" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Recent photos" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Upload new photos" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "everybody" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Contact information unavailable" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Album not found." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "Album successfully deleted" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "Album was empty." + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:583 +msgid "a photo" +msgstr "a photo" + +#: mod/photos.php:583 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Number of daily wall messages for %s exceeded. Message failed." +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s was tagged in %2$s by %3$s" -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Unable to check your home location." +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "Image upload didn't complete. Please try again." -#: mod/wallmessage.php:105 mod/wallmessage.php:114 -msgid "No recipient." -msgstr "No recipient." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "Image file is missing" -#: mod/wallmessage.php:145 -#, php-format +#: mod/photos.php:692 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Server can't accept new file uploads at this time. Please contact your administrator." -#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 -#: mod/wall_upload.php:58 mod/wall_upload.php:74 mod/wall_upload.php:119 -#: mod/wall_upload.php:170 mod/wall_upload.php:173 -msgid "Invalid request." -msgstr "Invalid request." +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "Image file is empty." -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows" +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "No photos selected" -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Or did you try to upload an empty file?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Upload photos" -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "File exceeds size limit of %s" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "New album name: " -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "File upload failed." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "or select existing album:" -#: mod/wall_upload.php:230 -msgid "Wall Photos" -msgstr "Wall photos" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "Do not show a status post for this upload" + +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Show to groups" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Show to contacts" + +#: mod/photos.php:1042 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Do you really want to delete this photo album and all its photos?" + +#: mod/photos.php:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Delete album" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Edit album" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "Drop album" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Show newest first" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Show oldest first" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "View photo" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission denied. Access to this item may be restricted." + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "Photo not available" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "Do you really want to delete this photo?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Delete photo" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "View photo" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Edit photo" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "Delete photo" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Use as profile photo" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "Private photo" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "View full size" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "[Select tags to remove]" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "New album name" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Caption" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Add Tag" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Example: @bob, @jojo@example.com, #California, #camping" + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "Do not rotate" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Rotate right (CW)" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Rotate left (CCW)" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "I like this (toggle)" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "I don't like this (toggle)" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "This is me" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Comment" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Map" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "You must be logged in to use addons. " + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Delete this item?" + +#: src/App/Page.php:298 +msgid "toggle mobile" +msgstr "Toggle mobile" #: src/App/Authentication.php:210 src/App/Authentication.php:262 msgid "Login failed." msgstr "Login failed." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID." -#: src/App/Authentication.php:224 src/Model/User.php:657 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "The error message was:" msgstr "The error message was:" @@ -3093,850 +3392,114 @@ msgstr "Welcome %s" msgid "Please upload a profile photo." msgstr "Please upload a profile photo." -#: src/App/Authentication.php:393 -#, php-format -msgid "Welcome back %s" -msgstr "Welcome back %s" - -#: src/App/Module.php:240 -msgid "You must be logged in to use addons. " -msgstr "You must be logged in to use addons. " - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Delete this item?" - -#: src/App/Page.php:298 -msgid "toggle mobile" -msgstr "Toggle mobile" - -#: src/App/Router.php:209 +#: src/App/Router.php:224 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Method not allowed for this module. Allowed method(s): %s" -#: src/App/Router.php:211 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Page not found" -#: src/App.php:326 -msgid "No system theme config value set." -msgstr "No system theme configuration value set." +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "" -#: src/BaseModule.php:150 +#: src/Database/DBStructure.php:93 +#, php-format 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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d occurred during database update:\n%s\n" -#: src/Console/ArchiveContact.php:105 +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Errors encountered performing database changes: " + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." +msgstr "" + +#: src/Database/DBStructure.php:300 #, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Could not find any unarchived contact entry for this URL (%s)" +msgid "%s: Database update" +msgstr "%s: Database update" -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "The contact entries have been archived" - -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Database/DBStructure.php:600 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Could not find any contact entry for this URL (%s)" +msgid "%s: updating %s table." +msgstr "%s: updating %s table." -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:47 -msgid "The contact has been blocked from the node" -msgstr "This contact has been blocked from the node" - -#: src/Console/PostUpdate.php:87 +#: src/Database/Database.php:659 src/Database/Database.php:762 #, php-format -msgid "Post update version number has been set to %s." -msgstr "Post update version number has been set to %s." - -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Check for pending update actions." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Done." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Execute pending post updates." - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "All pending post updates are done." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Enter new password: " - -#: src/Console/User.php:193 -msgid "Enter user name: " +msgid "Database error %d \"%s\" at \"%s\"" msgstr "" -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "" - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "" - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "" - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "" - -#: src/Console/User.php:313 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "Later posts" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "Earlier posts" - -#: src/Content/ContactSelector.php:48 -msgid "Frequently" -msgstr "Frequently" - -#: src/Content/ContactSelector.php:49 -msgid "Hourly" -msgstr "Hourly" - -#: src/Content/ContactSelector.php:50 -msgid "Twice daily" -msgstr "Twice daily" - -#: src/Content/ContactSelector.php:51 -msgid "Daily" -msgstr "Daily" - -#: src/Content/ContactSelector.php:52 -msgid "Weekly" -msgstr "Weekly" - -#: src/Content/ContactSelector.php:53 -msgid "Monthly" -msgstr "Monthly" - -#: src/Content/ContactSelector.php:107 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:108 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:109 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:110 src/Module/Admin/Users.php:237 -#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 -#: src/Module/Admin/Users.php:280 -msgid "Email" -msgstr "Email" - -#: src/Content/ContactSelector.php:111 src/Module/Debug/Babel.php:213 -msgid "Diaspora" -msgstr "diaspora*" - -#: src/Content/ContactSelector.php:112 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:113 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:114 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:115 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:116 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:117 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:118 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:119 -msgid "Discourse" -msgstr "Discourse" - -#: src/Content/ContactSelector.php:120 -msgid "Diaspora Connector" -msgstr "diaspora* connector" - -#: src/Content/ContactSelector.php:121 -msgid "GNU Social Connector" -msgstr "GNU Social Connector" - -#: src/Content/ContactSelector.php:122 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:123 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:157 -#, php-format -msgid "%s (via %s)" -msgstr "" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "General" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Photo location" - -#: src/Content/Feature.php:98 +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata." - -#: src/Content/Feature.php:99 -msgid "Export Public Calendar" -msgstr "Export public calendar" - -#: src/Content/Feature.php:99 -msgid "Ability for visitors to download the public calendar" -msgstr "Ability for visitors to download the public calendar" - -#: src/Content/Feature.php:100 -msgid "Trending Tags" -msgstr "Trending tags" - -#: src/Content/Feature.php:100 -msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Show a community page widget with a list of the most popular tags in recent public posts." - -#: src/Content/Feature.php:105 -msgid "Post Composition Features" -msgstr "Post composition" - -#: src/Content/Feature.php:106 -msgid "Auto-mention Forums" -msgstr "Auto-mention forums" - -#: src/Content/Feature.php:106 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." - -#: src/Content/Feature.php:107 -msgid "Explicit Mentions" -msgstr "Explicit Mentions" - -#: src/Content/Feature.php:107 -msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Add explicit mentions to comment box for manual control over who gets mentioned in replies." - -#: src/Content/Feature.php:112 -msgid "Network Sidebar" -msgstr "Network sidebar" - -#: src/Content/Feature.php:113 src/Content/Widget.php:547 -msgid "Archives" -msgstr "Archives" - -#: src/Content/Feature.php:113 -msgid "Ability to select posts by date ranges" -msgstr "Ability to select posts by date ranges" - -#: src/Content/Feature.php:114 -msgid "Protocol Filter" -msgstr "Protocol filter" - -#: src/Content/Feature.php:114 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "Enable widget to display Network posts only from selected protocols" - -#: src/Content/Feature.php:119 -msgid "Network Tabs" -msgstr "Network tabs" - -#: src/Content/Feature.php:120 -msgid "Network New Tab" -msgstr "Network new tab" - -#: src/Content/Feature.php:120 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Enable tab to display only new network posts (last 12 hours)" - -#: src/Content/Feature.php:121 -msgid "Network Shared Links Tab" -msgstr "Network shared links tab" - -#: src/Content/Feature.php:121 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Enable tab to display only network posts with links in them" - -#: src/Content/Feature.php:126 -msgid "Post/Comment Tools" -msgstr "Post/Comment tools" - -#: src/Content/Feature.php:127 -msgid "Post Categories" -msgstr "Post categories" - -#: src/Content/Feature.php:127 -msgid "Add categories to your posts" -msgstr "Add categories to your posts" - -#: src/Content/Feature.php:132 -msgid "Advanced Profile Settings" -msgstr "Advanced profiles" - -#: src/Content/Feature.php:133 -msgid "List Forums" -msgstr "List forums" - -#: src/Content/Feature.php:133 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Show visitors of public community forums at the advanced profile page" - -#: src/Content/Feature.php:134 -msgid "Tag Cloud" -msgstr "Tag cloud" - -#: src/Content/Feature.php:134 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Provide a personal tag cloud on your profile page" - -#: src/Content/Feature.php:135 -msgid "Display Membership Date" -msgstr "Display membership date" - -#: src/Content/Feature.php:135 -msgid "Display membership date in profile" -msgstr "Display membership date in profile" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:931 view/theme/vier/theme.php:225 -msgid "Forums" -msgstr "Forums" - -#: src/Content/ForumManager.php:147 view/theme/vier/theme.php:227 -msgid "External link to forum" -msgstr "External link to forum" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:454 -#: src/Content/Widget.php:553 view/theme/vier/theme.php:230 -msgid "show more" -msgstr "show more" - -#: src/Content/Nav.php:89 -msgid "Nothing new here" -msgstr "Nothing new here" - -#: src/Content/Nav.php:93 src/Module/Special/HTTPException.php:72 -msgid "Go back" -msgstr "Go back" - -#: src/Content/Nav.php:94 -msgid "Clear notifications" -msgstr "Clear notifications" - -#: src/Content/Nav.php:95 src/Content/Text/HTML.php:918 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" - -#: src/Content/Nav.php:168 src/Module/Security/Login.php:141 -msgid "Logout" -msgstr "Logout" - -#: src/Content/Nav.php:168 -msgid "End this session" -msgstr "End this session" - -#: src/Content/Nav.php:170 src/Module/Bookmarklet.php:45 -#: src/Module/Security/Login.php:142 -msgid "Login" -msgstr "Login" - -#: src/Content/Nav.php:170 -msgid "Sign in" -msgstr "Sign in" - -#: src/Content/Nav.php:175 src/Module/BaseProfile.php:60 -#: src/Module/Contact.php:635 src/Module/Contact.php:881 -#: src/Module/Settings/TwoFactor/Index.php:107 view/theme/frio/theme.php:258 -msgid "Status" -msgstr "Status" - -#: src/Content/Nav.php:175 src/Content/Nav.php:258 -#: view/theme/frio/theme.php:258 -msgid "Your posts and conversations" -msgstr "My posts and conversations" - -#: src/Content/Nav.php:176 src/Module/BaseProfile.php:52 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:637 -#: src/Module/Contact.php:897 src/Module/Profile/Profile.php:223 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:259 -msgid "Profile" -msgstr "Profile" - -#: src/Content/Nav.php:176 view/theme/frio/theme.php:259 -msgid "Your profile page" -msgstr "My profile page" - -#: src/Content/Nav.php:177 view/theme/frio/theme.php:260 -msgid "Your photos" -msgstr "My photos" - -#: src/Content/Nav.php:178 src/Module/BaseProfile.php:76 -#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:261 -msgid "Videos" -msgstr "Videos" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:261 -msgid "Your videos" -msgstr "My videos" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:262 -msgid "Your events" -msgstr "My events" - -#: src/Content/Nav.php:180 -msgid "Personal notes" -msgstr "Personal notes" - -#: src/Content/Nav.php:180 -msgid "Your personal notes" -msgstr "My personal notes" - -#: src/Content/Nav.php:197 src/Content/Nav.php:258 -msgid "Home" -msgstr "Home" - -#: src/Content/Nav.php:197 -msgid "Home Page" -msgstr "Home page" - -#: src/Content/Nav.php:201 src/Module/Register.php:155 -#: src/Module/Security/Login.php:102 -msgid "Register" -msgstr "Sign up now >>" - -#: src/Content/Nav.php:201 -msgid "Create an account" -msgstr "Create account" - -#: src/Content/Nav.php:207 src/Module/Help.php:69 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Index.php:106 -#: src/Module/Settings/TwoFactor/Recovery.php:93 -#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:269 -msgid "Help" -msgstr "Help" - -#: src/Content/Nav.php:207 -msgid "Help and documentation" -msgstr "Help and documentation" - -#: src/Content/Nav.php:211 -msgid "Apps" -msgstr "Apps" - -#: src/Content/Nav.php:211 -msgid "Addon applications, utilities, games" -msgstr "Addon applications, utilities, games" - -#: src/Content/Nav.php:215 src/Content/Text/HTML.php:916 -#: src/Module/Search/Index.php:97 -msgid "Search" -msgstr "Search" - -#: src/Content/Nav.php:215 -msgid "Search site content" -msgstr "Search site content" - -#: src/Content/Nav.php:218 src/Content/Text/HTML.php:925 -msgid "Full Text" -msgstr "Full text" - -#: src/Content/Nav.php:219 src/Content/Text/HTML.php:926 -#: src/Content/Widget/TagCloud.php:67 -msgid "Tags" -msgstr "Tags" - -#: src/Content/Nav.php:220 src/Content/Nav.php:279 -#: src/Content/Text/HTML.php:927 src/Module/BaseProfile.php:121 -#: src/Module/BaseProfile.php:124 src/Module/Contact.php:824 -#: src/Module/Contact.php:909 view/theme/frio/theme.php:269 -msgid "Contacts" -msgstr "Contacts" - -#: src/Content/Nav.php:239 -msgid "Community" -msgstr "Community" - -#: src/Content/Nav.php:239 -msgid "Conversations on this and other servers" -msgstr "Conversations on this and other servers" - -#: src/Content/Nav.php:243 src/Module/BaseProfile.php:91 -#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:266 -msgid "Events and Calendar" -msgstr "Events and calendar" - -#: src/Content/Nav.php:246 -msgid "Directory" -msgstr "Directory" - -#: src/Content/Nav.php:246 -msgid "People directory" -msgstr "People directory" - -#: src/Content/Nav.php:248 src/Module/BaseAdmin.php:92 -msgid "Information" -msgstr "Information" - -#: src/Content/Nav.php:248 -msgid "Information about this friendica instance" -msgstr "Information about this Friendica instance" - -#: src/Content/Nav.php:251 src/Module/Admin/Tos.php:61 -#: src/Module/BaseAdmin.php:102 src/Module/Register.php:163 -#: src/Module/Tos.php:84 -msgid "Terms of Service" -msgstr "Terms of Service" - -#: src/Content/Nav.php:251 -msgid "Terms of Service of this Friendica instance" -msgstr "Terms of Service of this Friendica instance" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Network" -msgstr "Network" - -#: src/Content/Nav.php:256 view/theme/frio/theme.php:265 -msgid "Conversations from your friends" -msgstr "My friends' conversations" - -#: src/Content/Nav.php:262 -msgid "Introductions" -msgstr "Introductions" - -#: src/Content/Nav.php:262 -msgid "Friend Requests" -msgstr "Friend requests" - -#: src/Content/Nav.php:263 src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:52 -msgid "Notifications" -msgstr "Notifications" - -#: src/Content/Nav.php:264 -msgid "See all notifications" -msgstr "See all notifications" - -#: src/Content/Nav.php:265 -msgid "Mark all system notifications seen" -msgstr "Mark notifications as seen" - -#: src/Content/Nav.php:268 view/theme/frio/theme.php:267 -msgid "Private mail" -msgstr "Private messages" - -#: src/Content/Nav.php:269 -msgid "Inbox" -msgstr "Inbox" - -#: src/Content/Nav.php:270 -msgid "Outbox" -msgstr "Outbox" - -#: src/Content/Nav.php:274 -msgid "Accounts" +"Friendica can't display this page at the moment, please contact the " +"administrator." msgstr "" -#: src/Content/Nav.php:274 -msgid "Manage other pages" -msgstr "Manage other pages" - -#: src/Content/Nav.php:277 src/Module/Admin/Addons/Details.php:119 -#: src/Module/Admin/Themes/Details.php:126 src/Module/BaseSettings.php:124 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:268 -msgid "Settings" -msgstr "Settings" - -#: src/Content/Nav.php:277 view/theme/frio/theme.php:268 -msgid "Account settings" -msgstr "Account settings" - -#: src/Content/Nav.php:279 view/theme/frio/theme.php:269 -msgid "Manage/edit friends and contacts" -msgstr "Manage/Edit friends and contacts" - -#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:131 -msgid "Admin" -msgstr "Admin" - -#: src/Content/Nav.php:284 -msgid "Site setup and configuration" -msgstr "Site setup and configuration" - -#: src/Content/Nav.php:287 -msgid "Navigation" -msgstr "Navigation" - -#: src/Content/Nav.php:287 -msgid "Site map" -msgstr "Site map" - -#: src/Content/OEmbed.php:266 -msgid "Embedding disabled" -msgstr "Embedding disabled" - -#: src/Content/OEmbed.php:388 -msgid "Embedded content" -msgstr "Embedded content" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "prev" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "last" - -#: src/Content/Text/BBCode.php:929 src/Content/Text/BBCode.php:1626 -#: src/Content/Text/BBCode.php:1627 -msgid "Image/photo" -msgstr "Image/Photo" - -#: src/Content/Text/BBCode.php:1047 -#, php-format -msgid "%2$s %3$s" +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." msgstr "" -#: src/Content/Text/BBCode.php:1544 src/Content/Text/HTML.php:968 -msgid "Click to open/close" -msgstr "Reveal/hide" - -#: src/Content/Text/BBCode.php:1575 -msgid "$1 wrote:" -msgstr "$1 wrote:" - -#: src/Content/Text/BBCode.php:1629 src/Content/Text/BBCode.php:1630 -msgid "Encrypted content" -msgstr "Encrypted content" - -#: src/Content/Text/BBCode.php:1855 -msgid "Invalid source protocol" -msgstr "Invalid source protocol" - -#: src/Content/Text/BBCode.php:1870 -msgid "Invalid link protocol" -msgstr "Invalid link protocol" - -#: src/Content/Text/HTML.php:816 -msgid "Loading more entries..." -msgstr "Loading more entries..." - -#: src/Content/Text/HTML.php:817 -msgid "The end" -msgstr "The end" - -#: src/Content/Text/HTML.php:910 src/Model/Profile.php:465 -#: src/Module/Contact.php:327 -msgid "Follow" -msgstr "Follow" - -#: src/Content/Widget/CalendarExport.php:79 -msgid "Export" -msgstr "Export" - -#: src/Content/Widget/CalendarExport.php:80 -msgid "Export calendar as ical" -msgstr "Export calendar as ical" - -#: src/Content/Widget/CalendarExport.php:81 -msgid "Export calendar as csv" -msgstr "Export calendar as csv" - -#: src/Content/Widget/ContactBlock.php:72 -msgid "No contacts" -msgstr "No contacts" - -#: src/Content/Widget/ContactBlock.php:104 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: src/Content/Widget/ContactBlock.php:123 -msgid "View Contacts" -msgstr "View contacts" - -#: src/Content/Widget/SavedSearches.php:48 -msgid "Remove term" -msgstr "Remove term" - -#: src/Content/Widget/SavedSearches.php:56 -msgid "Saved Searches" -msgstr "Saved searches" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Trending tags (last %d hour)" -msgstr[1] "Trending tags (last %d hours)" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "More trending tags" - -#: src/Content/Widget.php:53 -msgid "Add New Contact" -msgstr "Add new contact" - -#: src/Content/Widget.php:54 -msgid "Enter address or web location" -msgstr "Enter address or web location" - -#: src/Content/Widget.php:55 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Example: jo@example.com, http://example.com/jo" - -#: src/Content/Widget.php:72 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation available" -msgstr[1] "%d invitations available" - -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find People" -msgstr "Find people" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 -msgid "Enter name or interest" -msgstr "Enter name or interest" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Examples: Robert Morgenstein, fishing" - -#: src/Content/Widget.php:82 src/Module/Contact.php:845 -#: src/Module/Directory.php:103 view/theme/vier/theme.php:178 -msgid "Find" -msgstr "Find" - -#: src/Content/Widget.php:84 view/theme/vier/theme.php:180 -msgid "Similar Interests" -msgstr "Similar interests" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Random Profile" -msgstr "Random profile" - -#: src/Content/Widget.php:86 view/theme/vier/theme.php:182 -msgid "Invite Friends" -msgstr "Invite friends" - -#: src/Content/Widget.php:87 src/Module/Directory.php:95 -#: view/theme/vier/theme.php:183 -msgid "Global Directory" -msgstr "Global directory" - -#: src/Content/Widget.php:89 view/theme/vier/theme.php:185 -msgid "Local Directory" -msgstr "Local directory" - -#: src/Content/Widget.php:218 src/Model/Group.php:528 -#: src/Module/Contact.php:808 src/Module/Welcome.php:76 -msgid "Groups" -msgstr "Groups" - -#: src/Content/Widget.php:220 -msgid "Everyone" +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:822 -#: src/Module/Profile/Contacts.php:144 -msgid "Following" -msgstr "Following" - -#: src/Content/Widget.php:244 src/Module/Contact.php:823 -#: src/Module/Profile/Contacts.php:145 -msgid "Mutual friends" -msgstr "Mutual friends" - -#: src/Content/Widget.php:249 -msgid "Relationships" -msgstr "Relationships" - -#: src/Content/Widget.php:251 src/Module/Contact.php:760 -#: src/Module/Group.php:295 -msgid "All Contacts" -msgstr "All contacts" - -#: src/Content/Widget.php:294 -msgid "Protocols" -msgstr "Protocols" - -#: src/Content/Widget.php:296 -msgid "All Protocols" -msgstr "All protocols" - -#: src/Content/Widget.php:333 -msgid "Saved Folders" -msgstr "Saved Folders" - -#: src/Content/Widget.php:335 src/Content/Widget.php:374 -msgid "Everything" -msgstr "Everything" - -#: src/Content/Widget.php:372 -msgid "Categories" -msgstr "Categories" - -#: src/Content/Widget.php:449 +#: src/Core/Update.php:215 #, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact in common" -msgstr[1] "%d contacts in common" +msgid "Update %s failed. See error logs." +msgstr "Update %s failed. See error logs." + +#: src/Core/Update.php:280 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." + +#: src/Core/Update.php:286 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "The error message is\n[pre]%s[/pre]" + +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "[Friendica Notify] Database update" + +#: src/Core/Update.php:320 +#, php-format +msgid "" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s." #: src/Core/ACL.php:155 msgid "Yourself" msgstr "" +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "Followers" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "Mutuals" + #: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Post to email" @@ -3974,409 +3537,409 @@ msgstr "Except to:" msgid "Connectors" msgstr "Connectors" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:179 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: src/Core/Installer.php:199 +#: src/Core/Installer.php:198 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." -#: src/Core/Installer.php:200 src/Module/Install.php:191 +#: src/Core/Installer.php:199 src/Module/Install.php:191 #: src/Module/Install.php:345 msgid "Please see the file \"INSTALL.txt\"." msgstr "Please see the file \"INSTALL.txt\"." -#: src/Core/Installer.php:261 +#: src/Core/Installer.php:260 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Could not find a command line version of PHP in the web server PATH." -#: src/Core/Installer.php:262 +#: src/Core/Installer.php:261 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" -msgstr "If your server doesn't have a command line version of PHP installed, you won't be able to run background processing. See 'Setup the worker'" +msgstr "" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:267 +#: src/Core/Installer.php:266 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: src/Core/Installer.php:272 +#: src/Core/Installer.php:271 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:281 +#: src/Core/Installer.php:280 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version." -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:281 msgid "Found PHP version: " msgstr "Found PHP version: " -#: src/Core/Installer.php:284 +#: src/Core/Installer.php:283 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:297 +#: src/Core/Installer.php:296 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: src/Core/Installer.php:298 +#: src/Core/Installer.php:297 msgid "This is required for message delivery to work." msgstr "This is required for message delivery to work." -#: src/Core/Installer.php:303 +#: src/Core/Installer.php:302 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:335 +#: src/Core/Installer.php:334 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: src/Core/Installer.php:336 +#: src/Core/Installer.php:335 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:339 +#: src/Core/Installer.php:338 msgid "Generate encryption keys" msgstr "Generate encryption keys" -#: src/Core/Installer.php:391 +#: src/Core/Installer.php:390 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache web server mod-rewrite module is required but not installed." -#: src/Core/Installer.php:396 +#: src/Core/Installer.php:395 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:401 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Error: PDO or MySQLi PHP module required but not installed." -#: src/Core/Installer.php:407 +#: src/Core/Installer.php:406 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Error: MySQL driver for PDO is not installed." -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:410 msgid "PDO or MySQLi PHP module" msgstr "PDO or MySQLi PHP module" -#: src/Core/Installer.php:419 +#: src/Core/Installer.php:418 msgid "Error, XML PHP module required but not installed." msgstr "Error, XML PHP module required but not installed." -#: src/Core/Installer.php:423 +#: src/Core/Installer.php:422 msgid "XML PHP module" msgstr "XML PHP module" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:425 msgid "libCurl PHP module" msgstr "libCurl PHP module" -#: src/Core/Installer.php:427 +#: src/Core/Installer.php:426 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: libCURL PHP module required but not installed." -#: src/Core/Installer.php:433 +#: src/Core/Installer.php:432 msgid "GD graphics PHP module" msgstr "GD graphics PHP module" -#: src/Core/Installer.php:434 +#: src/Core/Installer.php:433 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: src/Core/Installer.php:440 +#: src/Core/Installer.php:439 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP module" -#: src/Core/Installer.php:441 +#: src/Core/Installer.php:440 msgid "Error: openssl PHP module required but not installed." msgstr "Error: openssl PHP module required but not installed." -#: src/Core/Installer.php:447 +#: src/Core/Installer.php:446 msgid "mb_string PHP module" msgstr "mb_string PHP module" -#: src/Core/Installer.php:448 +#: src/Core/Installer.php:447 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: mb_string PHP module required but not installed." -#: src/Core/Installer.php:454 +#: src/Core/Installer.php:453 msgid "iconv PHP module" msgstr "iconv PHP module" -#: src/Core/Installer.php:455 +#: src/Core/Installer.php:454 msgid "Error: iconv PHP module required but not installed." msgstr "Error: iconv PHP module required but not installed." -#: src/Core/Installer.php:461 +#: src/Core/Installer.php:460 msgid "POSIX PHP module" msgstr "POSIX PHP module" -#: src/Core/Installer.php:462 +#: src/Core/Installer.php:461 msgid "Error: POSIX PHP module required but not installed." msgstr "Error: POSIX PHP module required but not installed." -#: src/Core/Installer.php:468 +#: src/Core/Installer.php:467 msgid "JSON PHP module" msgstr "JSON PHP module" -#: src/Core/Installer.php:469 +#: src/Core/Installer.php:468 msgid "Error: JSON PHP module required but not installed." msgstr "Error: JSON PHP module is required but not installed." -#: src/Core/Installer.php:475 +#: src/Core/Installer.php:474 msgid "File Information PHP module" msgstr "File Information PHP module" -#: src/Core/Installer.php:476 +#: src/Core/Installer.php:475 msgid "Error: File Information PHP module required but not installed." msgstr "Error: File Information PHP module required but not installed." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:498 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server, but is unable to do so." -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:499 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 "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can." -#: src/Core/Installer.php:501 +#: src/Core/Installer.php:500 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder." -#: src/Core/Installer.php:502 +#: src/Core/Installer.php:501 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions." -#: src/Core/Installer.php:505 +#: src/Core/Installer.php:504 msgid "config/local.config.php is writable" msgstr "config/local.config.php is writable" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:524 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:525 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 "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 directory." -#: src/Core/Installer.php:527 +#: src/Core/Installer.php:526 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Please ensure the user that your web server runs as (e.g. www-data) has write access to this directory." -#: src/Core/Installer.php:528 +#: src/Core/Installer.php:527 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: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains." -#: src/Core/Installer.php:531 +#: src/Core/Installer.php:530 msgid "view/smarty3 is writable" msgstr "view/smarty3 is writable" -#: src/Core/Installer.php:560 +#: src/Core/Installer.php:559 msgid "" "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" " to .htaccess." msgstr "Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess." -#: src/Core/Installer.php:562 +#: src/Core/Installer.php:561 msgid "Error message from Curl when fetching" msgstr "Error message from Curl while fetching" -#: src/Core/Installer.php:567 +#: src/Core/Installer.php:566 msgid "Url rewrite is working" msgstr "URL rewrite is working" -#: src/Core/Installer.php:596 +#: src/Core/Installer.php:595 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extension is not installed" -#: src/Core/Installer.php:598 +#: src/Core/Installer.php:597 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: src/Core/Installer.php:600 +#: src/Core/Installer.php:599 msgid "ImageMagick supports GIF" msgstr "ImageMagick supports GIF" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:621 msgid "Database already in use." msgstr "Database already in use." -#: src/Core/Installer.php:627 +#: src/Core/Installer.php:626 msgid "Could not connect to database." msgstr "Could not connect to database." -#: src/Core/L10n.php:371 src/Model/Event.php:411 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 msgid "Monday" msgstr "Monday" -#: src/Core/L10n.php:371 src/Model/Event.php:412 +#: src/Core/L10n.php:371 src/Model/Event.php:414 msgid "Tuesday" msgstr "Tuesday" -#: src/Core/L10n.php:371 src/Model/Event.php:413 +#: src/Core/L10n.php:371 src/Model/Event.php:415 msgid "Wednesday" msgstr "Wednesday" -#: src/Core/L10n.php:371 src/Model/Event.php:414 +#: src/Core/L10n.php:371 src/Model/Event.php:416 msgid "Thursday" msgstr "Thursday" -#: src/Core/L10n.php:371 src/Model/Event.php:415 +#: src/Core/L10n.php:371 src/Model/Event.php:417 msgid "Friday" msgstr "Friday" -#: src/Core/L10n.php:371 src/Model/Event.php:416 +#: src/Core/L10n.php:371 src/Model/Event.php:418 msgid "Saturday" msgstr "Saturday" -#: src/Core/L10n.php:371 src/Model/Event.php:410 -#: src/Module/Settings/Display.php:171 +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 msgid "Sunday" msgstr "Sunday" -#: src/Core/L10n.php:375 src/Model/Event.php:431 +#: src/Core/L10n.php:375 src/Model/Event.php:433 msgid "January" msgstr "January" -#: src/Core/L10n.php:375 src/Model/Event.php:432 +#: src/Core/L10n.php:375 src/Model/Event.php:434 msgid "February" msgstr "February" -#: src/Core/L10n.php:375 src/Model/Event.php:433 +#: src/Core/L10n.php:375 src/Model/Event.php:435 msgid "March" msgstr "March" -#: src/Core/L10n.php:375 src/Model/Event.php:434 +#: src/Core/L10n.php:375 src/Model/Event.php:436 msgid "April" msgstr "April" -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:422 +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 msgid "May" msgstr "May" -#: src/Core/L10n.php:375 src/Model/Event.php:435 +#: src/Core/L10n.php:375 src/Model/Event.php:437 msgid "June" msgstr "June" -#: src/Core/L10n.php:375 src/Model/Event.php:436 +#: src/Core/L10n.php:375 src/Model/Event.php:438 msgid "July" msgstr "July" -#: src/Core/L10n.php:375 src/Model/Event.php:437 +#: src/Core/L10n.php:375 src/Model/Event.php:439 msgid "August" msgstr "August" -#: src/Core/L10n.php:375 src/Model/Event.php:438 +#: src/Core/L10n.php:375 src/Model/Event.php:440 msgid "September" msgstr "September" -#: src/Core/L10n.php:375 src/Model/Event.php:439 +#: src/Core/L10n.php:375 src/Model/Event.php:441 msgid "October" msgstr "October" -#: src/Core/L10n.php:375 src/Model/Event.php:440 +#: src/Core/L10n.php:375 src/Model/Event.php:442 msgid "November" msgstr "November" -#: src/Core/L10n.php:375 src/Model/Event.php:441 +#: src/Core/L10n.php:375 src/Model/Event.php:443 msgid "December" msgstr "December" -#: src/Core/L10n.php:391 src/Model/Event.php:403 +#: src/Core/L10n.php:391 src/Model/Event.php:405 msgid "Mon" msgstr "Mon" -#: src/Core/L10n.php:391 src/Model/Event.php:404 +#: src/Core/L10n.php:391 src/Model/Event.php:406 msgid "Tue" msgstr "Tue" -#: src/Core/L10n.php:391 src/Model/Event.php:405 +#: src/Core/L10n.php:391 src/Model/Event.php:407 msgid "Wed" msgstr "Wed" -#: src/Core/L10n.php:391 src/Model/Event.php:406 +#: src/Core/L10n.php:391 src/Model/Event.php:408 msgid "Thu" msgstr "Thu" -#: src/Core/L10n.php:391 src/Model/Event.php:407 +#: src/Core/L10n.php:391 src/Model/Event.php:409 msgid "Fri" msgstr "Fri" -#: src/Core/L10n.php:391 src/Model/Event.php:408 +#: src/Core/L10n.php:391 src/Model/Event.php:410 msgid "Sat" msgstr "Sat" -#: src/Core/L10n.php:391 src/Model/Event.php:402 +#: src/Core/L10n.php:391 src/Model/Event.php:404 msgid "Sun" msgstr "Sun" -#: src/Core/L10n.php:395 src/Model/Event.php:418 +#: src/Core/L10n.php:395 src/Model/Event.php:420 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:395 src/Model/Event.php:419 +#: src/Core/L10n.php:395 src/Model/Event.php:421 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:395 src/Model/Event.php:420 +#: src/Core/L10n.php:395 src/Model/Event.php:422 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:395 src/Model/Event.php:421 +#: src/Core/L10n.php:395 src/Model/Event.php:423 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:395 src/Model/Event.php:423 +#: src/Core/L10n.php:395 src/Model/Event.php:425 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:395 src/Model/Event.php:424 +#: src/Core/L10n.php:395 src/Model/Event.php:426 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:395 src/Model/Event.php:425 +#: src/Core/L10n.php:395 src/Model/Event.php:427 msgid "Aug" msgstr "Aug" @@ -4384,15 +3947,15 @@ msgstr "Aug" msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:395 src/Model/Event.php:427 +#: src/Core/L10n.php:395 src/Model/Event.php:429 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:395 src/Model/Event.php:428 +#: src/Core/L10n.php:395 src/Model/Event.php:430 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:395 src/Model/Event.php:429 +#: src/Core/L10n.php:395 src/Model/Event.php:431 msgid "Dec" msgstr "Dec" @@ -4444,39 +4007,6 @@ msgstr "rebuff" msgid "rebuffed" msgstr "rebuffed" -#: src/Core/Update.php:213 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s failed. See error logs." - -#: src/Core/Update.php:277 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." - -#: src/Core/Update.php:283 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "The error message is\n[pre]%s[/pre]" - -#: src/Core/Update.php:287 src/Core/Update.php:323 -msgid "[Friendica Notify] Database update" -msgstr "[Friendica Notify] Database update" - -#: src/Core/Update.php:317 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s." - #: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Error decoding account file" @@ -4509,41 +4039,405 @@ msgstr "User profile creation error" msgid "Done. You can now login with your username and password" msgstr "Done. You can now login with your username and password" -#: src/Database/DBStructure.php:69 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "" +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Legacy module file not found: %s" -#: src/Database/DBStructure.php:93 +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(no subject)" + +#: src/Object/EMail/ItemCCEMail.php:39 #, php-format msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nError %d occurred during database update:\n%s\n" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "This message was sent to you by %s, a member of the Friendica social network." -#: src/Database/DBStructure.php:96 -msgid "Errors encountered performing database changes: " -msgstr "Errors encountered performing database changes: " - -#: src/Database/DBStructure.php:285 +#: src/Object/EMail/ItemCCEMail.php:41 #, php-format -msgid "%s: Database update" -msgstr "%s: Database update" +msgid "You may visit them online at %s" +msgstr "You may visit them online at %s" -#: src/Database/DBStructure.php:546 +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages." + +#: src/Object/EMail/ItemCCEMail.php:46 #, php-format -msgid "%s: updating %s table." -msgstr "%s: updating %s table." +msgid "%s posted an update." +msgstr "%s posted an update." -#: src/Factory/Notification/Introduction.php:132 +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "This entry was edited" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Private message" + +#: src/Object/Post.php:213 +msgid "pinned item" +msgstr "pinned item" + +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "Delete locally" + +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "Delete globally" + +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "Remove locally" + +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "Save to folder" + +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "I will attend" + +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "I will not attend" + +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "I might attend" + +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "Ignore thread" + +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "Unignore thread" + +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "Toggle ignore status" + +#: src/Object/Post.php:314 +msgid "pin" +msgstr "Pin" + +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "Unpin" + +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "Toggle pin status" + +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "pinned" + +#: src/Object/Post.php:326 +msgid "add star" +msgstr "Add star" + +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "Remove star" + +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "Toggle star status" + +#: src/Object/Post.php:331 +msgid "starred" +msgstr "Starred" + +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "Add tag" + +#: src/Object/Post.php:345 +msgid "like" +msgstr "Like" + +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "Dislike" + +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Share this" + +#: src/Object/Post.php:348 +msgid "share" +msgstr "Share" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "%s (Received %s)" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "to" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "via" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "Wall-to-wall" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall:" + +#: src/Object/Post.php:481 +#, php-format +msgid "Reply to %s" +msgstr "Reply to %s" + +#: src/Object/Post.php:484 +msgid "More" +msgstr "" + +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "Notifier task is pending" + +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "Delivery to remote servers is pending" + +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "Delivery to remote servers is underway" + +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "Delivery to remote servers is mostly done" + +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "Delivery to remote servers is done" + +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comment" +msgstr[1] "%d comments" + +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "Show more" + +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "Show fewer" + +#: src/Object/Post.php:537 src/Model/Item.php:3336 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comment" +msgstr[1] "comments" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Could not find any unarchived contact entry for this URL (%s)" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "The contact entries have been archived" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Could not find any contact entry for this URL (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "This contact has been blocked from the node" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "Enter new password: " + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "Post update version number has been set to %s." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Check for pending update actions." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Done." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Execute pending post updates." + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "All pending post updates are done." + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Home town:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Sexual preference:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Political views:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Religious views:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Likes:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Title/Description:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Summary" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Music:" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Books, literature, poetry:" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Television:" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Film, dance, culture, entertainment" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interests:" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Love/Romance:" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Work/Employment:" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "School/Education:" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Contact information and other social networks:" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "No system theme configuration value set." + +#: src/Factory/Notification/Introduction.php:128 msgid "Friend Suggestion" msgstr "Friend suggestion" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "Friend/Connect Request" msgstr "Friend/Contact request" -#: src/Factory/Notification/Introduction.php:164 +#: src/Factory/Notification/Introduction.php:158 msgid "New Follower" msgstr "New follower" @@ -4588,3262 +4482,260 @@ msgstr "" msgid "%s is now friends with %s" msgstr "%s is now friends with %s" -#: src/LegacyModule.php:49 +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Network notifications" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "System notifications" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Personal notifications" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Home notifications" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 #, php-format -msgid "Legacy module file not found: %s" -msgstr "Legacy module file not found: %s" +msgid "No more %s notifications." +msgstr "No more %s notifications." -#: src/Model/Contact.php:1273 src/Model/Contact.php:1286 -msgid "UnFollow" -msgstr "Unfollow" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Show unread" -#: src/Model/Contact.php:1282 -msgid "Drop Contact" -msgstr "Drop contact" +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Show all" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Notifications" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Show ignored requests." + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Hide ignored requests" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "Notification type:" + +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" +msgstr "Suggested by:" + +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "Hide this contact from others" -#: src/Model/Contact.php:1292 src/Module/Admin/Users.php:251 #: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 msgid "Approve" msgstr "Approve" -#: src/Model/Contact.php:1862 -msgid "Organisation" -msgstr "Organization" +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Says they know me:" -#: src/Model/Contact.php:1866 -msgid "News" -msgstr "News" +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "Shall your connection be in both directions or not?" -#: src/Model/Contact.php:1870 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2286 -msgid "Connect URL missing." -msgstr "Connect URL missing." - -#: src/Model/Contact.php:2295 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." - -#: src/Model/Contact.php:2336 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "This site is not configured to allow communications with other networks." - -#: src/Model/Contact.php:2337 src/Model/Contact.php:2350 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No compatible communication protocols or feeds were discovered." - -#: src/Model/Contact.php:2348 -msgid "The profile address specified does not provide adequate information." -msgstr "The profile address specified does not provide adequate information." - -#: src/Model/Contact.php:2353 -msgid "An author or name was not found." -msgstr "An author or name was not found." - -#: src/Model/Contact.php:2356 -msgid "No browser URL could be matched to this address." -msgstr "No browser URL could be matched to this address." - -#: src/Model/Contact.php:2359 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Unable to match @-style identity address with a known protocol or email contact." - -#: src/Model/Contact.php:2360 -msgid "Use mailto: in front of address to force email check." -msgstr "Use mailto: in front of address to force email check." - -#: src/Model/Contact.php:2366 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "The profile address specified belongs to a network which has been disabled on this site." - -#: src/Model/Contact.php:2371 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Limited profile: This person will be unable to receive direct/private messages from you." - -#: src/Model/Contact.php:2432 -msgid "Unable to retrieve contact information." -msgstr "Unable to retrieve contact information." - -#: src/Model/Event.php:49 src/Model/Event.php:862 -#: src/Module/Debug/Localtime.php:36 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: src/Model/Event.php:76 src/Model/Event.php:93 src/Model/Event.php:450 -#: src/Model/Event.php:930 -msgid "Starts:" -msgstr "Starts:" - -#: src/Model/Event.php:79 src/Model/Event.php:99 src/Model/Event.php:451 -#: src/Model/Event.php:934 -msgid "Finishes:" -msgstr "Finishes:" - -#: src/Model/Event.php:400 -msgid "all-day" -msgstr "All-day" - -#: src/Model/Event.php:426 -msgid "Sept" -msgstr "Sep" - -#: src/Model/Event.php:448 -msgid "No events to display" -msgstr "No events to display" - -#: src/Model/Event.php:576 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:607 -msgid "Edit event" -msgstr "Edit event" - -#: src/Model/Event.php:608 -msgid "Duplicate event" -msgstr "Duplicate event" - -#: src/Model/Event.php:609 -msgid "Delete event" -msgstr "Delete event" - -#: src/Model/Event.php:641 src/Model/Item.php:3706 src/Model/Item.php:3713 -msgid "link to source" -msgstr "Link to source" - -#: src/Model/Event.php:863 -msgid "D g:i A" -msgstr "D g:i A" - -#: src/Model/Event.php:864 -msgid "g:i A" -msgstr "g:i A" - -#: src/Model/Event.php:949 src/Model/Event.php:951 -msgid "Show map" -msgstr "Show map" - -#: src/Model/Event.php:950 -msgid "Hide map" -msgstr "Hide map" - -#: src/Model/Event.php:1042 +#: src/Module/Notifications/Introductions.php:126 #, php-format -msgid "%s's birthday" -msgstr "%s's birthday" - -#: src/Model/Event.php:1043 -#, php-format -msgid "Happy Birthday %s" -msgstr "Happy Birthday, %s!" - -#: src/Model/FileTag.php:280 -msgid "Item filed" -msgstr "Item filed" - -#: src/Model/Group.php:92 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 "A deleted group with this name has been 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." +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Accepting %s as a friend allows %s to subscribe to your posts. You will also receive updates from them in your news feed." -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Default privacy group for new contacts" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Everybody" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "edit" - -#: src/Model/Group.php:527 -msgid "add" -msgstr "add" - -#: src/Model/Group.php:532 -msgid "Edit group" -msgstr "Edit group" - -#: src/Model/Group.php:533 src/Module/Group.php:194 -msgid "Contacts not in any group" -msgstr "Contacts not in any group" - -#: src/Model/Group.php:535 -msgid "Create a new group" -msgstr "Create new group" - -#: src/Model/Group.php:536 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:279 -msgid "Group Name: " -msgstr "Group name: " - -#: src/Model/Group.php:537 -msgid "Edit groups" -msgstr "Edit groups" - -#: src/Model/Item.php:3448 -msgid "activity" -msgstr "activity" - -#: src/Model/Item.php:3450 src/Object/Post.php:535 -msgid "comment" -msgid_plural "comments" -msgstr[0] "comment" -msgstr[1] "comments" - -#: src/Model/Item.php:3453 -msgid "post" -msgstr "post" - -#: src/Model/Item.php:3576 +#: src/Module/Notifications/Introductions.php:127 #, php-format -msgid "Content warning: %s" -msgstr "Content warning: %s" +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." -#: src/Model/Item.php:3653 -msgid "bytes" -msgstr "bytes" +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Friend" -#: src/Model/Item.php:3700 -msgid "View on separate page" -msgstr "View on separate page" +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Subscriber" -#: src/Model/Item.php:3701 -msgid "view on separate page" -msgstr "view on separate page" - -#: src/Model/Mail.php:129 src/Model/Mail.php:264 -msgid "[no subject]" -msgstr "[no subject]" - -#: src/Model/Profile.php:360 src/Module/Profile/Profile.php:235 -#: src/Module/Profile/Profile.php:237 -msgid "Edit profile" -msgstr "Edit profile" - -#: src/Model/Profile.php:362 -msgid "Change profile photo" -msgstr "Change profile photo" - -#: src/Model/Profile.php:381 src/Module/Directory.php:159 -#: src/Module/Profile/Profile.php:167 -msgid "Homepage:" -msgstr "Homepage:" - -#: src/Model/Profile.php:382 src/Module/Contact.php:630 -#: src/Module/Notifications/Introductions.php:168 +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 msgid "About:" msgstr "About:" -#: src/Model/Profile.php:383 src/Module/Contact.php:628 -#: src/Module/Profile/Profile.php:163 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:467 src/Module/Contact.php:329 -msgid "Unfollow" -msgstr "Unfollow" - -#: src/Model/Profile.php:469 -msgid "Atom feed" -msgstr "Atom feed" - -#: src/Model/Profile.php:477 src/Module/Contact.php:325 -#: src/Module/Notifications/Introductions.php:180 +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 msgid "Network:" msgstr "Network:" -#: src/Model/Profile.php:507 src/Model/Profile.php:604 -msgid "g A l F d" -msgstr "g A l F d" +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "No introductions." -#: src/Model/Profile.php:508 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:570 src/Model/Profile.php:655 -msgid "[today]" -msgstr "[today]" - -#: src/Model/Profile.php:580 -msgid "Birthday Reminders" -msgstr "Birthday reminders" - -#: src/Model/Profile.php:581 -msgid "Birthdays this week:" -msgstr "Birthdays this week:" - -#: src/Model/Profile.php:642 -msgid "[No description]" -msgstr "[No description]" - -#: src/Model/Profile.php:668 -msgid "Event Reminders" -msgstr "Event reminders" - -#: src/Model/Profile.php:669 -msgid "Upcoming events the next 7 days:" -msgstr "Upcoming events the next 7 days:" - -#: src/Model/Profile.php:844 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s welcomes %2$s" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Database storage failed to update %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Database storage failed to insert data" - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "Filesystem storage failed to create \"%s\". Check you write permissions." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "Filesystem storage failed to save data to \"%s\". Check your write permissions" - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Storage base path" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Enter a valid existing folder" - -#: src/Model/User.php:372 -msgid "Login failed" -msgstr "Login failed" - -#: src/Model/User.php:404 -msgid "Not enough information to authenticate" -msgstr "Not enough information to authenticate" - -#: src/Model/User.php:498 -msgid "Password can't be empty" -msgstr "Password can't be empty" - -#: src/Model/User.php:517 -msgid "Empty passwords are not allowed." -msgstr "Empty passwords are not allowed." - -#: src/Model/User.php:521 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "The new password has been exposed in a public data dump; please choose another." - -#: src/Model/User.php:527 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "The password can't contain accentuated letters, white spaces or colons (:)" - -#: src/Model/User.php:625 -msgid "Passwords do not match. Password unchanged." -msgstr "Passwords do not match. Password unchanged." - -#: src/Model/User.php:632 -msgid "An invitation is required." -msgstr "An invitation is required." - -#: src/Model/User.php:636 -msgid "Invitation could not be verified." -msgstr "Invitation could not be verified." - -#: src/Model/User.php:644 -msgid "Invalid OpenID url" -msgstr "Invalid OpenID URL" - -#: src/Model/User.php:663 -msgid "Please enter the required information." -msgstr "Please enter the required information." - -#: src/Model/User.php:677 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values." - -#: src/Model/User.php:684 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "Username should be at least %s character." -msgstr[1] "Username should be at least %s characters." - -#: src/Model/User.php:688 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "Username should be at most %s character." -msgstr[1] "Username should be at most %s characters." - -#: src/Model/User.php:696 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "That doesn't appear to be your full (i.e first and last) name." - -#: src/Model/User.php:701 -msgid "Your email domain is not among those allowed on this site." -msgstr "Your email domain is not allowed on this site." - -#: src/Model/User.php:705 -msgid "Not a valid email address." -msgstr "Not a valid email address." - -#: src/Model/User.php:708 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "The nickname was blocked from registration by the nodes admin." - -#: src/Model/User.php:712 src/Model/User.php:720 -msgid "Cannot use that email." -msgstr "Cannot use that email." - -#: src/Model/User.php:727 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Your nickname can only contain a-z, 0-9 and _." - -#: src/Model/User.php:735 src/Model/User.php:792 -msgid "Nickname is already registered. Please choose another." -msgstr "Nickname is already registered. Please choose another." - -#: src/Model/User.php:745 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "SERIOUS ERROR: Generation of security keys failed." - -#: src/Model/User.php:779 src/Model/User.php:783 -msgid "An error occurred during registration. Please try again." -msgstr "An error occurred during registration. Please try again." - -#: src/Model/User.php:806 -msgid "An error occurred creating your default profile. Please try again." -msgstr "An error occurred creating your default profile. Please try again." - -#: src/Model/User.php:813 -msgid "An error occurred creating your self contact. Please try again." -msgstr "An error occurred creating your self contact. Please try again." - -#: src/Model/User.php:818 -msgid "Friends" -msgstr "Friends" - -#: src/Model/User.php:822 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "An error occurred while creating your default contact group. Please try again." - -#: src/Model/User.php:1010 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" msgstr "" -#: src/Model/User.php:1013 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "" +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Logged out." -#: src/Model/User.php:1046 src/Model/User.php:1153 -#, php-format -msgid "Registration details for %s" -msgstr "Registration details for %s" +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Invalid code, please try again." -#: src/Model/User.php:1066 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%4$s\n\t\t\tPassword:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1085 -#, php-format -msgid "Registration at %s" -msgstr "Registration at %s" - -#: src/Model/User.php:1109 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account has been created.\n\t\t\t" - -#: src/Model/User.php:1117 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%1$s\n\t\t\tPassword:\t\t%5$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n\n\t\t\tThank you and welcome to %2$s." - -#: src/Module/Admin/Addons/Details.php:70 -msgid "Addon not found." -msgstr "Addon not found." - -#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "Addon %s disabled." - -#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "Addon %s enabled." - -#: src/Module/Admin/Addons/Details.php:93 -#: src/Module/Admin/Themes/Details.php:79 -msgid "Disable" -msgstr "Disable" - -#: src/Module/Admin/Addons/Details.php:96 -#: src/Module/Admin/Themes/Details.php:82 -msgid "Enable" -msgstr "Enable" - -#: src/Module/Admin/Addons/Details.php:116 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:89 -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:75 src/Module/Admin/Site.php:603 -#: src/Module/Admin/Summary.php:214 src/Module/Admin/Themes/Details.php:123 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:60 -#: src/Module/Admin/Users.php:242 -msgid "Administration" -msgstr "Administration" - -#: src/Module/Admin/Addons/Details.php:117 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:99 -#: src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Addons" - -#: src/Module/Admin/Addons/Details.php:118 -#: src/Module/Admin/Themes/Details.php:125 -msgid "Toggle" -msgstr "Toggle" - -#: src/Module/Admin/Addons/Details.php:126 -#: src/Module/Admin/Themes/Details.php:134 -msgid "Author: " -msgstr "Author: " - -#: src/Module/Admin/Addons/Details.php:127 -#: src/Module/Admin/Themes/Details.php:135 -msgid "Maintainer: " -msgstr "Maintainer: " - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "Addon %s failed to install." - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Reload active addons" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s contact unblocked" -msgstr[1] "%s contacts unblocked" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Remote contact block-list" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "This page allows you to prevent any message from a remote contact to reach your node." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Block remote contact" - -#: src/Module/Admin/Blocklist/Contact.php:82 src/Module/Admin/Users.php:245 -msgid "select all" -msgstr "select all" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "select none" - -#: src/Module/Admin/Blocklist/Contact.php:85 src/Module/Admin/Users.php:256 -#: src/Module/Contact.php:604 src/Module/Contact.php:852 -#: src/Module/Contact.php:1111 -msgid "Unblock" -msgstr "Unblock" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "No remote contact is blocked from this node." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Blocked remote contacts" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Block new remote contact" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Photo" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Reason" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "%s total blocked contact" -msgstr[1] "%s blocked contacts" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "URL of the remote contact to block." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Block reason" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "Server domain pattern added to block-list." - -#: src/Module/Admin/Blocklist/Server.php:65 -msgid "Site blocklist updated." -msgstr "Site block-list updated." - -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Blocked server domain pattern" -msgstr "Blocked server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:81 -#: src/Module/Admin/Blocklist/Server.php:106 src/Module/Friendica.php:78 -msgid "Reason for the block" -msgstr "Reason for the block" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Delete server domain pattern" -msgstr "Delete server domain pattern" - -#: src/Module/Admin/Blocklist/Server.php:82 -msgid "Check to delete this entry from the blocklist" -msgstr "Check to delete this entry from the block-list" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "Server Domain Pattern Blocklist" -msgstr "Server domain pattern block-list" - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"This page can be used to define a blacklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "This page can be used to define a block-list of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it." - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." - -#: src/Module/Admin/Blocklist/Server.php:93 -msgid "" -"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Add new entry to block list" -msgstr "Add new entry to block-list" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Server Domain Pattern" -msgstr "Server Domain Pattern" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "The domain pattern of the new server to add to the block-list. Do not include the protocol." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Block reason" -msgstr "Block reason" - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "The reason why you blocked this server domain pattern." -msgstr "The reason why you blocked this server domain pattern." - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Add Entry" -msgstr "Add entry" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Save changes to the blocklist" -msgstr "Save changes to the block-list" - -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Current Entries in the Blocklist" -msgstr "Current entries in the block-list" - -#: src/Module/Admin/Blocklist/Server.php:107 -msgid "Delete entry from blocklist" -msgstr "Delete entry from block-list" - -#: src/Module/Admin/Blocklist/Server.php:110 -msgid "Delete entry from blocklist?" -msgstr "Delete entry from block-list?" - -#: src/Module/Admin/DBSync.php:50 -msgid "Update has been marked successful" -msgstr "Update has been marked successful" - -#: src/Module/Admin/DBSync.php:60 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Database structure update %s was successfully applied." - -#: src/Module/Admin/DBSync.php:64 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Execution of database structure update %s failed with error: %s" - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Execution of %s failed with error: %s" - -#: src/Module/Admin/DBSync.php:83 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was successfully applied." - -#: src/Module/Admin/DBSync.php:86 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s did not return a status. Unknown if it succeeded." - -#: src/Module/Admin/DBSync.php:89 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "There was no additional update function %s that needed to be called." - -#: src/Module/Admin/DBSync.php:109 -msgid "No failed updates." -msgstr "No failed updates." - -#: src/Module/Admin/DBSync.php:110 -msgid "Check database structure" -msgstr "Check database structure" - -#: src/Module/Admin/DBSync.php:115 -msgid "Failed Updates" -msgstr "Failed updates" - -#: src/Module/Admin/DBSync.php:116 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "This does not include updates prior to 1139, which did not return a status." - -#: src/Module/Admin/DBSync.php:117 -msgid "Mark success (if update was manually applied)" -msgstr "Mark success (if update was manually applied)" - -#: src/Module/Admin/DBSync.php:118 -msgid "Attempt to execute this update step automatically" -msgstr "Attempt to execute this update step automatically" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "Lock feature %s" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Manage additional features" - -#: src/Module/Admin/Federation.php:52 -msgid "Other" -msgstr "Other" - -#: src/Module/Admin/Federation.php:106 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "unknown" - -#: src/Module/Admin/Federation.php:134 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node.\"" - -#: src/Module/Admin/Federation.php:135 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here." - -#: src/Module/Admin/Federation.php:141 src/Module/BaseAdmin.php:94 -msgid "Federation Statistics" -msgstr "Federation statistics" - -#: src/Module/Admin/Federation.php:147 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Currently, this node is aware of %d nodes with %d registered users from the following platforms:" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Item marked for deletion." - -#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:112 -msgid "Delete Item" -msgstr "Delete item" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Delete" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "GUID of item to be deleted." - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Guid" -msgstr "Item Guid" - -#: src/Module/Admin/Logs/Settings.php:45 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "The logfile '%s' is not writable. No logging is possible" - -#: src/Module/Admin/Logs/Settings.php:54 -msgid "Log settings updated." -msgstr "Log settings updated." - -#: src/Module/Admin/Logs/Settings.php:71 -msgid "PHP log currently enabled." -msgstr "PHP log currently enabled." - -#: src/Module/Admin/Logs/Settings.php:73 -msgid "PHP log currently disabled." -msgstr "PHP log currently disabled." - -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:114 -#: src/Module/BaseAdmin.php:115 -msgid "Logs" -msgstr "Logs" - -#: src/Module/Admin/Logs/Settings.php:82 -msgid "Clear" -msgstr "Clear" - -#: src/Module/Admin/Logs/Settings.php:86 -msgid "Enable Debugging" -msgstr "Enable debugging" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Log file" -msgstr "Log file" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Must be writable by web server and relative to your Friendica top-level directory." - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log level" -msgstr "Log level" - -#: src/Module/Admin/Logs/Settings.php:90 -msgid "PHP logging" -msgstr "PHP logging" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them." - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Error trying to open %1$s log file.\\r\\n
Check to see if file %1$s exist and is readable." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Couldn't open %1$s log file.\\r\\n
Check if file %1$s is readable." - -#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:116 -msgid "View Logs" -msgstr "View logs" - -#: src/Module/Admin/Queue.php:53 -msgid "Inspect Deferred Worker Queue" -msgstr "Inspect deferred worker queue" - -#: src/Module/Admin/Queue.php:54 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed." - -#: src/Module/Admin/Queue.php:57 -msgid "Inspect Worker Queue" -msgstr "Inspect worker queue" - -#: src/Module/Admin/Queue.php:58 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install." - -#: src/Module/Admin/Queue.php:78 -msgid "ID" -msgstr "ID" - -#: src/Module/Admin/Queue.php:79 -msgid "Job Parameters" -msgstr "Job parameters" - -#: src/Module/Admin/Queue.php:80 -msgid "Created" -msgstr "Created" - -#: src/Module/Admin/Queue.php:81 -msgid "Priority" -msgstr "Priority" - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Can not parse base URL. Must have at least ://" - -#: src/Module/Admin/Site.php:252 -msgid "Invalid storage backend setting value." -msgstr "Invalid storage backend setting." - -#: src/Module/Admin/Site.php:434 -msgid "Site settings updated." -msgstr "Site settings updated." - -#: src/Module/Admin/Site.php:455 src/Module/Settings/Display.php:130 -msgid "No special theme for mobile devices" -msgstr "No special theme for mobile devices" - -#: src/Module/Admin/Site.php:472 src/Module/Settings/Display.php:140 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: src/Module/Admin/Site.php:484 -msgid "No community page for local users" -msgstr "No community page for local users" - -#: src/Module/Admin/Site.php:485 -msgid "No community page" -msgstr "No community page" - -#: src/Module/Admin/Site.php:486 -msgid "Public postings from users of this site" -msgstr "Public postings from users of this site" - -#: src/Module/Admin/Site.php:487 -msgid "Public postings from the federated network" -msgstr "Public postings from the federated network" - -#: src/Module/Admin/Site.php:488 -msgid "Public postings from local users and the federated network" -msgstr "Public postings from local users and the federated network" - -#: src/Module/Admin/Site.php:492 src/Module/Admin/Site.php:704 -#: src/Module/Admin/Site.php:714 src/Module/Contact.php:555 -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "Disabled" -msgstr "Disabled" - -#: src/Module/Admin/Site.php:493 src/Module/Admin/Users.php:243 -#: src/Module/Admin/Users.php:260 src/Module/BaseAdmin.php:98 -msgid "Users" -msgstr "Users" - -#: src/Module/Admin/Site.php:494 -msgid "Users, Global Contacts" -msgstr "Users, Global Contacts" - -#: src/Module/Admin/Site.php:495 -msgid "Users, Global Contacts/fallback" -msgstr "Users, global contacts/fallback" - -#: src/Module/Admin/Site.php:499 -msgid "One month" -msgstr "One month" - -#: src/Module/Admin/Site.php:500 -msgid "Three months" -msgstr "Three months" - -#: src/Module/Admin/Site.php:501 -msgid "Half a year" -msgstr "Half a year" - -#: src/Module/Admin/Site.php:502 -msgid "One year" -msgstr "One a year" - -#: src/Module/Admin/Site.php:508 -msgid "Multi user instance" -msgstr "Multi user instance" - -#: src/Module/Admin/Site.php:536 -msgid "Closed" -msgstr "Closed" - -#: src/Module/Admin/Site.php:537 -msgid "Requires approval" -msgstr "Requires approval" - -#: src/Module/Admin/Site.php:538 -msgid "Open" -msgstr "Open" - -#: src/Module/Admin/Site.php:542 src/Module/Install.php:200 -msgid "No SSL policy, links will track page SSL state" -msgstr "No SSL policy, links will track page SSL state" - -#: src/Module/Admin/Site.php:543 src/Module/Install.php:201 -msgid "Force all links to use SSL" -msgstr "Force all links to use SSL" - -#: src/Module/Admin/Site.php:544 src/Module/Install.php:202 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Self-signed certificate, use SSL for local links only (discouraged)" - -#: src/Module/Admin/Site.php:548 -msgid "Don't check" -msgstr "Don't check" - -#: src/Module/Admin/Site.php:549 -msgid "check the stable version" -msgstr "check for stable version updates" - -#: src/Module/Admin/Site.php:550 -msgid "check the development version" -msgstr "check for development version updates" - -#: src/Module/Admin/Site.php:554 -msgid "none" -msgstr "" - -#: src/Module/Admin/Site.php:555 -msgid "Direct contacts" -msgstr "" - -#: src/Module/Admin/Site.php:556 -msgid "Contacts of contacts" -msgstr "" - -#: src/Module/Admin/Site.php:573 -msgid "Database (legacy)" -msgstr "Database (legacy)" - -#: src/Module/Admin/Site.php:604 src/Module/BaseAdmin.php:97 -msgid "Site" -msgstr "Site" - -#: src/Module/Admin/Site.php:606 -msgid "Republish users to directory" -msgstr "Republish users to directory" - -#: src/Module/Admin/Site.php:607 src/Module/Register.php:139 -msgid "Registration" -msgstr "Registration" - -#: src/Module/Admin/Site.php:608 -msgid "File upload" -msgstr "File upload" - -#: src/Module/Admin/Site.php:609 -msgid "Policies" -msgstr "Policies" - -#: src/Module/Admin/Site.php:611 -msgid "Auto Discovered Contact Directory" -msgstr "Auto-discovered contact directory" - -#: src/Module/Admin/Site.php:612 -msgid "Performance" -msgstr "Performance" - -#: src/Module/Admin/Site.php:613 -msgid "Worker" -msgstr "Worker" - -#: src/Module/Admin/Site.php:614 -msgid "Message Relay" -msgstr "Message relay" - -#: src/Module/Admin/Site.php:615 -msgid "Relocate Instance" -msgstr "Relocate Instance" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "" - -#: src/Module/Admin/Site.php:620 -msgid "Site name" -msgstr "Site name" - -#: src/Module/Admin/Site.php:621 -msgid "Sender Email" -msgstr "Sender email" - -#: src/Module/Admin/Site.php:621 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "The email address your server shall use to send notification emails from." - -#: src/Module/Admin/Site.php:622 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: src/Module/Admin/Site.php:623 -msgid "Email Banner/Logo" -msgstr "" - -#: src/Module/Admin/Site.php:624 -msgid "Shortcut icon" -msgstr "Shortcut icon" - -#: src/Module/Admin/Site.php:624 -msgid "Link to an icon that will be used for browsers." -msgstr "Link to an icon that will be used for browsers." - -#: src/Module/Admin/Site.php:625 -msgid "Touch icon" -msgstr "Touch icon" - -#: src/Module/Admin/Site.php:625 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link to an icon that will be used for tablets and mobiles." - -#: src/Module/Admin/Site.php:626 -msgid "Additional Info" -msgstr "Additional Info" - -#: src/Module/Admin/Site.php:626 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "For public servers: You can add additional information here that will be listed at %s/servers." - -#: src/Module/Admin/Site.php:627 -msgid "System language" -msgstr "System language" - -#: src/Module/Admin/Site.php:628 -msgid "System theme" -msgstr "System theme" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Default system theme - may be over-ridden by user profiles - Change default theme settings" - -#: src/Module/Admin/Site.php:629 -msgid "Mobile system theme" -msgstr "Mobile system theme" - -#: src/Module/Admin/Site.php:629 -msgid "Theme for mobile devices" -msgstr "Theme for mobile devices" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:210 -msgid "SSL link policy" -msgstr "SSL link policy" - -#: src/Module/Admin/Site.php:630 src/Module/Install.php:212 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determines whether generated links should be forced to use SSL" - -#: src/Module/Admin/Site.php:631 -msgid "Force SSL" -msgstr "Force SSL" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." - -#: src/Module/Admin/Site.php:632 -msgid "Hide help entry from navigation menu" -msgstr "Hide help entry from navigation menu" - -#: src/Module/Admin/Site.php:632 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL." - -#: src/Module/Admin/Site.php:633 -msgid "Single user instance" -msgstr "Single user instance" - -#: src/Module/Admin/Site.php:633 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Make this instance multi-user or single-user for the named user" - -#: src/Module/Admin/Site.php:635 -msgid "File storage backend" -msgstr "File storage backend" - -#: src/Module/Admin/Site.php:635 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you do not do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure." - -#: src/Module/Admin/Site.php:637 -msgid "Maximum image size" -msgstr "Maximum image size" - -#: src/Module/Admin/Site.php:637 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." - -#: src/Module/Admin/Site.php:638 -msgid "Maximum image length" -msgstr "Maximum image length" - -#: src/Module/Admin/Site.php:638 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." - -#: src/Module/Admin/Site.php:639 -msgid "JPEG image quality" -msgstr "JPEG image quality" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Uploaded JPEGs will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." - -#: src/Module/Admin/Site.php:641 -msgid "Register policy" -msgstr "Registration policy" - -#: src/Module/Admin/Site.php:642 -msgid "Maximum Daily Registrations" -msgstr "Maximum daily registrations" - -#: src/Module/Admin/Site.php:642 -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 "If open registration is permitted, this sets the maximum number of new registrations per day. This setting has no effect for registrations by approval." - -#: src/Module/Admin/Site.php:643 -msgid "Register text" -msgstr "Registration text" - -#: src/Module/Admin/Site.php:643 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Will be displayed prominently on the registration page. You may use BBCode here." - -#: src/Module/Admin/Site.php:644 -msgid "Forbidden Nicknames" -msgstr "Forbidden Nicknames" - -#: src/Module/Admin/Site.php:644 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142." - -#: src/Module/Admin/Site.php:645 -msgid "Accounts abandoned after x days" -msgstr "Accounts abandoned after so many days" - -#: src/Module/Admin/Site.php:645 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." - -#: src/Module/Admin/Site.php:646 -msgid "Allowed friend domains" -msgstr "Allowed friend domains" - -#: src/Module/Admin/Site.php:646 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Comma-separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" - -#: src/Module/Admin/Site.php:647 -msgid "Allowed email domains" -msgstr "Allowed email domains" - -#: src/Module/Admin/Site.php:647 -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 "Comma-separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" - -#: src/Module/Admin/Site.php:648 -msgid "No OEmbed rich content" -msgstr "No OEmbed rich content" - -#: src/Module/Admin/Site.php:648 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below." - -#: src/Module/Admin/Site.php:649 -msgid "Allowed OEmbed domains" -msgstr "Allowed OEmbed domains" - -#: src/Module/Admin/Site.php:649 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "Comma-separated list of domains from where OEmbed content is allowed. Wildcards are possible." - -#: src/Module/Admin/Site.php:650 -msgid "Block public" -msgstr "Block public" - -#: src/Module/Admin/Site.php:650 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." - -#: src/Module/Admin/Site.php:651 -msgid "Force publish" -msgstr "Mandatory directory listing" - -#: src/Module/Admin/Site.php:651 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Force all profiles on this site to be listed in the site directory." - -#: src/Module/Admin/Site.php:651 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Enabling this may violate privacy laws like the GDPR" - -#: src/Module/Admin/Site.php:652 -msgid "Global directory URL" -msgstr "Global directory URL" - -#: src/Module/Admin/Site.php:652 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." - -#: src/Module/Admin/Site.php:653 -msgid "Private posts by default for new users" -msgstr "Private posts by default for new users" - -#: src/Module/Admin/Site.php:653 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Set default post permissions for all new members to the default privacy group rather than public." - -#: src/Module/Admin/Site.php:654 -msgid "Don't include post content in email notifications" -msgstr "Don't include post content in email notifications" - -#: src/Module/Admin/Site.php:654 -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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." - -#: src/Module/Admin/Site.php:655 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disallow public access to addons listed in the apps menu." - -#: src/Module/Admin/Site.php:655 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Checking this box will restrict addons listed in the apps menu to members only." - -#: src/Module/Admin/Site.php:656 -msgid "Don't embed private images in posts" -msgstr "Don't embed private images in posts" - -#: src/Module/Admin/Site.php:656 -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 "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." - -#: src/Module/Admin/Site.php:657 -msgid "Explicit Content" -msgstr "Explicit Content" - -#: src/Module/Admin/Site.php:657 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page." - -#: src/Module/Admin/Site.php:658 -msgid "Allow Users to set remote_self" -msgstr "Allow users to set \"Remote self\"" - -#: src/Module/Admin/Site.php:658 -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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." - -#: src/Module/Admin/Site.php:659 -msgid "Block multiple registrations" -msgstr "Block multiple registrations" - -#: src/Module/Admin/Site.php:659 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Disallow users to sign up for additional accounts." - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID" -msgstr "Disable OpenID" - -#: src/Module/Admin/Site.php:660 -msgid "Disable OpenID support for registration and logins." -msgstr "Disable OpenID support for registration and logins." - -#: src/Module/Admin/Site.php:661 -msgid "No Fullname check" -msgstr "No full name check" - -#: src/Module/Admin/Site.php:661 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Allow users to register without a space between the first name and the last name in their full name." - -#: src/Module/Admin/Site.php:662 -msgid "Community pages for visitors" -msgstr "Community pages for visitors" - -#: src/Module/Admin/Site.php:662 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Which community pages should be available for visitors. Local users always see both pages." - -#: src/Module/Admin/Site.php:663 -msgid "Posts per user on community page" -msgstr "Posts per user on community page" - -#: src/Module/Admin/Site.php:663 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "The maximum number of posts per user on the community page. (Not valid for \"Global Community\")" - -#: src/Module/Admin/Site.php:664 -msgid "Disable OStatus support" -msgstr "Disable OStatus support" - -#: src/Module/Admin/Site.php:664 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed." - -#: src/Module/Admin/Site.php:665 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus support can only be enabled if threading is enabled." - -#: src/Module/Admin/Site.php:667 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "diaspora* support can't be enabled because Friendica was installed into a sub directory." - -#: src/Module/Admin/Site.php:668 -msgid "Enable Diaspora support" -msgstr "Enable diaspora* support" - -#: src/Module/Admin/Site.php:668 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Provide built-in diaspora* network compatibility." - -#: src/Module/Admin/Site.php:669 -msgid "Only allow Friendica contacts" -msgstr "Only allow Friendica contacts" - -#: src/Module/Admin/Site.php:669 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled." - -#: src/Module/Admin/Site.php:670 -msgid "Verify SSL" -msgstr "Verify SSL" - -#: src/Module/Admin/Site.php:670 -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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." - -#: src/Module/Admin/Site.php:671 -msgid "Proxy user" -msgstr "Proxy user" - -#: src/Module/Admin/Site.php:672 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: src/Module/Admin/Site.php:673 -msgid "Network timeout" -msgstr "Network timeout" - -#: src/Module/Admin/Site.php:673 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." - -#: src/Module/Admin/Site.php:674 -msgid "Maximum Load Average" -msgstr "Maximum load average" - -#: src/Module/Admin/Site.php:674 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "Maximum system load before delivery and poll processes are deferred - default %d." - -#: src/Module/Admin/Site.php:675 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum load average (frontend)" - -#: src/Module/Admin/Site.php:675 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximum system load before the frontend quits service (default 50)." - -#: src/Module/Admin/Site.php:676 -msgid "Minimal Memory" -msgstr "Minimal memory" - -#: src/Module/Admin/Site.php:676 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)." - -#: src/Module/Admin/Site.php:677 -msgid "Maximum table size for optimization" -msgstr "Maximum table size for optimization" - -#: src/Module/Admin/Site.php:677 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "Maximum table size (in MB) for automatic optimization. Enter -1 to disable it." - -#: src/Module/Admin/Site.php:678 -msgid "Minimum level of fragmentation" -msgstr "Minimum level of fragmentation" - -#: src/Module/Admin/Site.php:678 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)." - -#: src/Module/Admin/Site.php:680 -msgid "Periodical check of global contacts" -msgstr "Periodical check of global contacts" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers." - -#: src/Module/Admin/Site.php:681 -msgid "Discover followers/followings from global contacts" -msgstr "" - -#: src/Module/Admin/Site.php:681 -msgid "" -"If enabled, the global contacts are checked for new contacts among their " -"followers and following contacts. This option will create huge masses of " -"jobs, so it should only be activated on powerful machines." -msgstr "" - -#: src/Module/Admin/Site.php:682 -msgid "Days between requery" -msgstr "Days between enquiry" - -#: src/Module/Admin/Site.php:682 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Number of days after which a server is rechecked for contacts." - -#: src/Module/Admin/Site.php:683 -msgid "Discover contacts from other servers" -msgstr "Discover contacts from other servers" - -#: src/Module/Admin/Site.php:683 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"\"Users\": the users on the remote system, \"Global Contacts\": active " -"contacts that are known on the system. The fallback is meant for Redmatrix " -"servers and older friendica servers, where global contacts weren't " -"available. The fallback increases the server load, so the recommended " -"setting is \"Users, Global Contacts\"." -msgstr "Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"." - -#: src/Module/Admin/Site.php:684 -msgid "Timeframe for fetching global contacts" -msgstr "Time-frame for fetching global contacts" - -#: src/Module/Admin/Site.php:684 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers." - -#: src/Module/Admin/Site.php:685 -msgid "Search the local directory" -msgstr "Search the local directory" - -#: src/Module/Admin/Site.php:685 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated." - -#: src/Module/Admin/Site.php:687 -msgid "Publish server information" -msgstr "Publish server information" - -#: src/Module/Admin/Site.php:687 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." - -#: src/Module/Admin/Site.php:689 -msgid "Check upstream version" -msgstr "Check upstream version" - -#: src/Module/Admin/Site.php:689 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview." - -#: src/Module/Admin/Site.php:690 -msgid "Suppress Tags" -msgstr "Suppress tags" - -#: src/Module/Admin/Site.php:690 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Suppress listed hashtags at the end of posts." - -#: src/Module/Admin/Site.php:691 -msgid "Clean database" -msgstr "Clean database" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Remove old remote items, orphaned database records, and old content from some other helper tables." - -#: src/Module/Admin/Site.php:692 -msgid "Lifespan of remote items" -msgstr "Lifespan of remote items" - -#: src/Module/Admin/Site.php:692 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "If the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items, are always kept. 0 disables this behavior." - -#: src/Module/Admin/Site.php:693 -msgid "Lifespan of unclaimed items" -msgstr "Lifespan of unclaimed items" - -#: src/Module/Admin/Site.php:693 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "If the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0." - -#: src/Module/Admin/Site.php:694 -msgid "Lifespan of raw conversation data" -msgstr "Lifespan of raw conversation data" - -#: src/Module/Admin/Site.php:694 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days." - -#: src/Module/Admin/Site.php:695 -msgid "Path to item cache" -msgstr "Path to item cache" - -#: src/Module/Admin/Site.php:695 -msgid "The item caches buffers generated bbcode and external images." -msgstr "The item cache retains expanded bbcode and external images." - -#: src/Module/Admin/Site.php:696 -msgid "Cache duration in seconds" -msgstr "Cache duration in seconds" - -#: src/Module/Admin/Site.php:696 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)" - -#: src/Module/Admin/Site.php:697 -msgid "Maximum numbers of comments per post" -msgstr "Maximum number of comments per post" - -#: src/Module/Admin/Site.php:697 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "How many comments should be shown for each post? (Default 100)" - -#: src/Module/Admin/Site.php:698 -msgid "Temp path" -msgstr "Temp path" - -#: src/Module/Admin/Site.php:698 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Enter a different temp path if your system restricts the webserver's access to the system temp path." - -#: src/Module/Admin/Site.php:699 -msgid "Disable picture proxy" -msgstr "Disable picture proxy" - -#: src/Module/Admin/Site.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth." - -#: src/Module/Admin/Site.php:700 -msgid "Only search in tags" -msgstr "Only search in tags" - -#: src/Module/Admin/Site.php:700 -msgid "On large systems the text search can slow down the system extremely." -msgstr "On large systems, the text search can slow down the system significantly." - -#: src/Module/Admin/Site.php:702 -msgid "New base url" -msgstr "New base URL" - -#: src/Module/Admin/Site.php:702 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Change base URL for this server. Sends a relocate message to all Friendica and diaspora* contacts, for all users." - -#: src/Module/Admin/Site.php:704 -msgid "RINO Encryption" -msgstr "RINO Encryption" - -#: src/Module/Admin/Site.php:704 -msgid "Encryption layer between nodes." -msgstr "Encryption layer between nodes." - -#: src/Module/Admin/Site.php:704 -msgid "Enabled" -msgstr "Enabled" - -#: src/Module/Admin/Site.php:706 -msgid "Maximum number of parallel workers" -msgstr "Maximum number of parallel workers" - -#: src/Module/Admin/Site.php:706 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d." - -#: src/Module/Admin/Site.php:707 -msgid "Don't use \"proc_open\" with the worker" -msgstr "Don't use \"proc_open\" with the worker" - -#: src/Module/Admin/Site.php:707 -msgid "" -"Enable this if your system doesn't allow the use of \"proc_open\". This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab." - -#: src/Module/Admin/Site.php:708 -msgid "Enable fastlane" -msgstr "Enable fast-lane" - -#: src/Module/Admin/Site.php:708 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." - -#: src/Module/Admin/Site.php:709 -msgid "Enable frontend worker" -msgstr "Enable frontend worker" - -#: src/Module/Admin/Site.php:709 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call %s/worker on a regular basis via an external cron job. You should " -"only enable this option if you cannot utilize cron/scheduled jobs on your " -"server." -msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server." - -#: src/Module/Admin/Site.php:711 -msgid "Subscribe to relay" -msgstr "Subscribe to relay" - -#: src/Module/Admin/Site.php:711 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "Receive public posts from the specified relay. Post will be included in searches, subscribed tags, and on the global community page." - -#: src/Module/Admin/Site.php:712 -msgid "Relay server" -msgstr "Relay server" - -#: src/Module/Admin/Site.php:712 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "Address of the relay server where public posts should be sent. For example https://relay.diasp.org" - -#: src/Module/Admin/Site.php:713 -msgid "Direct relay transfer" -msgstr "Direct relay transfer" - -#: src/Module/Admin/Site.php:713 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Enables direct transfer to other servers without using a relay server." - -#: src/Module/Admin/Site.php:714 -msgid "Relay scope" -msgstr "Relay scope" - -#: src/Module/Admin/Site.php:714 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -msgstr "Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received." - -#: src/Module/Admin/Site.php:714 -msgid "all" -msgstr "all" - -#: src/Module/Admin/Site.php:714 -msgid "tags" -msgstr "tags" - -#: src/Module/Admin/Site.php:715 -msgid "Server tags" -msgstr "Server tags" - -#: src/Module/Admin/Site.php:715 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Comma separated list of tags for the \"tags\" subscription." - -#: src/Module/Admin/Site.php:716 -msgid "Allow user tags" -msgstr "Allow user tags" - -#: src/Module/Admin/Site.php:716 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"." - -#: src/Module/Admin/Site.php:719 -msgid "Start Relocation" -msgstr "Start relocation" - -#: src/Module/Admin/Summary.php:50 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB-only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" - -#: src/Module/Admin/Summary.php:55 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "" - -#: src/Module/Admin/Summary.php:63 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s" - -#: src/Module/Admin/Summary.php:72 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear." - -#: src/Module/Admin/Summary.php:76 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear in the console and logfile output." - -#: src/Module/Admin/Summary.php:81 -msgid "The worker was never executed. Please check your database structure!" -msgstr "The worker process has never been executed. Please check your database structure!" - -#: src/Module/Admin/Summary.php:83 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings." - -#: src/Module/Admin/Summary.php:88 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "Friendica's configuration is now stored in config/local.config.php; please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition..htconfig.php. See the Config help page for help with the transition." - -#: src/Module/Admin/Summary.php:92 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "Friendica's configuration is now stored in config/local.config.php; please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition." - -#: src/Module/Admin/Summary.php:98 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help." - -#: src/Module/Admin/Summary.php:116 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')" - -#: src/Module/Admin/Summary.php:131 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')" - -#: src/Module/Admin/Summary.php:147 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "The system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." - -#: src/Module/Admin/Summary.php:155 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "The current system.basepath '%s' is wrong and the config file '%s' isn't used." - -#: src/Module/Admin/Summary.php:163 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "The current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." - -#: src/Module/Admin/Summary.php:170 -msgid "Normal Account" -msgstr "Standard account" - -#: src/Module/Admin/Summary.php:171 -msgid "Automatic Follower Account" -msgstr "Automatic follower account" - -#: src/Module/Admin/Summary.php:172 -msgid "Public Forum Account" -msgstr "Public forum account" - -#: src/Module/Admin/Summary.php:173 -msgid "Automatic Friend Account" -msgstr "Automatic friend account" - -#: src/Module/Admin/Summary.php:174 -msgid "Blog Account" -msgstr "Blog account" - -#: src/Module/Admin/Summary.php:175 -msgid "Private Forum Account" -msgstr "Private forum account" - -#: src/Module/Admin/Summary.php:195 -msgid "Message queues" -msgstr "Message queues" - -#: src/Module/Admin/Summary.php:201 -msgid "Server Settings" -msgstr "Server Settings" - -#: src/Module/Admin/Summary.php:215 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Summary" - -#: src/Module/Admin/Summary.php:217 -msgid "Registered users" -msgstr "Signed up users" - -#: src/Module/Admin/Summary.php:219 -msgid "Pending registrations" -msgstr "Pending registrations" - -#: src/Module/Admin/Summary.php:220 -msgid "Version" -msgstr "Version" - -#: src/Module/Admin/Summary.php:224 -msgid "Active addons" -msgstr "Active addons" - -#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Embed.php:65 -msgid "Theme settings updated." -msgstr "Theme settings updated." - -#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "Theme %s disabled." - -#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "Theme %s successfully enabled." - -#: src/Module/Admin/Themes/Details.php:94 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "Theme %s failed to install." - -#: src/Module/Admin/Themes/Details.php:116 -msgid "Screenshot" -msgstr "Screenshot" - -#: src/Module/Admin/Themes/Details.php:124 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100 -msgid "Themes" -msgstr "Theme selection" - -#: src/Module/Admin/Themes/Embed.php:86 -msgid "Unknown theme." -msgstr "Unknown theme." - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Reload active themes" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "No themes found on the system. They should be placed in %1$s" - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Unsupported]" - -#: src/Module/Admin/Tos.php:48 -msgid "The Terms of Service settings have been updated." -msgstr "The Terms of Service settings have been updated." - -#: src/Module/Admin/Tos.php:62 -msgid "Display Terms of Service" -msgstr "Display Terms of Service" - -#: src/Module/Admin/Tos.php:62 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Enable the Terms of Service page. If this is enabled, a link to the terms will be added to the registration form and to the general information page." - -#: src/Module/Admin/Tos.php:63 -msgid "Display Privacy Statement" -msgstr "Display Privacy Statement" - -#: src/Module/Admin/Tos.php:63 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: src/Module/Admin/Tos.php:64 -msgid "Privacy Statement Preview" -msgstr "Privacy Statement Preview" - -#: src/Module/Admin/Tos.php:66 -msgid "The Terms of Service" -msgstr "Terms of Service" - -#: src/Module/Admin/Tos.php:66 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or less." - -#: src/Module/Admin/Users.php:61 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s user blocked" -msgstr[1] "%s users blocked" - -#: src/Module/Admin/Users.php:68 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s user unblocked" -msgstr[1] "%s users unblocked" - -#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 -msgid "You can't remove yourself" -msgstr "You can't remove yourself" - -#: src/Module/Admin/Users.php:80 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s user deleted" -msgstr[1] "%s users deleted" - -#: src/Module/Admin/Users.php:87 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:94 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Admin/Users.php:124 -#, php-format -msgid "User \"%s\" deleted" -msgstr "User \"%s\" deleted" - -#: src/Module/Admin/Users.php:132 -#, php-format -msgid "User \"%s\" blocked" -msgstr "User \"%s\" blocked" - -#: src/Module/Admin/Users.php:137 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "User \"%s\" unblocked" - -#: src/Module/Admin/Users.php:142 -msgid "Account approved." -msgstr "Account approved." - -#: src/Module/Admin/Users.php:147 -msgid "Registration revoked" -msgstr "" - -#: src/Module/Admin/Users.php:191 -msgid "Private Forum" -msgstr "Private Forum" - -#: src/Module/Admin/Users.php:198 -msgid "Relay" -msgstr "Relay" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Register date" -msgstr "Registration date" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last login" -msgstr "Last login" - -#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 -msgid "Last public item" -msgstr "" - -#: src/Module/Admin/Users.php:237 -msgid "Type" -msgstr "Type" - -#: src/Module/Admin/Users.php:244 -msgid "Add User" -msgstr "Add user" - -#: src/Module/Admin/Users.php:246 -msgid "User registrations waiting for confirm" -msgstr "User registrations awaiting confirmation" - -#: src/Module/Admin/Users.php:247 -msgid "User waiting for permanent deletion" -msgstr "User awaiting permanent deletion" - -#: src/Module/Admin/Users.php:248 -msgid "Request date" -msgstr "Request date" - -#: src/Module/Admin/Users.php:249 -msgid "No registrations." -msgstr "No registrations." - -#: src/Module/Admin/Users.php:250 -msgid "Note from the user" -msgstr "Note from the user" - -#: src/Module/Admin/Users.php:252 -msgid "Deny" -msgstr "Deny" - -#: src/Module/Admin/Users.php:255 -msgid "User blocked" -msgstr "User blocked" - -#: src/Module/Admin/Users.php:257 -msgid "Site admin" -msgstr "Site admin" - -#: src/Module/Admin/Users.php:258 -msgid "Account expired" -msgstr "Account expired" - -#: src/Module/Admin/Users.php:261 -msgid "New User" -msgstr "New user" - -#: src/Module/Admin/Users.php:262 -msgid "Permanent deletion" -msgstr "Permanent deletion" - -#: src/Module/Admin/Users.php:267 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: src/Module/Admin/Users.php:268 -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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" - -#: src/Module/Admin/Users.php:278 -msgid "Name of the new user." -msgstr "Name of the new user." - -#: src/Module/Admin/Users.php:279 -msgid "Nickname" -msgstr "Nickname" - -#: src/Module/Admin/Users.php:279 -msgid "Nickname of the new user." -msgstr "Nickname of the new user." - -#: src/Module/Admin/Users.php:280 -msgid "Email address of the new user." -msgstr "Email address of the new user." - -#: src/Module/AllFriends.php:74 -msgid "No friends to display." -msgstr "No friends to display." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "No installed applications." - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Applications" - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Item was not found." - -#: src/Module/BaseAdmin.php:79 -msgid "" -"Submanaged account can't access the administation pages. Please log back in " -"as the master account." -msgstr "A managed account cannot access the administration pages. Please log in as administrator." - -#: src/Module/BaseAdmin.php:93 -msgid "Overview" -msgstr "Overview" - -#: src/Module/BaseAdmin.php:96 -msgid "Configuration" -msgstr "Configuration" - -#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "Additional features" - -#: src/Module/BaseAdmin.php:104 -msgid "Database" -msgstr "Database" - -#: src/Module/BaseAdmin.php:105 -msgid "DB updates" -msgstr "DB updates" - -#: src/Module/BaseAdmin.php:106 -msgid "Inspect Deferred Workers" -msgstr "Inspect deferred workers" - -#: src/Module/BaseAdmin.php:107 -msgid "Inspect worker Queue" -msgstr "Inspect worker queue" - -#: src/Module/BaseAdmin.php:109 -msgid "Tools" -msgstr "Tools" - -#: src/Module/BaseAdmin.php:110 -msgid "Contact Blocklist" -msgstr "Contact block-list" - -#: src/Module/BaseAdmin.php:111 -msgid "Server Blocklist" -msgstr "Server block-list" - -#: src/Module/BaseAdmin.php:118 -msgid "Diagnostics" -msgstr "Diagnostics" - -#: src/Module/BaseAdmin.php:119 -msgid "PHP Info" -msgstr "PHP info" - -#: src/Module/BaseAdmin.php:120 -msgid "probe address" -msgstr "Probe address" - -#: src/Module/BaseAdmin.php:121 -msgid "check webfinger" -msgstr "check WebFinger" - -#: src/Module/BaseAdmin.php:122 -msgid "Item Source" -msgstr "Item source" - -#: src/Module/BaseAdmin.php:123 -msgid "Babel" -msgstr "Babel" - -#: src/Module/BaseAdmin.php:132 -msgid "Addon Features" -msgstr "Addon features" - -#: src/Module/BaseAdmin.php:133 -msgid "User registrations waiting for confirmation" -msgstr "User registrations awaiting confirmation" - -#: src/Module/BaseProfile.php:55 src/Module/Contact.php:900 -msgid "Profile Details" -msgstr "Profile Details" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Only you can see this." - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Tips for New Members" - -#: src/Module/BaseSearch.php:71 -#, php-format -msgid "People Search - %s" -msgstr "People search - %s" - -#: src/Module/BaseSearch.php:81 -#, php-format -msgid "Forum Search - %s" -msgstr "Forum search - %s" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Account" - -#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:80 +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 #: src/Module/Settings/TwoFactor/Index.php:105 msgid "Two-factor authentication" msgstr "Two-factor authentication" -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Display" +#: src/Module/Security/TwoFactor/Verify.php:81 +msgid "" +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

" -#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:170 -msgid "Manage Accounts" +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Don’t have your phone? Enter a two-factor recovery code" + +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Please enter a code from your authentication app" + +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "Verify code and complete login" + +#: src/Module/Security/TwoFactor/Recovery.php:60 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Remaining recovery codes: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Two-factor recovery" + +#: src/Module/Security/TwoFactor/Recovery.php:84 +msgid "" +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" +msgstr "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

" + +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Please enter a recovery code" + +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Submit recovery code and complete login" + +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Create a new account" + +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Sign up now >>" + +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "Your OpenID: " + +#: src/Module/Security/Login.php:129 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Please enter your username and password to add the OpenID to your existing account." + +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "Or login with OpenID: " + +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Logout" + +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Login" + +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Password: " + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Remember me" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Website Terms of Service" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "Terms of service" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Website Privacy Policy" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "Privacy policy" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Connected apps" - -#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 -msgid "Export personal data" -msgstr "Export personal data" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Remove account" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "This page is missing a URL parameter." - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "The post was created" - -#: src/Module/Contact/Advanced.php:94 -msgid "Contact settings applied." -msgstr "Contact settings applied." - -#: src/Module/Contact/Advanced.php:96 -msgid "Contact update failed." -msgstr "Contact update failed." - -#: src/Module/Contact/Advanced.php:113 +#: src/Module/Security/OpenID.php:92 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "Warning: These are highly advanced settings. If you enter incorrect information, your communications with this contact might be disrupted." +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "Account not found. Please login to your existing account to add the OpenID to it." -#: src/Module/Contact/Advanced.php:114 +#: src/Module/Security/OpenID.php:94 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "No mirroring" -msgstr "No mirroring" - -#: src/Module/Contact/Advanced.php:125 -msgid "Mirror as forwarded posting" -msgstr "Mirror as forwarded posting" - -#: src/Module/Contact/Advanced.php:125 src/Module/Contact/Advanced.php:127 -msgid "Mirror as my own posting" -msgstr "Mirror as my own posting" - -#: src/Module/Contact/Advanced.php:138 -msgid "Return to contact editor" -msgstr "Return to contact editor" - -#: src/Module/Contact/Advanced.php:140 -msgid "Refetch contact data" -msgstr "Re-fetch contact data." - -#: src/Module/Contact/Advanced.php:143 -msgid "Remote Self" -msgstr "Remote self" - -#: src/Module/Contact/Advanced.php:146 -msgid "Mirror postings from this contact" -msgstr "Mirror postings from this contact:" - -#: src/Module/Contact/Advanced.php:148 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "This will cause Friendica to repost new entries from this contact." - -#: src/Module/Contact/Advanced.php:153 -msgid "Account Nickname" -msgstr "Account nickname:" - -#: src/Module/Contact/Advanced.php:154 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tag name - overrides name/nickname:" - -#: src/Module/Contact/Advanced.php:155 -msgid "Account URL" -msgstr "Account URL:" - -#: src/Module/Contact/Advanced.php:156 -msgid "Account URL Alias" -msgstr "Account URL alias" - -#: src/Module/Contact/Advanced.php:157 -msgid "Friend Request URL" -msgstr "Friend request URL:" - -#: src/Module/Contact/Advanced.php:158 -msgid "Friend Confirm URL" -msgstr "Friend confirm URL:" - -#: src/Module/Contact/Advanced.php:159 -msgid "Notification Endpoint URL" -msgstr "Notification endpoint URL" - -#: src/Module/Contact/Advanced.php:160 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL:" - -#: src/Module/Contact/Advanced.php:161 -msgid "New photo from this URL" -msgstr "New photo from this URL:" - -#: src/Module/Contact.php:88 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contact edited." -msgstr[1] "%d contacts edited." - -#: src/Module/Contact.php:115 -msgid "Could not access contact record." -msgstr "Could not access contact record." - -#: src/Module/Contact.php:148 -msgid "Contact updated." -msgstr "Contact updated." - -#: src/Module/Contact.php:385 -msgid "Contact not found" -msgstr "Contact not found" - -#: src/Module/Contact.php:404 -msgid "Contact has been blocked" -msgstr "Contact has been blocked" - -#: src/Module/Contact.php:404 -msgid "Contact has been unblocked" -msgstr "Contact has been unblocked" - -#: src/Module/Contact.php:414 -msgid "Contact has been ignored" -msgstr "Contact has been ignored" - -#: src/Module/Contact.php:414 -msgid "Contact has been unignored" -msgstr "Contact has been unignored" - -#: src/Module/Contact.php:424 -msgid "Contact has been archived" -msgstr "Contact has been archived" - -#: src/Module/Contact.php:424 -msgid "Contact has been unarchived" -msgstr "Contact has been unarchived" - -#: src/Module/Contact.php:448 -msgid "Drop contact" -msgstr "Drop contact" - -#: src/Module/Contact.php:451 src/Module/Contact.php:848 -msgid "Do you really want to delete this contact?" -msgstr "Do you really want to delete this contact?" - -#: src/Module/Contact.php:465 -msgid "Contact has been removed." -msgstr "Contact has been removed." - -#: src/Module/Contact.php:495 -#, php-format -msgid "You are mutual friends with %s" -msgstr "You are mutual friends with %s" - -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "You are sharing with %s" - -#: src/Module/Contact.php:505 -#, php-format -msgid "%s is sharing with you" -msgstr "%s is sharing with you" - -#: src/Module/Contact.php:529 -msgid "Private communications are not available for this contact." -msgstr "Private communications are not available for this contact." - -#: src/Module/Contact.php:531 -msgid "Never" -msgstr "Never" - -#: src/Module/Contact.php:534 -msgid "(Update was successful)" -msgstr "(Update was successful)" - -#: src/Module/Contact.php:534 -msgid "(Update was not successful)" -msgstr "(Update was not successful)" - -#: src/Module/Contact.php:536 src/Module/Contact.php:1092 -msgid "Suggest friends" -msgstr "Suggest friends" - -#: src/Module/Contact.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Network type: %s" - -#: src/Module/Contact.php:545 -msgid "Communications lost with this contact!" -msgstr "Communications lost with this contact!" - -#: src/Module/Contact.php:551 -msgid "Fetch further information for feeds" -msgstr "Fetch further information for feeds" - -#: src/Module/Contact.php:553 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Fetch information like preview pictures, title, and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags." - -#: src/Module/Contact.php:556 -msgid "Fetch information" -msgstr "Fetch information" - -#: src/Module/Contact.php:557 -msgid "Fetch keywords" -msgstr "Fetch keywords" - -#: src/Module/Contact.php:558 -msgid "Fetch information and keywords" -msgstr "Fetch information and keywords" - -#: src/Module/Contact.php:572 -msgid "Contact Information / Notes" -msgstr "Personal note" - -#: src/Module/Contact.php:573 -msgid "Contact Settings" -msgstr "Notification and privacy " - -#: src/Module/Contact.php:581 -msgid "Contact" -msgstr "Contact" - -#: src/Module/Contact.php:585 -msgid "Their personal note" -msgstr "Their personal note" - -#: src/Module/Contact.php:587 -msgid "Edit contact notes" -msgstr "Edit contact notes" - -#: src/Module/Contact.php:590 src/Module/Contact.php:1058 -#: src/Module/Profile/Contacts.php:110 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visit %s's profile [%s]" - -#: src/Module/Contact.php:591 -msgid "Block/Unblock contact" -msgstr "Block/Unblock contact" - -#: src/Module/Contact.php:592 -msgid "Ignore contact" -msgstr "Ignore contact" - -#: src/Module/Contact.php:593 -msgid "View conversations" -msgstr "View conversations" - -#: src/Module/Contact.php:598 -msgid "Last update:" -msgstr "Last update:" - -#: src/Module/Contact.php:600 -msgid "Update public posts" -msgstr "Update public posts" - -#: src/Module/Contact.php:602 src/Module/Contact.php:1102 -msgid "Update now" -msgstr "Update now" - -#: src/Module/Contact.php:605 src/Module/Contact.php:853 -#: src/Module/Contact.php:1119 -msgid "Unignore" -msgstr "Unignore" - -#: src/Module/Contact.php:609 -msgid "Currently blocked" -msgstr "Currently blocked" - -#: src/Module/Contact.php:610 -msgid "Currently ignored" -msgstr "Currently ignored" - -#: src/Module/Contact.php:611 -msgid "Currently archived" -msgstr "Currently archived" - -#: src/Module/Contact.php:612 -msgid "Awaiting connection acknowledge" -msgstr "Awaiting connection acknowledgement" - -#: src/Module/Contact.php:613 src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 -msgid "Hide this contact from others" -msgstr "Hide this contact from others" - -#: src/Module/Contact.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Replies/Likes to your public posts may still be visible" - -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "Notification for new posts" - -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Send notification for every new post from this contact" - -#: src/Module/Contact.php:616 -msgid "Blacklisted keywords" -msgstr "Blacklisted keywords" - -#: src/Module/Contact.php:616 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" - -#: src/Module/Contact.php:633 src/Module/Settings/TwoFactor/Index.php:127 -msgid "Actions" -msgstr "Actions" - -#: src/Module/Contact.php:763 -msgid "Show all contacts" -msgstr "Show all contacts" - -#: src/Module/Contact.php:768 src/Module/Contact.php:828 -msgid "Pending" -msgstr "Pending" - -#: src/Module/Contact.php:771 -msgid "Only show pending contacts" -msgstr "Only show pending contacts." - -#: src/Module/Contact.php:776 src/Module/Contact.php:829 -msgid "Blocked" -msgstr "Blocked" - -#: src/Module/Contact.php:779 -msgid "Only show blocked contacts" -msgstr "Only show blocked contacts" - -#: src/Module/Contact.php:784 src/Module/Contact.php:831 -msgid "Ignored" -msgstr "Ignored" - -#: src/Module/Contact.php:787 -msgid "Only show ignored contacts" -msgstr "Only show ignored contacts" - -#: src/Module/Contact.php:792 src/Module/Contact.php:832 -msgid "Archived" -msgstr "Archived" - -#: src/Module/Contact.php:795 -msgid "Only show archived contacts" -msgstr "Only show archived contacts" - -#: src/Module/Contact.php:800 src/Module/Contact.php:830 -msgid "Hidden" -msgstr "Hidden" - -#: src/Module/Contact.php:803 -msgid "Only show hidden contacts" -msgstr "Only show hidden contacts" - -#: src/Module/Contact.php:811 -msgid "Organize your contact groups" -msgstr "Organize your contact groups" - -#: src/Module/Contact.php:843 -msgid "Search your contacts" -msgstr "Search your contacts" - -#: src/Module/Contact.php:844 src/Module/Search/Index.php:202 -#, php-format -msgid "Results for: %s" -msgstr "Results for: %s" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Archive" -msgstr "Archive" - -#: src/Module/Contact.php:854 src/Module/Contact.php:1128 -msgid "Unarchive" -msgstr "Unarchive" - -#: src/Module/Contact.php:857 -msgid "Batch Actions" -msgstr "Batch actions" - -#: src/Module/Contact.php:884 -msgid "Conversations started by this contact" -msgstr "Conversations started by this contact" - -#: src/Module/Contact.php:889 -msgid "Posts and Comments" -msgstr "Posts and Comments" - -#: src/Module/Contact.php:912 -msgid "View all contacts" -msgstr "View all contacts" - -#: src/Module/Contact.php:923 -msgid "View all common friends" -msgstr "View all common friends" - -#: src/Module/Contact.php:933 -msgid "Advanced Contact Settings" -msgstr "Advanced contact settings" - -#: src/Module/Contact.php:1016 -msgid "Mutual Friendship" -msgstr "Mutual friendship" - -#: src/Module/Contact.php:1021 -msgid "is a fan of yours" -msgstr "is a fan of yours" - -#: src/Module/Contact.php:1026 -msgid "you are a fan of" -msgstr "I follow them" - -#: src/Module/Contact.php:1044 -msgid "Pending outgoing contact request" -msgstr "Pending outgoing contact request." - -#: src/Module/Contact.php:1046 -msgid "Pending incoming contact request" -msgstr "Pending incoming contact request." - -#: src/Module/Contact.php:1059 -msgid "Edit contact" -msgstr "Edit contact" - -#: src/Module/Contact.php:1113 -msgid "Toggle Blocked status" -msgstr "Toggle blocked status" - -#: src/Module/Contact.php:1121 -msgid "Toggle Ignored status" -msgstr "Toggle ignored status" - -#: src/Module/Contact.php:1130 -msgid "Toggle Archive status" -msgstr "Toggle archive status" - -#: src/Module/Contact.php:1138 -msgid "Delete contact" -msgstr "Delete contact" - -#: src/Module/Conversation/Community.php:56 -msgid "Local Community" -msgstr "Local community" - -#: src/Module/Conversation/Community.php:59 -msgid "Posts from local users on this server" -msgstr "Posts from local users on this server" - -#: src/Module/Conversation/Community.php:67 -msgid "Global Community" -msgstr "Global community" - -#: src/Module/Conversation/Community.php:70 -msgid "Posts from users of the whole federated network" -msgstr "Posts from users of the whole federated network" - -#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:195 -msgid "No results." -msgstr "No results." - -#: src/Module/Conversation/Community.php:125 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users." - -#: src/Module/Conversation/Community.php:178 -msgid "Community option not available." -msgstr "Community option not available." - -#: src/Module/Conversation/Community.php:194 -msgid "Not available." -msgstr "Not available." - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Credits" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!" - -#: src/Module/Debug/Babel.php:49 -msgid "Source input" -msgstr "Source input" - -#: src/Module/Debug/Babel.php:55 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:61 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:66 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:72 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:78 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:84 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "" - -#: src/Module/Debug/Babel.php:88 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:94 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:100 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:111 -msgid "Item Body" -msgstr "Item body" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Tags" -msgstr "Item tags" - -#: src/Module/Debug/Babel.php:122 -msgid "Source input (Diaspora format)" -msgstr "Source input (diaspora* format)" - -#: src/Module/Debug/Babel.php:133 -msgid "Source input (Markdown)" -msgstr "" - -#: src/Module/Debug/Babel.php:139 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:144 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:150 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:157 -msgid "Raw HTML input" -msgstr "Raw HTML input" - -#: src/Module/Debug/Babel.php:162 -msgid "HTML Input" -msgstr "HTML input" - -#: src/Module/Debug/Babel.php:168 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:174 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" - -#: src/Module/Debug/Babel.php:185 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "HTML::toBBCode => BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:197 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:203 -msgid "HTML::toPlaintext (compact)" -msgstr "HTML::toPlaintext (compact)" - -#: src/Module/Debug/Babel.php:211 -msgid "Source text" -msgstr "Source text" - -#: src/Module/Debug/Babel.php:212 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:214 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:215 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38 -#: src/Module/Settings/Profile/Index.php:164 -msgid "You must be logged in to use this module" -msgstr "You must be logged in to use this module" - -#: src/Module/Debug/Feed.php:65 -msgid "Source URL" -msgstr "Source URL" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "Account not found. Please register a new account or login to your existing account to add the OpenID." + +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" #: src/Module/Debug/Localtime.php:49 msgid "Time Conversion" @@ -7874,94 +4766,549 @@ msgstr "Converted local time: %s" msgid "Please select your timezone:" msgstr "Please select your time zone:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "Source input" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "BBCode::convert" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::convert" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "Item body" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "Item tags" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "Source input (diaspora* format)" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "Markdown::convert" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "Raw HTML input" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "HTML input" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "HTML::toBBCode => BBCode::convert" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "HTML::toBBCode => BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "HTML::toMarkdown" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "HTML::toPlaintext (compact)" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "Source text" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "BBCode" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "diaspora*" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 msgid "Only logged in users are permitted to perform a probing." msgstr "Only logged in users are permitted to use the Probe feature." +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "You must be logged in to use this module" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "Source URL" + #: src/Module/Debug/Probe.php:54 msgid "Lookup address" msgstr "Lookup address" -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "Manage Identities and Pages" - -#: src/Module/Delegation.php:148 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Accounts that I manage or own." - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "Select identity:" - -#: src/Module/Directory.php:78 -msgid "No entries (some entries may be hidden)." -msgstr "No entries (entries may be hidden)." - -#: src/Module/Directory.php:97 -msgid "Find on this site" -msgstr "Find on this site" - -#: src/Module/Directory.php:99 -msgid "Results for:" -msgstr "Results for:" - -#: src/Module/Directory.php:101 -msgid "Site Directory" -msgstr "Site directory" - -#: src/Module/Filer/SaveTag.php:57 +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 #, php-format -msgid "Filetag %s saved to item" -msgstr "File-tag %s saved to item" +msgid "%s's timeline" +msgstr "%s's timeline" -#: src/Module/Filer/SaveTag.php:66 -msgid "- select -" -msgstr "- select -" - -#: src/Module/Friendica.php:58 -msgid "Installed addons/apps:" -msgstr "Installed addons/apps:" - -#: src/Module/Friendica.php:63 -msgid "No installed addons/apps" -msgstr "No installed addons/apps" - -#: src/Module/Friendica.php:68 +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 #, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Read about the Terms of Service of this node." +msgid "%s's posts" +msgstr "%s's posts" -#: src/Module/Friendica.php:75 -msgid "On this server the following remote servers are blocked." -msgstr "On this server the following remote servers are blocked." +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "%s's comments" -#: src/Module/Friendica.php:93 +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "No contacts." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Follower (%s)" +msgstr[1] "Followers (%s)" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Following (%s)" +msgstr[1] "Following (%s)" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Mutual friend (%s)" +msgstr[1] "Mutual friends (%s)" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Contact (%s)" +msgstr[1] "Contacts (%s)" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "All contacts" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "Following" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "Mutual friends" + +#: src/Module/Profile/Profile.php:135 #, php-format msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s." +"You're currently viewing your profile as %s Cancel" +msgstr "" -#: src/Module/Friendica.php:98 +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Member since:" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Birthday:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Age: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Homepage:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Forums:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Edit profile" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:101 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Please visit Friendi.ca to learn more about the Friendica project." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "Bug reports and issues: please visit" +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." -#: src/Module/Friendica.php:99 -msgid "the bugtracker at github" -msgstr "the bugtracker at github" +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Your OpenID (optional): " -#: src/Module/Friendica.php:100 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Include your profile in member directory?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Note for the admin" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Leave a message for the admin. Why do you want to join this node?" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Membership on this site is by invitation only." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "Your invitation code: " + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Registration" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Your full name: " + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Your Email Address: (Initial information will be sent there, so this must be an existing address.)" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Leave empty for an auto generated password." + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Choose a nickname: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Import an existing Friendica profile to this node." + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Terms of Service" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Note: This node explicitly contains adult content" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Parent Password:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Please enter the password of the parent account to authorize this request." + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "You have entered too much information." + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registration successful. Please check your email for further instructions." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Failed to send email message. Here are your account details:
login: %s
password: %s

You can change your password after login." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Registration successful." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Your registration cannot be processed." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "You have to leave a request note for the admin." + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Your registration is pending approval by the site administrator." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Bad request" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Unauthorized" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Forbidden" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Not found" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "Internal Server Error" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "Service Unavailable" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "The server cannot process the request due to an apparent client error." + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "Authentication is required but has failed or not yet being provided." + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account." + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "The requested resource could not be found but may be available in the future." + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "An unexpected condition was encountered and no more specific message is available." + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "The server is currently unavailable (possibly because it is overloaded or down for maintenance). Please try again later." + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "Go back" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Welcome to %s" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "No friends to display." #: src/Module/FriendSuggest.php:65 msgid "Suggested contact not found." @@ -7980,114 +5327,16 @@ msgstr "Suggest friends" msgid "Suggest a friend for %s" msgstr "Suggest a friend for %s" -#: src/Module/Group.php:56 -msgid "Group created." -msgstr "Group created." +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Credits" -#: src/Module/Group.php:62 -msgid "Could not create group." -msgstr "Could not create group." - -#: src/Module/Group.php:73 src/Module/Group.php:215 src/Module/Group.php:241 -msgid "Group not found." -msgstr "Group not found." - -#: src/Module/Group.php:79 -msgid "Group name changed." -msgstr "Group name changed." - -#: src/Module/Group.php:101 -msgid "Unknown group." -msgstr "Unknown group." - -#: src/Module/Group.php:110 -msgid "Contact is deleted." -msgstr "Contact is deleted." - -#: src/Module/Group.php:116 -msgid "Unable to add the contact to the group." -msgstr "Unable to add contact to group." - -#: src/Module/Group.php:119 -msgid "Contact successfully added to group." -msgstr "Contact successfully added to group." - -#: src/Module/Group.php:123 -msgid "Unable to remove the contact from the group." -msgstr "Unable to remove contact from group." - -#: src/Module/Group.php:126 -msgid "Contact successfully removed from group." -msgstr "Contact successfully removed from group." - -#: src/Module/Group.php:129 -msgid "Unknown group command." -msgstr "Unknown group command." - -#: src/Module/Group.php:132 -msgid "Bad request." -msgstr "Bad request." - -#: src/Module/Group.php:171 -msgid "Save Group" -msgstr "Save group" - -#: src/Module/Group.php:172 -msgid "Filter" -msgstr "Filter" - -#: src/Module/Group.php:178 -msgid "Create a group of contacts/friends." -msgstr "Create a group of contacts/friends." - -#: src/Module/Group.php:220 -msgid "Group removed." -msgstr "Group removed." - -#: src/Module/Group.php:222 -msgid "Unable to remove group." -msgstr "Unable to remove group." - -#: src/Module/Group.php:273 -msgid "Delete Group" -msgstr "Delete group" - -#: src/Module/Group.php:283 -msgid "Edit Group Name" -msgstr "Edit group name" - -#: src/Module/Group.php:293 -msgid "Members" -msgstr "Members" - -#: src/Module/Group.php:309 -msgid "Remove contact from group" -msgstr "Remove contact from group" - -#: src/Module/Group.php:329 -msgid "Click on a contact to add or remove." -msgstr "Click on a contact to add or remove it." - -#: src/Module/Group.php:343 -msgid "Add contact to group" -msgstr "Add contact to group" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Help:" - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Welcome to %s" - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "No profile" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "Method not allowed." +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!" #: src/Module/Install.php:177 msgid "Friendica Communications Server - Setup" @@ -8101,10 +5350,30 @@ msgstr "System check" msgid "Check again" msgstr "Check again" +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "No SSL policy, links will track page SSL state" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "Force all links to use SSL" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Self-signed certificate, use SSL for local links only (discouraged)" + #: src/Module/Install.php:208 msgid "Base settings" msgstr "Base settings" +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "SSL link policy" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determines whether generated links should be forced to use SSL" + #: src/Module/Install.php:215 msgid "Host name" msgstr "Host name" @@ -8233,6 +5502,811 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel." +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- select -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Remote privacy information not available." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Visible to:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Manage Identities and Pages" + +#: src/Module/Delegation.php:148 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Accounts that I manage or own." + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Select identity:" + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "Local community" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "Posts from local users on this server" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "Global community" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "Posts from users of the whole federated network" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "No results." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users." + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "Community option not available." + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "Not available." + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Welcome to Friendica" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "New Member Checklist" + +#: src/Module/Welcome.php:46 +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 "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." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Getting started" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica walk-through" + +#: src/Module/Welcome.php:50 +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 "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." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Go to your settings" + +#: src/Module/Welcome.php:54 +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 "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." + +#: src/Module/Welcome.php:55 +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 "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." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Upload profile photo" + +#: src/Module/Welcome.php:59 +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 "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." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Edit your profile" + +#: src/Module/Welcome.php:61 +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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Profile keywords" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Connecting" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Importing emails" + +#: src/Module/Welcome.php:68 +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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Go to your contacts page" + +#: src/Module/Welcome.php:70 +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 "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." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Go to your site's directory" + +#: src/Module/Welcome.php:72 +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 "The directory 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 when requested." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Finding new people" + +#: src/Module/Welcome.php:74 +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 "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." + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Groups" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Group your contacts" + +#: src/Module/Welcome.php:78 +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 "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." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Why aren't my posts public?" + +#: src/Module/Welcome.php:81 +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 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." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Getting help" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Go to the help section" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Our help pages may be consulted for detail on other program features and resources." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "This page is missing a URL parameter." + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "The post was created" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Information" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Overview" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Federation statistics" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Configuration" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Site" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Users" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Addons" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Theme selection" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Additional features" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "Database" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "DB updates" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "Inspect deferred workers" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "Inspect worker queue" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Tools" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Contact block-list" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Server block-list" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Delete item" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Logs" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "View logs" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Diagnostics" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "PHP info" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "Probe address" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "check WebFinger" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "Item source" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "Babel" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Admin" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "Addon features" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "User registrations awaiting confirmation" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contact edited." +msgstr[1] "%d contacts edited." + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "Could not access contact record." + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "Follow" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "Unfollow" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "Contact not found" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "Contact has been blocked" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "Contact has been unblocked" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "Contact has been ignored" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "Contact has been unignored" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "Contact has been archived" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "Contact has been unarchived" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Drop contact" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "Do you really want to delete this contact?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "Contact has been removed." + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "You are mutual friends with %s" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "You are sharing with %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s is sharing with you" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Private communications are not available for this contact." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Never" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(Update was successful)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(Update was not successful)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Suggest friends" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Network type: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "Communications lost with this contact!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Fetch further information for feeds" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Fetch information like preview pictures, title, and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags." + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Disabled" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Fetch information" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "Fetch keywords" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Fetch information and keywords" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Personal note" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Notification and privacy " + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Contact" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Their personal note" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Edit contact notes" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visit %s's profile [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Block/Unblock contact" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Ignore contact" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "View conversations" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Last update:" + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Update public posts" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Update now" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Unblock" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Unignore" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "Currently blocked" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "Currently ignored" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "Currently archived" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "Awaiting connection acknowledgement" + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Replies/Likes to your public posts may still be visible" + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Notification for new posts" + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Send notification for every new post from this contact" + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Actions" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "All contacts" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Show all contacts" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "Pending" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "Only show pending contacts." + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Blocked" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Only show blocked contacts" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Ignored" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Only show ignored contacts" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Archived" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Only show archived contacts" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Hidden" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Only show hidden contacts" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "Organize your contact groups" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Search your contacts" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Results for: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Archive" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Unarchive" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Batch actions" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "Conversations started by this contact" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "Posts and Comments" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Profile Details" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "View all contacts" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "View all common friends" + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Advanced contact settings" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Mutual friendship" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "is a fan of yours" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "I follow them" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "Pending outgoing contact request." + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "Pending incoming contact request." + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Re-fetch contact data." + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Toggle blocked status" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Toggle ignored status" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Toggle archive status" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Delete contact" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), a username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but won’t be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication." + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts." + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners." + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "Privacy Statement" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Help:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "Method not allowed." + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + #: src/Module/Invite.php:55 msgid "Total invitation limit exceeded." msgstr "Total invitation limit exceeded" @@ -8337,6 +6411,1844 @@ msgid "" "important, please visit http://friendi.ca" msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca" +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "People search - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Forum search - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Disable" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Enable" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "Theme %s disabled." + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "Theme %s successfully enabled." + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "Theme %s failed to install." + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Screenshot" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Administration" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Toggle" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Author: " + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Maintainer: " + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "Unknown theme." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Reload active themes" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "No themes found on the system. They should be placed in %1$s" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Unsupported]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Lock feature %s" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Manage additional features" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s user blocked" +msgstr[1] "%s users blocked" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s user unblocked" +msgstr[1] "%s users unblocked" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "You can't remove yourself" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s user deleted" +msgstr[1] "%s users deleted" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "User \"%s\" deleted" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "User \"%s\" blocked" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "User \"%s\" unblocked" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Account approved." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "Private Forum" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "Relay" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "Email" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Registration date" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Last login" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "Type" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Add user" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "select all" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "User registrations awaiting confirmation" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "User awaiting permanent deletion" + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Request date" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "No registrations." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Note from the user" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Deny" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "User blocked" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Site admin" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Account expired" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "New user" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "Permanent deletion" + +#: src/Module/Admin/Users.php:267 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Admin/Users.php:268 +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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Name of the new user." + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Nickname" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Nickname of the new user." + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "Email address of the new user." + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "Inspect deferred worker queue" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed." + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "Inspect worker queue" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install." + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "Job parameters" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Created" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "Priority" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "Update has been marked successful" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Database structure update %s was successfully applied." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Execution of database structure update %s failed with error: %s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Execution of %s failed with error: %s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was successfully applied." + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s did not return a status. Unknown if it succeeded." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "There was no additional update function %s that needed to be called." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "No failed updates." + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Check database structure" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Failed updates" + +#: src/Module/Admin/DBSync.php:117 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "This does not include updates prior to 1139, which did not return a status." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Mark success (if update was manually applied)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Attempt to execute this update step automatically" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Other" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "unknown" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node.\"" + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Currently, this node is aware of %d nodes with %d registered users from the following platforms:" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Error trying to open %1$s log file.\\r\\n
Check to see if file %1$s exist and is readable." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Couldn't open %1$s log file.\\r\\n
Check if file %1$s is readable." + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "The logfile '%s' is not writable. No logging is possible" + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "PHP log currently enabled." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "PHP log currently disabled." + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "Clear" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Enable debugging" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Log file" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Must be writable by web server and relative to your Friendica top-level directory." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Log level" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP logging" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them." + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "Can not parse base URL. Must have at least ://" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "Invalid storage backend setting." + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "No special theme for mobile devices" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "No community page for local users" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "No community page" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Public postings from users of this site" + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "Public postings from the federated network" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "Public postings from local users and the federated network" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Multi user instance" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Closed" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Requires approval" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Open" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "Don't check" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "check for stable version updates" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "check for development version updates" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "Database (legacy)" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Republish users to directory" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "File upload" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Policies" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Auto-discovered contact directory" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Performance" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Worker" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "Message relay" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "Relocate Instance" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "" + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Site name" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "Sender email" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "The email address your server shall use to send notification emails from." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Shortcut icon" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Link to an icon that will be used for browsers." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Touch icon" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link to an icon that will be used for tablets and mobiles." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Additional Info" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "For public servers: You can add additional information here that will be listed at %s/servers." + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "System language" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "System theme" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "Default system theme - may be over-ridden by user profiles - Change default theme settings" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Mobile system theme" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Theme for mobile devices" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "Force SSL" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Hide help entry from navigation menu" + +#: src/Module/Admin/Site.php:613 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Single user instance" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Make this instance multi-user or single-user for the named user" + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "File storage backend" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you do not do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure." + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Maximum image size" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Maximum image length" + +#: src/Module/Admin/Site.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "JPEG image quality" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Uploaded JPEGs will be saved at this quality setting [0-100]. Default is 100, which is the original quality level." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Registration policy" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maximum daily registrations" + +#: src/Module/Admin/Site.php:623 +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 "If open registration is permitted, this sets the maximum number of new registrations per day. This setting has no effect for registrations by approval." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Registration text" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Will be displayed prominently on the registration page. You may use BBCode here." + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "Forbidden Nicknames" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142." + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Accounts abandoned after so many days" + +#: src/Module/Admin/Site.php:626 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Allowed friend domains" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Comma-separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains" + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Allowed email domains" + +#: src/Module/Admin/Site.php:628 +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 "Comma-separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains" + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "No OEmbed rich content" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below." + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "Allowed OEmbed domains" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "Comma-separated list of domains from where OEmbed content is allowed. Wildcards are possible." + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Block public" + +#: src/Module/Admin/Site.php:631 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Mandatory directory listing" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Force all profiles on this site to be listed in the site directory." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Enabling this may violate privacy laws like the GDPR" + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "Global directory URL" + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Private posts by default for new users" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Set default post permissions for all new members to the default privacy group rather than public." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "Don't include post content in email notifications" + +#: src/Module/Admin/Site.php:635 +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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disallow public access to addons listed in the apps menu." + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Checking this box will restrict addons listed in the apps menu to members only." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "Don't embed private images in posts" + +#: src/Module/Admin/Site.php:637 +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 "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." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "Explicit Content" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page." + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Allow users to set \"Remote self\"" + +#: src/Module/Admin/Site.php:639 +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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream." + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Block multiple registrations" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Disallow users to sign up for additional accounts." + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "Disable OpenID" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "Disable OpenID support for registration and logins." + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "No full name check" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "Allow users to register without a space between the first name and the last name in their full name." + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "Community pages for visitors" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Which community pages should be available for visitors. Local users always see both pages." + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Posts per user on community page" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "The maximum number of posts per user on the community page. (Not valid for \"Global Community\")" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "Disable OStatus support" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed." + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus support can only be enabled if threading is enabled." + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "diaspora* support can't be enabled because Friendica was installed into a sub directory." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Enable diaspora* support" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provide built-in diaspora* network compatibility." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Only allow Friendica contacts" + +#: src/Module/Admin/Site.php:650 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "Verify SSL" + +#: src/Module/Admin/Site.php:651 +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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Proxy user" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Network timeout" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Maximum load average" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "Maximum system load before delivery and poll processes are deferred - default %d." + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum load average (frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximum system load before the frontend quits service (default 50)." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Minimal memory" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)." + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Days between enquiry" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Number of days after which a server is rechecked for contacts." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Discover contacts from other servers" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Search the local directory" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Publish server information" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Check upstream version" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Suppress tags" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Suppress listed hashtags at the end of posts." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "Clean database" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Remove old remote items, orphaned database records, and old content from some other helper tables." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "Lifespan of remote items" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "If the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items, are always kept. 0 disables this behavior." + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "Lifespan of unclaimed items" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "If the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0." + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "Lifespan of raw conversation data" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days." + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Path to item cache" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "The item cache retains expanded bbcode and external images." + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Cache duration in seconds" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)" + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Maximum number of comments per post" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "How many comments should be shown for each post? (Default 100)" + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Temp path" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Enter a different temp path if your system restricts the webserver's access to the system temp path." + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Disable picture proxy" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth." + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Only search in tags" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "On large systems, the text search can slow down the system significantly." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "New base URL" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Change base URL for this server. Sends a relocate message to all Friendica and diaspora* contacts, for all users." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "RINO Encryption" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Encryption layer between nodes." + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "Enabled" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Maximum number of parallel workers" + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d." + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "Don't use \"proc_open\" with the worker" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab." + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Enable fast-lane" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority." + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Enable frontend worker" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server." + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "Subscribe to relay" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "Receive public posts from the specified relay. Post will be included in searches, subscribed tags, and on the global community page." + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "Relay server" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "Address of the relay server where public posts should be sent. For example https://relay.diasp.org" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "Direct relay transfer" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Enables direct transfer to other servers without using a relay server." + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "Relay scope" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received." + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "all" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "tags" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "Server tags" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Comma separated list of tags for the \"tags\" subscription." + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "Allow user tags" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"." + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "Start relocation" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB-only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear." + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear in the console and logfile output." + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "The worker process has never been executed. Please check your database structure!" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "Friendica's configuration is now stored in config/local.config.php; please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition..htconfig.php. See the Config help page for help with the transition." + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "Friendica's configuration is now stored in config/local.config.php; please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition." + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help." + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The logfile '%s' is not usable. No logging is possible (error: '%s')" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "The debug logfile '%s' is not usable. No logging is possible (error: '%s')" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "The system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "The current system.basepath '%s' is wrong and the config file '%s' isn't used." + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "The current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Standard account" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "Automatic follower account" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Public forum account" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "Automatic friend account" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Blog account" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Private forum account" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Message queues" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "Server Settings" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Signed up users" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Pending registrations" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Version" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "Active addons" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Display Terms of Service" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Enable the Terms of Service page. If this is enabled, a link to the terms will be added to the registration form and to the general information page." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Display Privacy Statement" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Privacy Statement Preview" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "Terms of Service" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or less." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "Server domain pattern added to block-list." + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "Blocked server domain pattern" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Reason for the block" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "Delete server domain pattern" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Check to delete this entry from the block-list" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "Server domain pattern block-list" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily." + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Add new entry to block-list" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "Server Domain Pattern" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "The domain pattern of the new server to add to the block-list. Do not include the protocol." + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Block reason" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "The reason why you blocked this server domain pattern." + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Add entry" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Save changes to the block-list" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Current entries in the block-list" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Delete entry from block-list" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Delete entry from block-list?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s contact unblocked" +msgstr[1] "%s contacts unblocked" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Remote contact block-list" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "This page allows you to prevent any message from a remote contact to reach your node." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Block remote contact" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "select none" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "No remote contact is blocked from this node." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Blocked remote contacts" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Block new remote contact" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Photo" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "Reason" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "%s total blocked contact" +msgstr[1] "%s blocked contacts" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "URL of the remote contact to block." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "Block reason" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "Item Guid" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Item marked for deletion." + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Delete" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "GUID of item to be deleted." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "Addon not found." + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Addon %s disabled." + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Addon %s enabled." + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "Addon %s failed to install." + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Reload active addons" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "No entries (entries may be hidden)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Find on this site" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Results for:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Site directory" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Item was not found." + #: src/Module/Item/Compose.php:46 msgid "Please enter a post body." msgstr "Please enter a post body." @@ -8371,98 +8283,55 @@ msgid "" "your device" msgstr "Location services are disabled. Please check the website's permissions on your device" -#: src/Module/Maintenance.php:46 -msgid "System down for maintenance" -msgstr "Sorry, the system is currently down for maintenance." +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "Installed addons/apps:" -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "" +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "No installed addons/apps" -#: src/Module/Notifications/Introductions.php:76 -msgid "Show Ignored Requests" -msgstr "Show ignored requests." +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Read about the Terms of Service of this node." -#: src/Module/Notifications/Introductions.php:76 -msgid "Hide Ignored Requests" -msgstr "Hide ignored requests" +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "On this server the following remote servers are blocked." -#: src/Module/Notifications/Introductions.php:90 -#: src/Module/Notifications/Introductions.php:157 -msgid "Notification type:" -msgstr "Notification type:" - -#: src/Module/Notifications/Introductions.php:93 -msgid "Suggested by:" -msgstr "Suggested by:" - -#: src/Module/Notifications/Introductions.php:118 -msgid "Claims to be known to you: " -msgstr "Says they know me:" - -#: src/Module/Notifications/Introductions.php:125 -msgid "Shall your connection be bidirectional or not?" -msgstr "Shall your connection be in both directions or not?" - -#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Friendica.php:93 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Accepting %s as a friend allows %s to subscribe to your posts. You will also receive updates from them in your news feed." +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s." -#: src/Module/Notifications/Introductions.php:127 -#, php-format +#: src/Module/Friendica.php:98 msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed." +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Please visit Friendi.ca to learn more about the Friendica project." -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -msgstr "Friend" +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Bug reports and issues: please visit" -#: src/Module/Notifications/Introductions.php:130 -msgid "Subscriber" -msgstr "Subscriber" +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "the bugtracker at github" -#: src/Module/Notifications/Introductions.php:194 -msgid "No introductions." -msgstr "No introductions." +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -#: src/Module/Notifications/Introductions.php:195 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "No more %s notifications." +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Only you can see this." -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "" - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Network notifications" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "System notifications" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Personal notifications" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Home notifications" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Show unread" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Show all" +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Tips for New Members" #: src/Module/Photo.php:87 #, php-format @@ -8474,242 +8343,11 @@ msgstr "" msgid "Invalid photo with id %s." msgstr "Invalid photo with id %s." -#: src/Module/Profile/Contacts.php:42 src/Module/Profile/Contacts.php:55 -#: src/Module/Register.php:260 -msgid "User not found." -msgstr "User not found." - -#: src/Module/Profile/Contacts.php:95 -msgid "No contacts." -msgstr "No contacts." - -#: src/Module/Profile/Contacts.php:129 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Follower (%s)" -msgstr[1] "Followers (%s)" - -#: src/Module/Profile/Contacts.php:130 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Following (%s)" -msgstr[1] "Following (%s)" - -#: src/Module/Profile/Contacts.php:131 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "Mutual friend (%s)" -msgstr[1] "Mutual friends (%s)" - -#: src/Module/Profile/Contacts.php:133 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Contact (%s)" -msgstr[1] "Contacts (%s)" - -#: src/Module/Profile/Contacts.php:142 -msgid "All contacts" -msgstr "All contacts" - -#: src/Module/Profile/Profile.php:136 -msgid "Member since:" -msgstr "Member since:" - -#: src/Module/Profile/Profile.php:142 -msgid "j F, Y" -msgstr "j F, Y" - -#: src/Module/Profile/Profile.php:143 -msgid "j F" -msgstr "j F" - -#: src/Module/Profile/Profile.php:151 src/Util/Temporal.php:163 -msgid "Birthday:" -msgstr "Birthday:" - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -msgid "Age: " -msgstr "Age: " - -#: src/Module/Profile/Profile.php:154 -#: src/Module/Settings/Profile/Index.php:266 src/Util/Temporal.php:165 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "" -msgstr[1] "" - -#: src/Module/Profile/Profile.php:216 -msgid "Forums:" -msgstr "Forums:" - -#: src/Module/Profile/Profile.php:226 -msgid "View profile as:" -msgstr "" - -#: src/Module/Profile/Profile.php:300 src/Module/Profile/Profile.php:303 -#: src/Module/Profile/Status.php:55 src/Module/Profile/Status.php:58 -#: src/Protocol/OStatus.php:1288 -#, php-format -msgid "%s's timeline" -msgstr "%s's timeline" - -#: src/Module/Profile/Profile.php:301 src/Module/Profile/Status.php:56 -#: src/Protocol/OStatus.php:1292 -#, php-format -msgid "%s's posts" -msgstr "%s's posts" - -#: src/Module/Profile/Profile.php:302 src/Module/Profile/Status.php:57 -#: src/Protocol/OStatus.php:1295 -#, php-format -msgid "%s's comments" -msgstr "%s's comments" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "" - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"." - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Your OpenID (optional): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Include your profile in member directory?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Note for the admin" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Leave a message for the admin. Why do you want to join this node?" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Membership on this site is by invitation only." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "Your invitation code: " - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Your full name: " - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Your Email Address: (Initial information will be sent there, so this must be an existing address.)" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Leave empty for an auto generated password." - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Choose a nickname: " - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "Import an existing Friendica profile to this node." - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Note: This node explicitly contains adult content" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "Parent Password:" -msgstr "Parent Password:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:154 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Please enter the password of the parent account to authorize this request." - -#: src/Module/Register.php:201 -msgid "Password doesn't match." -msgstr "" - -#: src/Module/Register.php:207 -msgid "Please enter your password." -msgstr "" - -#: src/Module/Register.php:249 -msgid "You have entered too much information." -msgstr "You have entered too much information." - -#: src/Module/Register.php:273 -msgid "Please enter the identical mail address in the second field." -msgstr "" - -#: src/Module/Register.php:300 -msgid "The additional account was created." -msgstr "" - -#: src/Module/Register.php:325 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registration successful. Please check your email for further instructions." - -#: src/Module/Register.php:329 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Failed to send email message. Here are your account details:
login: %s
password: %s

You can change your password after login." - -#: src/Module/Register.php:335 -msgid "Registration successful." -msgstr "Registration successful." - -#: src/Module/Register.php:340 src/Module/Register.php:347 -msgid "Your registration can not be processed." -msgstr "Your registration cannot be processed." - -#: src/Module/Register.php:346 -msgid "You have to leave a request note for the admin." -msgstr "You have to leave a request note for the admin." - -#: src/Module/Register.php:394 -msgid "Your registration is pending approval by the site owner." -msgstr "Your registration is pending approval by the site administrator." - -#: src/Module/RemoteFollow.php:66 +#: src/Module/RemoteFollow.php:67 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/RemoteFollow.php:107 +#: src/Module/RemoteFollow.php:105 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -8717,465 +8355,387 @@ msgid "" " or %s directly on your system." msgstr "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system." -#: src/Module/Search/Acl.php:56 -msgid "You must be logged in to use this module." -msgstr "You must be logged in to use this module." +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Account" -#: src/Module/Search/Index.php:52 +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Display" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Connected apps" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Export personal data" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Remove account" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Could not create group." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Group not found." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "" + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Unknown group." + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "Contact is deleted." + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Unable to add contact to group." + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "Contact successfully added to group." + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Unable to remove contact from group." + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "Contact successfully removed from group." + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Unknown group command." + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Bad request." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Save group" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "Filter" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Create a group of contacts/friends." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Group name: " + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Contacts not in any group" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Unable to remove group." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Delete group" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Edit group name" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Members" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Remove contact from group" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Click on a contact to add or remove it." + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "Add contact to group" + +#: src/Module/Search/Index.php:53 msgid "Only logged in users are permitted to perform a search." msgstr "Only logged in users are permitted to perform a search." -#: src/Module/Search/Index.php:74 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Only one search per minute is permitted for not-logged-in users." -#: src/Module/Search/Index.php:200 +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Search" + +#: src/Module/Search/Index.php:184 #, php-format msgid "Items tagged with: %s" msgstr "Items tagged with: %s" -#: src/Module/Search/Saved.php:44 -msgid "Search term successfully saved." -msgstr "Search term successfully saved." +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "You must be logged in to use this module." -#: src/Module/Search/Saved.php:46 +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:48 msgid "Search term already saved." msgstr "Search term already saved." -#: src/Module/Search/Saved.php:52 -msgid "Search term successfully removed." -msgstr "Search term successfully removed." - -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Create a new account" - -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Your OpenID: " - -#: src/Module/Security/Login.php:129 -msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Please enter your username and password to add the OpenID to your existing account." - -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Or login with OpenID: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Password: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Remember me" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Forgot your password?" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Website Terms of Service" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "Terms of service" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Website Privacy Policy" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "Privacy policy" - -#: src/Module/Security/Logout.php:53 -msgid "Logged out." -msgstr "Logged out." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." msgstr "" -#: src/Module/Security/OpenID.php:92 -msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "Account not found. Please login to your existing account to add the OpenID to it." +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "No profile" -#: src/Module/Security/OpenID.php:94 -msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "Account not found. Please register a new account or login to your existing account to add the OpenID." - -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "Remaining recovery codes: %d" - -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -#: src/Module/Settings/TwoFactor/Verify.php:82 -msgid "Invalid code, please retry." -msgstr "Invalid code, please try again." - -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Two-factor recovery" - -#: src/Module/Security/TwoFactor/Recovery.php:84 -msgid "" -"

You can enter one of your one-time recovery codes in case you lost access" -" to your mobile device.

" -msgstr "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

" - -#: src/Module/Security/TwoFactor/Recovery.php:85 -#: src/Module/Security/TwoFactor/Verify.php:84 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Don’t have your phone? Enter a two-factor recovery code" - -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Please enter a recovery code" - -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Submit recovery code and complete login" - -#: src/Module/Security/TwoFactor/Verify.php:81 -msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

" - -#: src/Module/Security/TwoFactor/Verify.php:85 -#: src/Module/Settings/TwoFactor/Verify.php:141 -msgid "Please enter a code from your authentication app" -msgstr "Please enter a code from your authentication app" - -#: src/Module/Security/TwoFactor/Verify.php:86 -msgid "Verify code and complete login" -msgstr "Verify code and complete login" - -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Delegation successfully granted." - -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "Parent user not found, unavailable or password doesn't match." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "Delegation successfully revoked." - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Delegated administrators can view but not change delegation permissions." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Delegate user not found." - -#: src/Module/Settings/Delegation.php:142 -msgid "No parent user" -msgstr "No parent user" - -#: src/Module/Settings/Delegation.php:153 -#: src/Module/Settings/Delegation.php:164 -msgid "Parent User" -msgstr "Parent user" - -#: src/Module/Settings/Delegation.php:161 -msgid "Additional Accounts" +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." msgstr "" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "Poke, prod or do other things to somebody" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Choose what you wish to do:" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Make this post private" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Contact update failed." + +#: src/Module/Contact/Advanced.php:111 msgid "" -"Register additional accounts that are automatically connected to your " -"existing account so you can manage them from this account." -msgstr "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "Warning: These are highly advanced settings. If you enter incorrect information, your communications with this contact might be disrupted." -#: src/Module/Settings/Delegation.php:163 -msgid "Register an additional account" -msgstr "" - -#: src/Module/Settings/Delegation.php:167 +#: src/Module/Contact/Advanced.php:112 msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Please use your browser 'Back' button now if you are uncertain what to do on this page." -#: src/Module/Settings/Delegation.php:171 -msgid "Delegates" -msgstr "Delegates" +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "No mirroring" -#: src/Module/Settings/Delegation.php:173 +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Mirror as forwarded posting" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Mirror as my own posting" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Return to contact editor" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Remote self" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Mirror postings from this contact:" + +#: src/Module/Contact/Advanced.php:146 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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "This will cause Friendica to repost new entries from this contact." -#: src/Module/Settings/Delegation.php:174 -msgid "Existing Page Delegates" -msgstr "Existing page delegates" +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Account nickname:" -#: src/Module/Settings/Delegation.php:176 -msgid "Potential Delegates" -msgstr "Potential delegates" +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tag name - overrides name/nickname:" -#: src/Module/Settings/Delegation.php:179 -msgid "Add" -msgstr "Add" +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "Account URL:" -#: src/Module/Settings/Delegation.php:180 -msgid "No entries." -msgstr "No entries." +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" +msgstr "Account URL alias" -#: src/Module/Settings/Display.php:101 -msgid "The theme you chose isn't available." -msgstr "The theme you chose isn't available." +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "Friend request URL:" -#: src/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Unsupported)" +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "Friend confirm URL:" -#: src/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "Display Settings" +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "Notification endpoint URL" -#: src/Module/Settings/Display.php:183 -msgid "General Theme Settings" -msgstr "Themes" +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL:" -#: src/Module/Settings/Display.php:184 -msgid "Custom Theme Settings" -msgstr "Theme customization" +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "New photo from this URL:" -#: src/Module/Settings/Display.php:185 -msgid "Content Settings" -msgstr "Content/Layout" +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "No installed applications." -#: src/Module/Settings/Display.php:186 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:140 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Theme settings" +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Applications" -#: src/Module/Settings/Display.php:187 -msgid "Calendar" -msgstr "Calendar" - -#: src/Module/Settings/Display.php:193 -msgid "Display Theme:" -msgstr "Display theme:" - -#: src/Module/Settings/Display.php:194 -msgid "Mobile Theme:" -msgstr "Mobile theme:" - -#: src/Module/Settings/Display.php:197 -msgid "Number of items to display per page:" -msgstr "Number of items displayed per page:" - -#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 -msgid "Maximum of 100 items" -msgstr "Maximum of 100 items" - -#: src/Module/Settings/Display.php:198 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Number of items displayed per page on mobile devices:" - -#: src/Module/Settings/Display.php:199 -msgid "Update browser every xx seconds" -msgstr "Update browser every so many seconds:" - -#: src/Module/Settings/Display.php:199 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum 10 seconds; to disable -1." - -#: src/Module/Settings/Display.php:200 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "" - -#: src/Module/Settings/Display.php:200 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." -msgstr "" - -#: src/Module/Settings/Display.php:201 -msgid "Don't show emoticons" -msgstr "Don't show emoticons" - -#: src/Module/Settings/Display.php:201 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "" - -#: src/Module/Settings/Display.php:202 -msgid "Infinite scroll" -msgstr "Infinite scroll" - -#: src/Module/Settings/Display.php:202 -msgid "Automatic fetch new items when reaching the page end." -msgstr "" - -#: src/Module/Settings/Display.php:203 -msgid "Disable Smart Threading" -msgstr "Disable smart threading" - -#: src/Module/Settings/Display.php:203 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "Disable the automatic suppression of extraneous thread indentation." - -#: src/Module/Settings/Display.php:204 -msgid "Hide the Dislike feature" -msgstr "" - -#: src/Module/Settings/Display.php:204 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "" - -#: src/Module/Settings/Display.php:206 -msgid "Beginning of week:" -msgstr "Week begins: " - -#: src/Module/Settings/Profile/Index.php:86 +#: src/Module/Settings/Profile/Index.php:85 msgid "Profile Name is required." msgstr "Profile name is required." -#: src/Module/Settings/Profile/Index.php:138 -msgid "Profile updated." -msgstr "Profile updated." - -#: src/Module/Settings/Profile/Index.php:140 +#: src/Module/Settings/Profile/Index.php:137 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:193 -#: src/Module/Settings/Profile/Index.php:213 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:194 -#: src/Module/Settings/Profile/Index.php:214 +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:204 -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 msgid "Field Permissions" -msgstr "" +msgstr "Field Permissions" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 msgid "(click to open/close)" msgstr "(reveal/hide)" -#: src/Module/Settings/Profile/Index.php:211 +#: src/Module/Settings/Profile/Index.php:205 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:235 msgid "Profile Actions" msgstr "Profile actions" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:236 msgid "Edit Profile Details" msgstr "Edit Profile Details" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:238 msgid "Change Profile Photo" msgstr "Change profile photo" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:243 msgid "Profile picture" msgstr "Profile picture" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:244 msgid "Location" msgstr "Location" -#: src/Module/Settings/Profile/Index.php:251 src/Util/Temporal.php:93 +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 #: src/Util/Temporal.php:95 msgid "Miscellaneous" msgstr "Miscellaneous" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:246 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:254 src/Module/Welcome.php:58 -msgid "Upload Profile Photo" -msgstr "Upload profile photo" - -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:252 msgid "Display name:" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:255 msgid "Street Address:" msgstr "Street address:" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:256 msgid "Locality/City:" msgstr "Locality/City:" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:257 msgid "Region/State:" msgstr "Region/State:" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:258 msgid "Postal/Zip Code:" msgstr "Postcode:" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:259 msgid "Country:" msgstr "Country:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) address:" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:261 msgid "" "The XMPP address will be propagated to your contacts so that they can follow" " you." msgstr "The XMPP address will be propagated to your contacts so that they can follow you." -#: src/Module/Settings/Profile/Index.php:268 +#: src/Module/Settings/Profile/Index.php:262 msgid "Homepage URL:" msgstr "Homepage URL:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "Public Keywords:" msgstr "Public keywords:" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:263 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "Used for suggesting potential friends, can be seen by others." -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "Private Keywords:" msgstr "Private keywords:" -#: src/Module/Settings/Profile/Index.php:270 +#: src/Module/Settings/Profile/Index.php:264 msgid "(Used for searching profiles, never shown to others)" msgstr "Used for searching profiles, never shown to others." -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:265 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9188,7 +8748,7 @@ msgstr "" #: src/Module/Settings/Profile/Photo/Crop.php:102 #: src/Module/Settings/Profile/Photo/Crop.php:118 #: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:105 +#: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format msgid "Image size reduction [%s] failed." msgstr "Image size reduction [%s] failed." @@ -9228,115 +8788,111 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:97 -msgid "Image uploaded successfully." -msgstr "Image uploaded successfully." - -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:130 +#: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:129 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "or" msgstr "or" -#: src/Module/Settings/Profile/Photo/Index.php:138 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "skip this step" msgstr "skip this step" -#: src/Module/Settings/Profile/Photo/Index.php:140 +#: src/Module/Settings/Profile/Photo/Index.php:138 msgid "select a photo from your photo albums" msgstr "select a photo from your photo albums" -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Verify.php:56 -msgid "Please enter your password to access this page." -msgstr "Please enter your password to access this page." +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "Delegation successfully granted." -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "App-specific password generation failed: The description is empty." +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "Parent user not found, unavailable or password doesn't match." -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "Delegation successfully revoked." + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 msgid "" -"App-specific password generation failed: This description already exists." -msgstr "App-specific password generation failed: This description already exists." +"Delegated administrators can view but not change delegation permissions." +msgstr "Delegated administrators can view but not change delegation permissions." -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "New app-specific password generated." +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "Delegate user not found." -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "App-specific passwords successfully revoked." +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "No parent user" -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "App-specific password successfully revoked." +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "Parent user" -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Two-factor app-specific passwords" +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +#: src/Module/Settings/Delegation.php:163 msgid "" -"

App-specific passwords are randomly generated passwords used instead your" -" regular password to authenticate your account on third-party applications " -"that don't support two-factor authentication.

" -msgstr "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:168 msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "Make sure to copy your new app-specific password now. You won’t be able to see it again!" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access." -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Description" +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "Delegates" -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Last used" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Revoke" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Revoke all" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/Delegation.php:174 msgid "" -"When you generate a new app-specific password, you must use it right away, " -"it will be shown to you once after you generate it." -msgstr "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it." +"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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely." -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "Generate new app-specific password" +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "Existing page delegates" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "Friendiqa on my Fairphone 2..." +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Potential delegates" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "Generate" +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "Add" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "No entries." #: src/Module/Settings/TwoFactor/Index.php:67 msgid "Two-factor authentication successfully disabled." @@ -9430,36 +8986,11 @@ msgstr "Manage app-specific passwords." msgid "Finish app configuration" msgstr "Finish app configuration" -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "New recovery codes successfully generated." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Two-factor recovery codes" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Generate new recovery codes" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Next: Verification" +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "Please enter your password to access this page." #: src/Module/Settings/TwoFactor/Verify.php:78 msgid "Two-factor authentication successfully activated." @@ -9506,6 +9037,215 @@ msgstr "

Or you can open the following URL in your mobile device:

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Generate new recovery codes" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Next: Verification" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "App-specific password generation failed: The description is empty." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "App-specific password generation failed: This description already exists." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "New app-specific password generated." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "App-specific passwords successfully revoked." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "App-specific password successfully revoked." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "Two-factor app-specific passwords" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Make sure to copy your new app-specific password now. You won’t be able to see it again!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "Description" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "Last used" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "Revoke" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "Revoke all" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "Generate new app-specific password" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa on my Fairphone 2..." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "Generate" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "The theme you chose isn't available." + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Unsupported)" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Display Settings" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "Themes" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "Theme customization" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "Content/Layout" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "Calendar" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "Display theme:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "Mobile theme:" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "Number of items displayed per page:" + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "Maximum of 100 items" + +#: src/Module/Settings/Display.php:198 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Number of items displayed per page on mobile devices:" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "Update browser every so many seconds:" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum 10 seconds; to disable -1." + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "" + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "" + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "Don't show emoticons" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "" + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "Infinite scroll" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "Disable smart threading" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "Disable the automatic suppression of extraneous thread indentation." + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "Week begins: " + #: src/Module/Settings/UserExport.php:57 msgid "Export account" msgstr "Export account" @@ -9537,574 +9277,31 @@ msgid "" " e.g. Mastodon." msgstr "Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example." -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Bad request" +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "Sorry, the system is currently down for maintenance." -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Unauthorized" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Forbidden" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Not found" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "Internal Server Error" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "Service Unavailable" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "The server cannot process the request due to an apparent client error." - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Authentication is required but has failed or not yet being provided." - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account." - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "The requested resource could not be found but may be available in the future." - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "An unexpected condition was encountered and no more specific message is available." - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "The server is currently unavailable (possibly because it is overloaded or down for maintenance). Please try again later." - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), a username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but won’t be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication." - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts." - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -"
account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners." - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "Privacy Statement" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Welcome to Friendica" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "New Member Checklist" - -#: src/Module/Welcome.php:46 -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 "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." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Getting started" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica walk-through" - -#: src/Module/Welcome.php:50 -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 "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." - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Go to your settings" - -#: src/Module/Welcome.php:54 -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 "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." - -#: src/Module/Welcome.php:55 -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 "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." - -#: src/Module/Welcome.php:59 -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 "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." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "Edit your profile" - -#: src/Module/Welcome.php:61 -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 "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Profile keywords" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "" - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Connecting" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "Importing emails" - -#: src/Module/Welcome.php:68 -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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX" - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Go to your contacts page" - -#: src/Module/Welcome.php:70 -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 "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." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Go to your site's directory" - -#: src/Module/Welcome.php:72 -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 "The directory 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 when requested." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Finding new people" - -#: src/Module/Welcome.php:74 -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 "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." - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Group your contacts" - -#: src/Module/Welcome.php:78 -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 "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." - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Why aren't my posts public?" - -#: src/Module/Welcome.php:81 -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 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." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Getting help" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Go to the help section" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Our help pages may be consulted for detail on other program features and resources." - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "This message was sent to you by %s, a member of the Friendica social network." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "You may visit them online at %s" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s posted an update." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "This entry was edited" - -#: src/Object/Post.php:175 -msgid "Private Message" -msgstr "Private message" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "pinned item" - -#: src/Object/Post.php:219 -msgid "Delete locally" -msgstr "Delete locally" - -#: src/Object/Post.php:222 -msgid "Delete globally" -msgstr "Delete globally" - -#: src/Object/Post.php:222 -msgid "Remove locally" -msgstr "Remove locally" - -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "Save to folder" - -#: src/Object/Post.php:271 -msgid "I will attend" -msgstr "I will attend" - -#: src/Object/Post.php:271 -msgid "I will not attend" -msgstr "I will not attend" - -#: src/Object/Post.php:271 -msgid "I might attend" -msgstr "I might attend" - -#: src/Object/Post.php:301 -msgid "ignore thread" -msgstr "Ignore thread" - -#: src/Object/Post.php:302 -msgid "unignore thread" -msgstr "Unignore thread" - -#: src/Object/Post.php:303 -msgid "toggle ignore status" -msgstr "Toggle ignore status" - -#: src/Object/Post.php:315 -msgid "pin" -msgstr "Pin" - -#: src/Object/Post.php:316 -msgid "unpin" -msgstr "Unpin" - -#: src/Object/Post.php:317 -msgid "toggle pin status" -msgstr "Toggle pin status" - -#: src/Object/Post.php:320 -msgid "pinned" -msgstr "pinned" - -#: src/Object/Post.php:327 -msgid "add star" -msgstr "Add star" - -#: src/Object/Post.php:328 -msgid "remove star" -msgstr "Remove star" - -#: src/Object/Post.php:329 -msgid "toggle star status" -msgstr "Toggle star status" - -#: src/Object/Post.php:332 -msgid "starred" -msgstr "Starred" - -#: src/Object/Post.php:336 -msgid "add tag" -msgstr "Add tag" - -#: src/Object/Post.php:346 -msgid "like" -msgstr "Like" - -#: src/Object/Post.php:347 -msgid "dislike" -msgstr "Dislike" - -#: src/Object/Post.php:349 -msgid "Share this" -msgstr "Share this" - -#: src/Object/Post.php:349 -msgid "share" -msgstr "Share" - -#: src/Object/Post.php:398 -#, php-format -msgid "%s (Received %s)" -msgstr "%s (Received %s)" - -#: src/Object/Post.php:403 -msgid "Comment this item on your system" -msgstr "" - -#: src/Object/Post.php:403 -msgid "remote comment" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pushed" -msgstr "" - -#: src/Object/Post.php:413 -msgid "Pulled" -msgstr "" - -#: src/Object/Post.php:440 -msgid "to" -msgstr "to" - -#: src/Object/Post.php:441 -msgid "via" -msgstr "via" - -#: src/Object/Post.php:442 -msgid "Wall-to-Wall" -msgstr "Wall-to-wall" - -#: src/Object/Post.php:443 -msgid "via Wall-To-Wall:" -msgstr "via wall-to-wall:" - -#: src/Object/Post.php:479 -#, php-format -msgid "Reply to %s" -msgstr "Reply to %s" - -#: src/Object/Post.php:482 -msgid "More" -msgstr "" - -#: src/Object/Post.php:498 -msgid "Notifier task is pending" -msgstr "Notifier task is pending" - -#: src/Object/Post.php:499 -msgid "Delivery to remote servers is pending" -msgstr "Delivery to remote servers is pending" - -#: src/Object/Post.php:500 -msgid "Delivery to remote servers is underway" -msgstr "Delivery to remote servers is underway" - -#: src/Object/Post.php:501 -msgid "Delivery to remote servers is mostly done" -msgstr "Delivery to remote servers is mostly done" - -#: src/Object/Post.php:502 -msgid "Delivery to remote servers is done" -msgstr "Delivery to remote servers is done" - -#: src/Object/Post.php:522 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comment" -msgstr[1] "%d comments" - -#: src/Object/Post.php:523 -msgid "Show more" -msgstr "Show more" - -#: src/Object/Post.php:524 -msgid "Show fewer" -msgstr "Show fewer" - -#: src/Protocol/Diaspora.php:3614 -msgid "Attachments:" -msgstr "Attachments:" - -#: src/Protocol/OStatus.php:1850 +#: src/Protocol/OStatus.php:1784 #, php-format msgid "%s is now following %s." msgstr "%s is now following %s." -#: src/Protocol/OStatus.php:1851 +#: src/Protocol/OStatus.php:1785 msgid "following" msgstr "following" -#: src/Protocol/OStatus.php:1854 +#: src/Protocol/OStatus.php:1788 #, php-format msgid "%s stopped following %s." msgstr "%s stopped following %s." -#: src/Protocol/OStatus.php:1855 +#: src/Protocol/OStatus.php:1789 msgid "stopped following" msgstr "stopped following" -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Home town:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Sexual preference:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Political views:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Religious views:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Likes:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Title/Description:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Music:" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Books, literature, poetry:" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Television:" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Film, dance, culture, entertainment" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interests:" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Love/Romance:" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Work/Employment:" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "School/Education:" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Contact information and other social networks:" - -#: src/Util/EMailer/MailBuilder.php:212 -msgid "Friendica Notification" -msgstr "Friendica notification" +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Attachments:" #: src/Util/EMailer/NotifyMailBuilder.php:78 #: src/Util/EMailer/SystemMailBuilder.php:54 @@ -10125,6 +9322,10 @@ msgstr "%s Administrator" msgid "thanks" msgstr "" +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Friendica notification" + #: src/Util/Temporal.php:167 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD or MM-DD" @@ -10191,230 +9392,1004 @@ msgstr "in %1$d %2$s" msgid "%1$d %2$s ago" msgstr "%1$d %2$s ago" -#: src/Worker/Delivery.php:555 -msgid "(no subject)" -msgstr "(no subject)" - -#: update.php:194 +#: src/Model/Storage/Database.php:74 #, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "%s: Updating author-id and owner-id in item and thread table. " +msgid "Database storage failed to update %s" +msgstr "Database storage failed to update %s" -#: update.php:249 +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Database storage failed to insert data" + +#: src/Model/Storage/Filesystem.php:100 #, php-format -msgid "%s: Updating post-type." -msgstr "%s: Updating post-type." +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "Filesystem storage failed to create \"%s\". Check you write permissions." -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "default" - -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Variations" - -#: view/theme/frio/config.php:123 -msgid "Custom" -msgstr "Custom" - -#: view/theme/frio/config.php:135 -msgid "Note" -msgstr "Note" - -#: view/theme/frio/config.php:135 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Check image permissions that everyone is allowed to see the image" - -#: view/theme/frio/config.php:141 -msgid "Select color scheme" -msgstr "Select color scheme" - -#: view/theme/frio/config.php:142 -msgid "Copy or paste schemestring" -msgstr "Copy or paste theme string" - -#: view/theme/frio/config.php:142 +#: src/Model/Storage/Filesystem.php:148 +#, php-format msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "You can copy this string to share your theme with others. Pasting here applies the theme string" +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "Filesystem storage failed to save data to \"%s\". Check your write permissions" -#: view/theme/frio/config.php:143 -msgid "Navigation bar background color" -msgstr "Navigation bar background color:" +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Storage base path" -#: view/theme/frio/config.php:144 -msgid "Navigation bar icon color " -msgstr "Navigation bar icon color:" +#: src/Model/Storage/Filesystem.php:178 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree" -#: view/theme/frio/config.php:145 -msgid "Link color" -msgstr "Link color:" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Enter a valid existing folder" -#: view/theme/frio/config.php:146 -msgid "Set the background color" -msgstr "Background color:" +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "activity" -#: view/theme/frio/config.php:147 -msgid "Content background opacity" -msgstr "Content background opacity" +#: src/Model/Item.php:3339 +msgid "post" +msgstr "post" -#: view/theme/frio/config.php:148 -msgid "Set the background image" -msgstr "Background image:" +#: src/Model/Item.php:3462 +#, php-format +msgid "Content warning: %s" +msgstr "Content warning: %s" -#: view/theme/frio/config.php:149 -msgid "Background image style" -msgstr "Background image style" +#: src/Model/Item.php:3539 +msgid "bytes" +msgstr "bytes" -#: view/theme/frio/config.php:154 -msgid "Login page background image" -msgstr "Login page background image" +#: src/Model/Item.php:3584 +msgid "View on separate page" +msgstr "View on separate page" -#: view/theme/frio/config.php:158 -msgid "Login page background color" -msgstr "Login page background color" +#: src/Model/Item.php:3585 +msgid "view on separate page" +msgstr "view on separate page" -#: view/theme/frio/config.php:158 -msgid "Leave background image and color empty for theme defaults" -msgstr "Leave background image and color empty for theme defaults" +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "Link to source" -#: view/theme/frio/php/default.php:84 view/theme/frio/php/standard.php:38 -msgid "Skip to main content" +#: src/Model/Mail.php:128 src/Model/Mail.php:263 +msgid "[no subject]" +msgstr "[no subject]" + +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" +msgstr "Unfollow" + +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Drop contact" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Organization" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "News" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Forum" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Connect URL missing." + +#: src/Model/Contact.php:2307 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." + +#: src/Model/Contact.php:2348 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "This site is not configured to allow communications with other networks." + +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No compatible communication protocols or feeds were discovered." + +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "The profile address specified does not provide adequate information." + +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "An author or name was not found." + +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "No browser URL could be matched to this address." + +#: src/Model/Contact.php:2371 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Unable to match @-style identity address with a known protocol or email contact." + +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: in front of address to force email check." + +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "The profile address specified belongs to a network which has been disabled on this site." + +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Limited profile: This person will be unable to receive direct/private messages from you." + +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "Unable to retrieve contact information." + +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Starts:" + +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Finishes:" + +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "All-day" + +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Sep" + +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "No events to display" + +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Edit event" + +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Duplicate event" + +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Delete event" + +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D g:i A" + +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "g:i A" + +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Show map" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Hide map" + +#: src/Model/Event.php:1042 +#, php-format +msgid "%s's birthday" +msgstr "%s's birthday" + +#: src/Model/Event.php:1043 +#, php-format +msgid "Happy Birthday %s" +msgstr "Happy Birthday, %s!" + +#: src/Model/User.php:374 +msgid "Login failed" +msgstr "Login failed" + +#: src/Model/User.php:406 +msgid "Not enough information to authenticate" +msgstr "Not enough information to authenticate" + +#: src/Model/User.php:500 +msgid "Password can't be empty" +msgstr "Password can't be empty" + +#: src/Model/User.php:519 +msgid "Empty passwords are not allowed." +msgstr "Empty passwords are not allowed." + +#: src/Model/User.php:523 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "The new password has been exposed in a public data dump; please choose another." + +#: src/Model/User.php:529 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "The password can't contain accentuated letters, white spaces or colons (:)" + +#: src/Model/User.php:627 +msgid "Passwords do not match. Password unchanged." +msgstr "Passwords do not match. Password unchanged." + +#: src/Model/User.php:634 +msgid "An invitation is required." +msgstr "An invitation is required." + +#: src/Model/User.php:638 +msgid "Invitation could not be verified." +msgstr "Invitation could not be verified." + +#: src/Model/User.php:646 +msgid "Invalid OpenID url" +msgstr "Invalid OpenID URL" + +#: src/Model/User.php:665 +msgid "Please enter the required information." +msgstr "Please enter the required information." + +#: src/Model/User.php:679 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values." + +#: src/Model/User.php:686 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "Username should be at least %s character." +msgstr[1] "Username should be at least %s characters." + +#: src/Model/User.php:690 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "Username should be at most %s character." +msgstr[1] "Username should be at most %s characters." + +#: src/Model/User.php:698 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "That doesn't appear to be your full (i.e first and last) name." + +#: src/Model/User.php:703 +msgid "Your email domain is not among those allowed on this site." +msgstr "Your email domain is not allowed on this site." + +#: src/Model/User.php:707 +msgid "Not a valid email address." +msgstr "Not a valid email address." + +#: src/Model/User.php:710 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "The nickname was blocked from registration by the nodes admin." + +#: src/Model/User.php:714 src/Model/User.php:722 +msgid "Cannot use that email." +msgstr "Cannot use that email." + +#: src/Model/User.php:729 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Your nickname can only contain a-z, 0-9 and _." + +#: src/Model/User.php:737 src/Model/User.php:794 +msgid "Nickname is already registered. Please choose another." +msgstr "Nickname is already registered. Please choose another." + +#: src/Model/User.php:747 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SERIOUS ERROR: Generation of security keys failed." + +#: src/Model/User.php:781 src/Model/User.php:785 +msgid "An error occurred during registration. Please try again." +msgstr "An error occurred during registration. Please try again." + +#: src/Model/User.php:808 +msgid "An error occurred creating your default profile. Please try again." +msgstr "An error occurred creating your default profile. Please try again." + +#: src/Model/User.php:815 +msgid "An error occurred creating your self contact. Please try again." +msgstr "An error occurred creating your self contact. Please try again." + +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Friends" + +#: src/Model/User.php:824 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "An error occurred while creating your default contact group. Please try again." + +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Top Banner" - -#: view/theme/frio/php/Image.php:40 +#: src/Model/User.php:1015 +#, php-format msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Resize image to the width of the screen and show background color below on long pages." +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Full screen" +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Registration details for %s" -#: view/theme/frio/php/Image.php:41 +#: src/Model/User.php:1068 +#, php-format msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Resize image to fill entire screen, clipping either the right or the bottom." +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%4$s\n\t\t\tPassword:\t\t%5$s\n\t\t" -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Single row mosaic" +#: src/Model/User.php:1087 +#, php-format +msgid "Registration at %s" +msgstr "Registration at %s" -#: view/theme/frio/php/Image.php:42 +#: src/Model/User.php:1111 +#, php-format msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Resize image to repeat it on a single row, either vertical or horizontal." +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\tThank you for registering at %2$s. Your account has been created.\n\t\t\t" -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mosaic" +#: src/Model/User.php:1119 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t\t%1$s\n\t\t\tPassword:\t\t%5$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n\n\t\t\tThank you and welcome to %2$s." -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Repeat image to fill the screen." +#: src/Model/Group.php:92 +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 "A deleted group with this name has been 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." -#: view/theme/frio/theme.php:237 -msgid "Guest" -msgstr "Guest" +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Default privacy group for new contacts" -#: view/theme/frio/theme.php:242 -msgid "Visitor" -msgstr "Visitor" +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Everybody" -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Alignment" +#: src/Model/Group.php:502 +msgid "edit" +msgstr "edit" -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Left" +#: src/Model/Group.php:527 +msgid "add" +msgstr "add" -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Center" +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Edit group" -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Color scheme" +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Create new group" -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Posts font size" +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Edit groups" -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Text areas font size" +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Change profile photo" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Comma-separated list of helper forums" +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Atom feed" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "don't show" +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "g A l F d" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "show" +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "F d" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Set style" +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[today]" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Community pages" +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Birthday reminders" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:126 -msgid "Community Profiles" -msgstr "Community profiles" +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Birthdays this week:" -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Help or @NewHere ?" +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[No description]" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:348 -msgid "Connect Services" -msgstr "Connect services" +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Event reminders" -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Find friends" +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "Upcoming events the next 7 days:" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:156 -msgid "Last users" -msgstr "Last users" +#: src/Model/Profile.php:827 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s welcomes %2$s" -#: view/theme/vier/theme.php:263 -msgid "Quick Start" -msgstr "Quick start" +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Add new contact" + +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Enter address or web location" + +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Example: jo@example.com, http://example.com/jo" + +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Connect" + +#: src/Content/Widget.php:71 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation available" +msgstr[1] "%d invitations available" + +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "Relationships" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "Protocols" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "All protocols" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Saved Folders" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Everything" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Categories" + +#: src/Content/Widget.php:445 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact in common" +msgstr[1] "%d contacts in common" + +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Archives" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "Frequently" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "Hourly" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "Twice daily" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "Daily" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "Weekly" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "Monthly" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "diaspora* connector" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "GNU Social Connector" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:149 +#, php-format +msgid "%s (via %s)" +msgstr "" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "General" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Photo location" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Trending tags" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Show a community page widget with a list of the most popular tags in recent public posts." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Post composition" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Auto-mention forums" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Explicit Mentions" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Add explicit mentions to comment box for manual control over who gets mentioned in replies." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Post/Comment tools" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Post categories" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Add categories to your posts" + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Advanced profiles" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "List forums" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Show visitors of public community forums at the advanced profile page" + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Tag cloud" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Provide a personal tag cloud on your profile page" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Display membership date" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Display membership date in profile" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Nothing new here" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Clear notifications" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, content" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "End this session" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Sign in" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Personal notes" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "My personal notes" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Home" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Home page" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Create account" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Help and documentation" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Apps" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Addon applications, utilities, games" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr "Search site content" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Full text" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Tags" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Community" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "Conversations on this and other servers" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Directory" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "People directory" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "Information about this Friendica instance" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "Terms of Service of this Friendica instance" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Introductions" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Friend requests" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "See all notifications" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Mark notifications as seen" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Inbox" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Outbox" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Manage other pages" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Site setup and configuration" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Navigation" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Site map" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Remove term" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Saved searches" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Export" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Export calendar as ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Export calendar as csv" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Trending tags (last %d hour)" +msgstr[1] "Trending tags (last %d hours)" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "More trending tags" + +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "No contacts" + +#: src/Content/Widget/ContactBlock.php:104 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "View contacts" + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "Later posts" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "Earlier posts" + +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Embedding disabled" + +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Embedded content" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "prev" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "last" + +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "Loading more entries..." + +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "The end" + +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "Reveal/hide" + +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Image/Photo" + +#: src/Content/Text/BBCode.php:1046 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 wrote:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Encrypted content" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Invalid source protocol" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Invalid link protocol" + +#: src/BaseModule.php:150 +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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours." diff --git a/view/lang/en-us/strings.php b/view/lang/en-us/strings.php index 32b876435c..3bca900e26 100644 --- a/view/lang/en-us/strings.php +++ b/view/lang/en-us/strings.php @@ -6,16 +6,97 @@ function string_plural_select_en_us($n){ return ($n != 1);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "Daily posting limit of %d post reached. The post was rejected.", - 1 => "Daily posting limit of %d posts reached. This post was rejected.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "Weekly posting limit of %d post reached. The post was rejected.", - 1 => "Weekly posting limit of %d posts reached. This post was rejected.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected."; -$a->strings["Profile Photos"] = "Profile photos"; +$a->strings["default"] = "default"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "Submit"; +$a->strings["Theme settings"] = "Theme settings"; +$a->strings["Variations"] = "Variations"; +$a->strings["Alignment"] = "Alignment"; +$a->strings["Left"] = "Left"; +$a->strings["Center"] = "Center"; +$a->strings["Color scheme"] = "Color scheme"; +$a->strings["Posts font size"] = "Posts font size"; +$a->strings["Textareas font size"] = "Text areas font size"; +$a->strings["Comma separated list of helper forums"] = "Comma-separated list of helper forums"; +$a->strings["don't show"] = "don't show"; +$a->strings["show"] = "show"; +$a->strings["Set style"] = "Set style"; +$a->strings["Community Pages"] = "Community pages"; +$a->strings["Community Profiles"] = "Community profiles"; +$a->strings["Help or @NewHere ?"] = "Help or @NewHere ?"; +$a->strings["Connect Services"] = "Connect services"; +$a->strings["Find Friends"] = "Find friends"; +$a->strings["Last users"] = "Last users"; +$a->strings["Find People"] = "Find people"; +$a->strings["Enter name or interest"] = "Enter name or interest"; +$a->strings["Connect/Follow"] = "Connect/Follow"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; +$a->strings["Find"] = "Find"; +$a->strings["Friend Suggestions"] = "Friend suggestions"; +$a->strings["Similar Interests"] = "Similar interests"; +$a->strings["Random Profile"] = "Random profile"; +$a->strings["Invite Friends"] = "Invite friends"; +$a->strings["Global Directory"] = "Global directory"; +$a->strings["Local Directory"] = "Local directory"; +$a->strings["Forums"] = "Forums"; +$a->strings["External link to forum"] = "External link to forum"; +$a->strings["show more"] = "show more"; +$a->strings["Quick Start"] = "Quick start"; +$a->strings["Help"] = "Help"; +$a->strings["Custom"] = "Custom"; +$a->strings["Note"] = "Note"; +$a->strings["Check image permissions if all users are allowed to see the image"] = "Check image permissions that everyone is allowed to see the image"; +$a->strings["Select color scheme"] = "Select color scheme"; +$a->strings["Copy or paste schemestring"] = "Copy or paste theme string"; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "You can copy this string to share your theme with others. Pasting here applies the theme string"; +$a->strings["Navigation bar background color"] = "Navigation bar background color:"; +$a->strings["Navigation bar icon color "] = "Navigation bar icon color:"; +$a->strings["Link color"] = "Link color:"; +$a->strings["Set the background color"] = "Background color:"; +$a->strings["Content background opacity"] = "Content background opacity"; +$a->strings["Set the background image"] = "Background image:"; +$a->strings["Background image style"] = "Background image style"; +$a->strings["Login page background image"] = "Login page background image"; +$a->strings["Login page background color"] = "Login page background color"; +$a->strings["Leave background image and color empty for theme defaults"] = "Leave background image and color empty for theme defaults"; +$a->strings["Guest"] = "Guest"; +$a->strings["Visitor"] = "Visitor"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "My posts and conversations"; +$a->strings["Profile"] = "Profile"; +$a->strings["Your profile page"] = "My profile page"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "My photos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "My videos"; +$a->strings["Events"] = "Events"; +$a->strings["Your events"] = "My events"; +$a->strings["Network"] = "Network"; +$a->strings["Conversations from your friends"] = "My friends' conversations"; +$a->strings["Events and Calendar"] = "Events and calendar"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Private messages"; +$a->strings["Settings"] = "Settings"; +$a->strings["Account settings"] = "Account settings"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; +$a->strings["Follow Thread"] = "Follow thread"; +$a->strings["Skip to main content"] = ""; +$a->strings["Top Banner"] = "Top Banner"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Resize image to the width of the screen and show background color below on long pages."; +$a->strings["Full screen"] = "Full screen"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Resize image to fill entire screen, clipping either the right or the bottom."; +$a->strings["Single row mosaic"] = "Single row mosaic"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Resize image to repeat it on a single row, either vertical or horizontal."; +$a->strings["Mosaic"] = "Mosaic"; +$a->strings["Repeat image to fill the screen."] = "Repeat image to fill the screen."; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Updating author-id and owner-id in item and thread table. "; +$a->strings["%s: Updating post-type."] = "%s: Updating post-type."; $a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s"; $a->strings["event"] = "event"; $a->strings["status"] = "status"; @@ -31,7 +112,6 @@ $a->strings["View in context"] = "View in context"; $a->strings["Please wait"] = "Please wait"; $a->strings["remove"] = "Remove"; $a->strings["Delete Selected Items"] = "Delete selected items"; -$a->strings["Follow Thread"] = "Follow thread"; $a->strings["View Status"] = "View status"; $a->strings["View Profile"] = "View profile"; $a->strings["View Photos"] = "View photos"; @@ -41,7 +121,6 @@ $a->strings["Send PM"] = "Send PM"; $a->strings["Block"] = "Block"; $a->strings["Ignore"] = "Ignore"; $a->strings["Poke"] = "Poke"; -$a->strings["Connect/Follow"] = "Connect/Follow"; $a->strings["%s likes this."] = "%s likes this."; $a->strings["%s doesn't like this."] = "%s doesn't like this."; $a->strings["%s attends."] = "%s attends."; @@ -89,7 +168,7 @@ $a->strings["clear location"] = "clear location"; $a->strings["Set title"] = "Set title"; $a->strings["Categories (comma-separated list)"] = "Categories (comma-separated list)"; $a->strings["Permission settings"] = "Permission settings"; -$a->strings["permissions"] = "permissions"; +$a->strings["permissions"] = "Permissions"; $a->strings["Public post"] = "Public post"; $a->strings["Preview"] = "Preview"; $a->strings["Cancel"] = "Cancel"; @@ -160,34 +239,34 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Y $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request."; -$a->strings["Item not found."] = "Item not found."; -$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; -$a->strings["Yes"] = "Yes"; -$a->strings["Permission denied."] = "Permission denied."; -$a->strings["Authorize application connection"] = "Authorize application connection"; -$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; -$a->strings["Please login to continue."] = "Please login to continue."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?"; -$a->strings["No"] = "No"; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "Daily posting limit of %d post reached. The post was rejected.", + 1 => "Daily posting limit of %d posts reached. This post was rejected.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "Weekly posting limit of %d post reached. The post was rejected.", + 1 => "Weekly posting limit of %d posts reached. This post was rejected.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected."; +$a->strings["Profile Photos"] = "Profile photos"; $a->strings["Access denied."] = "Access denied."; -$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; -$a->strings["Events"] = "Events"; -$a->strings["View"] = "View"; -$a->strings["Previous"] = "Previous"; -$a->strings["Next"] = "Next"; -$a->strings["today"] = "today"; -$a->strings["month"] = "month"; -$a->strings["week"] = "week"; -$a->strings["day"] = "day"; -$a->strings["list"] = "List"; -$a->strings["User not found"] = "User not found"; -$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; -$a->strings["No exportable data found"] = "No exportable data found"; -$a->strings["calendar"] = "calendar"; -$a->strings["No contacts in common."] = "No contacts in common."; -$a->strings["Common Friends"] = "Common friends"; -$a->strings["Profile not found."] = "Profile not found."; +$a->strings["Bad Request."] = ""; $a->strings["Contact not found."] = "Contact not found."; +$a->strings["Permission denied."] = "Permission denied."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; +$a->strings["No recipient selected."] = "No recipient selected."; +$a->strings["Unable to check your home location."] = "Unable to check your home location."; +$a->strings["Message could not be sent."] = "Message could not be sent."; +$a->strings["Message collection failure."] = "Message collection failure."; +$a->strings["No recipient."] = "No recipient."; +$a->strings["Please enter a link URL:"] = "Please enter a link URL:"; +$a->strings["Send Private Message"] = "Send private message"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; +$a->strings["To:"] = "To:"; +$a->strings["Subject:"] = "Subject:"; +$a->strings["Your message:"] = "Your message:"; +$a->strings["Insert web link"] = "Insert web link"; +$a->strings["Profile not found."] = "Profile not found."; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved."; $a->strings["Response from remote site was not understood."] = "Response from remote site was not understood."; $a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: "; @@ -204,265 +283,21 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system."; $a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system"; $a->strings["[Name Withheld]"] = "[Name Withheld]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; -$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; -$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d required parameter was not found at the given location", - 1 => "%d required parameters were not found at the given location", -]; -$a->strings["Introduction complete."] = "Introduction complete."; -$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error."; -$a->strings["Profile unavailable."] = "Profile unavailable."; -$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today."; -$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; -$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; -$a->strings["Invalid profile URL."] = "Invalid profile URL."; -$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; -$a->strings["Blocked domain"] = "Blocked domain"; -$a->strings["Failed to update contact record."] = "Failed to update contact record."; -$a->strings["Your introduction has been sent."] = "Your introduction has been sent."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; -$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; -$a->strings["Confirm"] = "Confirm"; -$a->strings["Hide this contact"] = "Hide this contact"; -$a->strings["Welcome home %s."] = "Welcome home %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s."; $a->strings["Public access denied."] = "Public access denied."; -$a->strings["Friend/Connection Request"] = "Friend/Connection request"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = ""; -$a->strings["Your Webfinger address or profile URL:"] = "Your WebFinger address or profile URL:"; -$a->strings["Please answer the following:"] = "Please answer the following:"; -$a->strings["Submit Request"] = "Submit request"; -$a->strings["%s knows you"] = ""; -$a->strings["Add a personal note:"] = "Add a personal note:"; -$a->strings["The requested item doesn't exist or has been deleted."] = "The requested item doesn't exist or has been deleted."; -$a->strings["The feed for this item is unavailable."] = "The feed for this item is unavailable."; -$a->strings["Item not found"] = "Item not found"; -$a->strings["Edit post"] = "Edit post"; -$a->strings["Save"] = "Save"; -$a->strings["Insert web link"] = "Insert web link"; -$a->strings["web link"] = "web link"; -$a->strings["Insert video link"] = "Insert video link"; -$a->strings["video link"] = "video link"; -$a->strings["Insert audio link"] = "Insert audio link"; -$a->strings["audio link"] = "audio link"; -$a->strings["CC: email addresses"] = "CC: email addresses"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; -$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; -$a->strings["Event title and start time are required."] = "Event title and starting time are required."; -$a->strings["Create New Event"] = "Create new event"; -$a->strings["Event details"] = "Event details"; -$a->strings["Starting date and Title are required."] = "Starting date and title are required."; -$a->strings["Event Starts:"] = "Event starts:"; -$a->strings["Required"] = "Required"; -$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; -$a->strings["Event Finishes:"] = "Event finishes:"; -$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; -$a->strings["Description:"] = "Description:"; -$a->strings["Location:"] = "Location:"; -$a->strings["Title:"] = "Title:"; -$a->strings["Share this event"] = "Share this event"; -$a->strings["Submit"] = "Submit"; -$a->strings["Basic"] = "Basic"; -$a->strings["Advanced"] = "Advanced"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Failed to remove event"] = "Failed to remove event"; -$a->strings["Event removed"] = "Event removed"; -$a->strings["Photos"] = "Photos"; -$a->strings["Contact Photos"] = "Contact photos"; -$a->strings["Upload"] = "Upload"; -$a->strings["Files"] = "Files"; -$a->strings["The contact could not be added."] = "Contact could not be added."; -$a->strings["You already added this contact."] = "You already added this contact."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "diaspora* support isn't enabled. Contact can't be added."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; -$a->strings["Your Identity Address:"] = "My identity address:"; -$a->strings["Profile URL"] = "Profile URL:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Status Messages and Posts"] = "Status Messages and Posts"; -$a->strings["Unable to locate original post."] = "Unable to locate original post."; -$a->strings["Empty post discarded."] = "Empty post discarded."; -$a->strings["Post updated."] = ""; -$a->strings["Item wasn't stored."] = ""; -$a->strings["Item couldn't be fetched."] = ""; -$a->strings["Post published."] = ""; -$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; -$a->strings["Visible to:"] = "Visible to:"; -$a->strings["Followers"] = "Followers"; -$a->strings["Mutuals"] = "Mutuals"; -$a->strings["No valid account found."] = "No valid account found."; -$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was received at \"%2\$s\" to reset your account password\n\t\tTo confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser's address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided; ignore or delete this email, as the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Password reset requested at %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed."; -$a->strings["Request has expired, please make a new one."] = "Request has expired, please make a new one."; -$a->strings["Forgot your Password?"] = "Reset My Password"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email."; -$a->strings["Nickname or Email: "] = "Nickname or email: "; -$a->strings["Reset"] = "Reset"; -$a->strings["Password Reset"] = "Forgotten password?"; -$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested."; -$a->strings["Your new password is"] = "Your new password is"; -$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then"; -$a->strings["click here to login"] = "click here to login"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Your password may be changed from the Settings page after successful login."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; +$a->strings["No videos selected"] = "No videos selected"; +$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; +$a->strings["View Video"] = "View video"; +$a->strings["View Album"] = "View album"; +$a->strings["Recent Videos"] = "Recent videos"; +$a->strings["Upload New Videos"] = "Upload new videos"; $a->strings["No keywords to match. Please add keywords to your profile."] = ""; -$a->strings["Connect"] = "Connect"; $a->strings["first"] = "first"; $a->strings["next"] = "next"; $a->strings["No matches"] = "No matches"; $a->strings["Profile Match"] = "Profile Match"; -$a->strings["New Message"] = "New Message"; -$a->strings["No recipient selected."] = "No recipient selected."; -$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; -$a->strings["Message could not be sent."] = "Message could not be sent."; -$a->strings["Message collection failure."] = "Message collection failure."; -$a->strings["Message sent."] = "Message sent."; -$a->strings["Discard"] = "Discard"; -$a->strings["Messages"] = "Messages"; -$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; -$a->strings["Conversation not found."] = "Conversation not found."; -$a->strings["Message deleted."] = "Message deleted."; -$a->strings["Conversation removed."] = "Conversation removed."; -$a->strings["Please enter a link URL:"] = "Please enter a link URL:"; -$a->strings["Send Private Message"] = "Send private message"; -$a->strings["To:"] = "To:"; -$a->strings["Subject:"] = "Subject:"; -$a->strings["Your message:"] = "Your message:"; -$a->strings["No messages."] = "No messages."; -$a->strings["Message not available."] = "Message not available."; -$a->strings["Delete message"] = "Delete message"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "Delete conversation"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No secure communications available. You may be able to respond from the sender's profile page."; -$a->strings["Send Reply"] = "Send reply"; -$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; -$a->strings["You and %s"] = "Me and %s"; -$a->strings["%s and You"] = "%s and me"; -$a->strings["%d message"] = [ - 0 => "%d message", - 1 => "%d messages", -]; -$a->strings["No such group"] = "No such group"; -$a->strings["Group is empty"] = "Group is empty"; -$a->strings["Group: %s"] = "Group: %s"; -$a->strings["Invalid contact."] = "Invalid contact."; -$a->strings["Latest Activity"] = "Latest activity"; -$a->strings["Sort by latest activity"] = "Sort by latest activity"; -$a->strings["Latest Posts"] = "Latest posts"; -$a->strings["Sort by post received date"] = "Sort by post received date"; -$a->strings["Personal"] = "Personal"; -$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; -$a->strings["New"] = "New"; -$a->strings["Activity Stream - by date"] = "Activity Stream - by date"; -$a->strings["Shared Links"] = "Shared links"; -$a->strings["Interesting Links"] = "Interesting links"; -$a->strings["Starred"] = "Starred"; -$a->strings["Favourite Posts"] = "My favorite posts"; -$a->strings["Personal Notes"] = "Personal notes"; -$a->strings["Post successful."] = "Post successful."; -$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; -$a->strings["No contact provided."] = "No contact provided."; -$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; -$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact."; -$a->strings["Done"] = "Done"; -$a->strings["success"] = "success"; -$a->strings["failed"] = "failed"; -$a->strings["ignored"] = "Ignored"; -$a->strings["Keep this window open until done."] = "Keep this window open until done."; -$a->strings["Photo Albums"] = "Photo Albums"; -$a->strings["Recent Photos"] = "Recent photos"; -$a->strings["Upload New Photos"] = "Upload new photos"; -$a->strings["everybody"] = "everybody"; -$a->strings["Contact information unavailable"] = "Contact information unavailable"; -$a->strings["Album not found."] = "Album not found."; -$a->strings["Album successfully deleted"] = "Album successfully deleted"; -$a->strings["Album was empty."] = "Album was empty."; -$a->strings["a photo"] = "a photo"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; -$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; -$a->strings["Image upload didn't complete, please try again"] = "Image upload didn't complete. Please try again."; -$a->strings["Image file is missing"] = "Image file is missing"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server can't accept new file uploads at this time. Please contact your administrator."; -$a->strings["Image file is empty."] = "Image file is empty."; -$a->strings["Unable to process image."] = "Unable to process image."; -$a->strings["Image upload failed."] = "Image upload failed."; -$a->strings["No photos selected"] = "No photos selected"; -$a->strings["Access to this item is restricted."] = "Access to this item is restricted."; -$a->strings["Upload Photos"] = "Upload photos"; -$a->strings["New album name: "] = "New album name: "; -$a->strings["or select existing album:"] = "or select existing album:"; -$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; -$a->strings["Show to Groups"] = "Show to groups"; -$a->strings["Show to Contacts"] = "Show to contacts"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; -$a->strings["Delete Album"] = "Delete album"; -$a->strings["Edit Album"] = "Edit album"; -$a->strings["Drop Album"] = "Drop album"; -$a->strings["Show Newest First"] = "Show newest first"; -$a->strings["Show Oldest First"] = "Show oldest first"; -$a->strings["View Photo"] = "View photo"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted."; -$a->strings["Photo not available"] = "Photo not available"; -$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; -$a->strings["Delete Photo"] = "Delete photo"; -$a->strings["View photo"] = "View photo"; -$a->strings["Edit photo"] = "Edit photo"; -$a->strings["Delete photo"] = "Delete photo"; -$a->strings["Use as profile photo"] = "Use as profile photo"; -$a->strings["Private Photo"] = "Private photo"; -$a->strings["View Full Size"] = "View full size"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Select tags to remove]"] = "[Select tags to remove]"; -$a->strings["New album name"] = "New album name"; -$a->strings["Caption"] = "Caption"; -$a->strings["Add a Tag"] = "Add Tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Do not rotate"; -$a->strings["Rotate CW (right)"] = "Rotate right (CW)"; -$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)"; -$a->strings["I like this (toggle)"] = "I like this (toggle)"; -$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)"; -$a->strings["This is you"] = "This is me"; -$a->strings["Comment"] = "Comment"; -$a->strings["Map"] = "Map"; -$a->strings["View Album"] = "View album"; -$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend"; -$a->strings["{0} requested registration"] = "{0} requested registration"; -$a->strings["Poke/Prod"] = "Poke/Prod"; -$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; -$a->strings["Recipient"] = "Recipient:"; -$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; -$a->strings["Make this post private"] = "Make this post private"; -$a->strings["User deleted their account"] = "User deleted their account"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups."; -$a->strings["The user id is %d"] = "The user id is %d"; -$a->strings["Remove My Account"] = "Remove My Account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; -$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; -$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; -$a->strings["Error"] = [ - 0 => "Error", - 1 => "Errors", -]; $a->strings["Missing some important data!"] = "Missing some important data!"; $a->strings["Update"] = "Update"; $a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided."; -$a->strings["Email settings updated."] = "Email settings updated."; -$a->strings["Features updated"] = "Features updated"; $a->strings["Contact CSV file upload error"] = "Contact CSV file upload error"; $a->strings["Importing Contacts done"] = "Importing contacts done"; $a->strings["Relocate message has been send to your contacts"] = "Relocate message has been sent to your contacts"; @@ -477,7 +312,7 @@ $a->strings["Invalid email."] = "Invalid email."; $a->strings["Cannot change to that email."] = "Cannot change to that email."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Private forum has no privacy permissions. Using default privacy group."; $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Private forum has no privacy permissions and no default privacy group."; -$a->strings["Settings updated."] = "Settings updated."; +$a->strings["Settings were not updated."] = ""; $a->strings["Add application"] = "Add application"; $a->strings["Save Settings"] = "Save settings"; $a->strings["Name"] = "Name:"; @@ -635,15 +470,158 @@ $a->strings["Upload File"] = "Upload file"; $a->strings["Relocate"] = "Recent relocation"; $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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:"; $a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts"; -$a->strings["Contact suggestion successfully ignored."] = "Contact suggestion successfully ignored."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; -$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?"; -$a->strings["Ignore/Hide"] = "Ignore/Hide"; -$a->strings["Friend Suggestions"] = "Friend suggestions"; -$a->strings["Tag(s) removed"] = "Tag(s) removed"; +$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend"; +$a->strings["{0} requested registration"] = "{0} requested registration"; +$a->strings["No contacts in common."] = "No contacts in common."; +$a->strings["Common Friends"] = "Common friends"; +$a->strings["No items found"] = ""; +$a->strings["No such group"] = "No such group"; +$a->strings["Group is empty"] = "Group is empty"; +$a->strings["Group: %s"] = "Group: %s"; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Latest Activity"] = "Latest activity"; +$a->strings["Sort by latest activity"] = "Sort by latest activity"; +$a->strings["Latest Posts"] = "Latest posts"; +$a->strings["Sort by post received date"] = "Sort by post received date"; +$a->strings["Personal"] = "Personal"; +$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me"; +$a->strings["Starred"] = "Starred"; +$a->strings["Favourite Posts"] = "My favorite posts"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts"; +$a->strings["Error"] = [ + 0 => "Error", + 1 => "Errors", +]; +$a->strings["Done"] = "Done"; +$a->strings["Keep this window open until done."] = "Keep this window open until done."; +$a->strings["You aren't following this contact."] = "You aren't following this contact."; +$a->strings["Unfollowing is currently not supported by your network."] = "Unfollowing is currently not supported by your network."; +$a->strings["Disconnect/Unfollow"] = "Disconnect/Unfollow"; +$a->strings["Your Identity Address:"] = "My identity address:"; +$a->strings["Submit Request"] = "Submit request"; +$a->strings["Profile URL"] = "Profile URL:"; +$a->strings["Status Messages and Posts"] = "Status Messages and Posts"; +$a->strings["New Message"] = "New Message"; +$a->strings["Unable to locate contact information."] = "Unable to locate contact information."; +$a->strings["Discard"] = "Discard"; +$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?"; +$a->strings["Yes"] = "Yes"; +$a->strings["Conversation not found."] = "Conversation not found."; +$a->strings["Message was not deleted."] = ""; +$a->strings["Conversation was not removed."] = ""; +$a->strings["No messages."] = "No messages."; +$a->strings["Message not available."] = "Message not available."; +$a->strings["Delete message"] = "Delete message"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "Delete conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No secure communications available. You may be able to respond from the sender's profile page."; +$a->strings["Send Reply"] = "Send reply"; +$a->strings["Unknown sender - %s"] = "Unknown sender - %s"; +$a->strings["You and %s"] = "Me and %s"; +$a->strings["%s and You"] = "%s and me"; +$a->strings["%d message"] = [ + 0 => "%d message", + 1 => "%d messages", +]; +$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts"; +$a->strings["No contact provided."] = "No contact provided."; +$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact."; +$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact."; +$a->strings["success"] = "success"; +$a->strings["failed"] = "failed"; +$a->strings["ignored"] = "Ignored"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s"; +$a->strings["User deleted their account"] = "User deleted their account"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups."; +$a->strings["The user id is %d"] = "The user id is %d"; +$a->strings["Remove My Account"] = "Remove My Account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable."; +$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:"; $a->strings["Remove Item Tag"] = "Remove Item tag"; $a->strings["Select a tag to remove: "] = "Select a tag to remove: "; $a->strings["Remove"] = "Remove"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours."; +$a->strings["The requested item doesn't exist or has been deleted."] = "The requested item doesn't exist or has been deleted."; +$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted."; +$a->strings["The feed for this item is unavailable."] = "The feed for this item is unavailable."; +$a->strings["Invalid request."] = "Invalid request."; +$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s"; +$a->strings["Unable to process image."] = "Unable to process image."; +$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["Image upload failed."] = "Image upload failed."; +$a->strings["No valid account found."] = "No valid account found."; +$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was received at \"%2\$s\" to reset your account password\n\t\tTo confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser's address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided; ignore or delete this email, as the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Password reset requested at %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed."; +$a->strings["Request has expired, please make a new one."] = "Request has expired, please make a new one."; +$a->strings["Forgot your Password?"] = "Reset My Password"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email."; +$a->strings["Nickname or Email: "] = "Nickname or email: "; +$a->strings["Reset"] = "Reset"; +$a->strings["Password Reset"] = "Forgotten password?"; +$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested."; +$a->strings["Your new password is"] = "Your new password is"; +$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then"; +$a->strings["click here to login"] = "click here to login"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Your password may be changed from the Settings page after successful login."; +$a->strings["Your password has been reset."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s"; +$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name."; +$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d required parameter was not found at the given location", + 1 => "%d required parameters were not found at the given location", +]; +$a->strings["Introduction complete."] = "Introduction complete."; +$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error."; +$a->strings["Profile unavailable."] = "Profile unavailable."; +$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today."; +$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here."; +$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s."; +$a->strings["Invalid profile URL."] = "Invalid profile URL."; +$a->strings["Disallowed profile URL."] = "Disallowed profile URL."; +$a->strings["Blocked domain"] = "Blocked domain"; +$a->strings["Failed to update contact record."] = "Failed to update contact record."; +$a->strings["Your introduction has been sent."] = "Your introduction has been sent."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system."; +$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; +$a->strings["Confirm"] = "Confirm"; +$a->strings["Hide this contact"] = "Hide this contact"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s."; +$a->strings["Friend/Connection Request"] = "Friend/Connection request"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = ""; +$a->strings["Your Webfinger address or profile URL:"] = "Your WebFinger address or profile URL:"; +$a->strings["Please answer the following:"] = "Please answer the following:"; +$a->strings["%s knows you"] = ""; +$a->strings["Add a personal note:"] = "Add a personal note:"; +$a->strings["Authorize application connection"] = "Authorize application connection"; +$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:"; +$a->strings["Please login to continue."] = "Please login to continue."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?"; +$a->strings["No"] = "No"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, maybe your upload is bigger than the PHP configuration allows"; +$a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?"; +$a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; +$a->strings["File upload failed."] = "File upload failed."; +$a->strings["Unable to locate original post."] = "Unable to locate original post."; +$a->strings["Empty post discarded."] = "Empty post discarded."; +$a->strings["Post updated."] = ""; +$a->strings["Item wasn't stored."] = ""; +$a->strings["Item couldn't be fetched."] = ""; +$a->strings["Item not found."] = "Item not found."; +$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?"; $a->strings["User imports on closed servers can only be done by an administrator."] = "User imports on closed servers can only be done by an administrator."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."; $a->strings["Import"] = "Import profile"; @@ -653,236 +631,139 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."; $a->strings["Account file"] = "Account file:"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""; -$a->strings["You aren't following this contact."] = "You aren't following this contact."; -$a->strings["Unfollowing is currently not supported by your network."] = "Unfollowing is currently not supported by your network."; -$a->strings["Contact unfollowed"] = "Contact unfollowed"; -$a->strings["Disconnect/Unfollow"] = "Disconnect/Unfollow"; -$a->strings["No videos selected"] = "No videos selected"; -$a->strings["View Video"] = "View video"; -$a->strings["Recent Videos"] = "Recent videos"; -$a->strings["Upload New Videos"] = "Upload new videos"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed."; -$a->strings["Unable to check your home location."] = "Unable to check your home location."; -$a->strings["No recipient."] = "No recipient."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."; -$a->strings["Invalid request."] = "Invalid request."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Sorry, maybe your upload is bigger than the PHP configuration allows"; -$a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?"; -$a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s"; -$a->strings["File upload failed."] = "File upload failed."; -$a->strings["Wall Photos"] = "Wall photos"; +$a->strings["User not found."] = "User not found."; +$a->strings["View"] = "View"; +$a->strings["Previous"] = "Previous"; +$a->strings["Next"] = "Next"; +$a->strings["today"] = "today"; +$a->strings["month"] = "month"; +$a->strings["week"] = "week"; +$a->strings["day"] = "day"; +$a->strings["list"] = "List"; +$a->strings["User not found"] = "User not found"; +$a->strings["This calendar format is not supported"] = "This calendar format is not supported"; +$a->strings["No exportable data found"] = "No exportable data found"; +$a->strings["calendar"] = "calendar"; +$a->strings["Item not found"] = "Item not found"; +$a->strings["Edit post"] = "Edit post"; +$a->strings["Save"] = "Save"; +$a->strings["web link"] = "web link"; +$a->strings["Insert video link"] = "Insert video link"; +$a->strings["video link"] = "video link"; +$a->strings["Insert audio link"] = "Insert audio link"; +$a->strings["audio link"] = "audio link"; +$a->strings["CC: email addresses"] = "CC: email addresses"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Event cannot end before it has started."; +$a->strings["Event title and start time are required."] = "Event title and starting time are required."; +$a->strings["Create New Event"] = "Create new event"; +$a->strings["Event details"] = "Event details"; +$a->strings["Starting date and Title are required."] = "Starting date and title are required."; +$a->strings["Event Starts:"] = "Event starts:"; +$a->strings["Required"] = "Required"; +$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant"; +$a->strings["Event Finishes:"] = "Event finishes:"; +$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone"; +$a->strings["Description:"] = "Description:"; +$a->strings["Location:"] = "Location:"; +$a->strings["Title:"] = "Title:"; +$a->strings["Share this event"] = "Share this event"; +$a->strings["Basic"] = "Basic"; +$a->strings["Advanced"] = "Advanced"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Failed to remove event"] = "Failed to remove event"; +$a->strings["The contact could not be added."] = "Contact could not be added."; +$a->strings["You already added this contact."] = "You already added this contact."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "diaspora* support isn't enabled. Contact can't be added."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added."; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Contact Photos"] = "Contact photos"; +$a->strings["Upload"] = "Upload"; +$a->strings["Files"] = "Files"; +$a->strings["Personal Notes"] = "Personal notes"; +$a->strings["Photo Albums"] = "Photo Albums"; +$a->strings["Recent Photos"] = "Recent photos"; +$a->strings["Upload New Photos"] = "Upload new photos"; +$a->strings["everybody"] = "everybody"; +$a->strings["Contact information unavailable"] = "Contact information unavailable"; +$a->strings["Album not found."] = "Album not found."; +$a->strings["Album successfully deleted"] = "Album successfully deleted"; +$a->strings["Album was empty."] = "Album was empty."; +$a->strings["Failed to delete the photo."] = ""; +$a->strings["a photo"] = "a photo"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = "Image upload didn't complete. Please try again."; +$a->strings["Image file is missing"] = "Image file is missing"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server can't accept new file uploads at this time. Please contact your administrator."; +$a->strings["Image file is empty."] = "Image file is empty."; +$a->strings["No photos selected"] = "No photos selected"; +$a->strings["Upload Photos"] = "Upload photos"; +$a->strings["New album name: "] = "New album name: "; +$a->strings["or select existing album:"] = "or select existing album:"; +$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload"; +$a->strings["Show to Groups"] = "Show to groups"; +$a->strings["Show to Contacts"] = "Show to contacts"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?"; +$a->strings["Delete Album"] = "Delete album"; +$a->strings["Edit Album"] = "Edit album"; +$a->strings["Drop Album"] = "Drop album"; +$a->strings["Show Newest First"] = "Show newest first"; +$a->strings["Show Oldest First"] = "Show oldest first"; +$a->strings["View Photo"] = "View photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted."; +$a->strings["Photo not available"] = "Photo not available"; +$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?"; +$a->strings["Delete Photo"] = "Delete photo"; +$a->strings["View photo"] = "View photo"; +$a->strings["Edit photo"] = "Edit photo"; +$a->strings["Delete photo"] = "Delete photo"; +$a->strings["Use as profile photo"] = "Use as profile photo"; +$a->strings["Private Photo"] = "Private photo"; +$a->strings["View Full Size"] = "View full size"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Select tags to remove]"] = "[Select tags to remove]"; +$a->strings["New album name"] = "New album name"; +$a->strings["Caption"] = "Caption"; +$a->strings["Add a Tag"] = "Add Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Do not rotate"; +$a->strings["Rotate CW (right)"] = "Rotate right (CW)"; +$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)"; +$a->strings["I like this (toggle)"] = "I like this (toggle)"; +$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)"; +$a->strings["This is you"] = "This is me"; +$a->strings["Comment"] = "Comment"; +$a->strings["Map"] = "Map"; +$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. "; +$a->strings["Delete this item?"] = "Delete this item?"; +$a->strings["toggle mobile"] = "Toggle mobile"; $a->strings["Login failed."] = "Login failed."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "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:"] = "The error message was:"; $a->strings["Login failed. Please check your credentials."] = "Login failed. Please check your credentials."; $a->strings["Welcome %s"] = "Welcome %s"; $a->strings["Please upload a profile photo."] = "Please upload a profile photo."; -$a->strings["Welcome back %s"] = "Welcome back %s"; -$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. "; -$a->strings["Delete this item?"] = "Delete this item?"; -$a->strings["toggle mobile"] = "Toggle mobile"; $a->strings["Method not allowed for this module. Allowed method(s): %s"] = "Method not allowed for this module. Allowed method(s): %s"; $a->strings["Page not found."] = "Page not found"; -$a->strings["No system theme config value set."] = "No system theme configuration value set."; -$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."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Could not find any unarchived contact entry for this URL (%s)"; -$a->strings["The contact entries have been archived"] = "The contact entries have been archived"; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Could not find any contact entry for this URL (%s)"; -$a->strings["The contact has been blocked from the node"] = "This contact has been blocked from the node"; -$a->strings["Post update version number has been set to %s."] = "Post update version number has been set to %s."; -$a->strings["Check for pending update actions."] = "Check for pending update actions."; -$a->strings["Done."] = "Done."; -$a->strings["Execute pending post updates."] = "Execute pending post updates."; -$a->strings["All pending post updates are done."] = "All pending post updates are done."; -$a->strings["Enter new password: "] = "Enter new password: "; -$a->strings["Enter user name: "] = ""; -$a->strings["Enter user nickname: "] = ""; -$a->strings["Enter user email address: "] = ""; -$a->strings["Enter a language (optional): "] = ""; -$a->strings["User is not pending."] = ""; -$a->strings["Type \"yes\" to delete %s"] = ""; -$a->strings["newer"] = "Later posts"; -$a->strings["older"] = "Earlier posts"; -$a->strings["Frequently"] = "Frequently"; -$a->strings["Hourly"] = "Hourly"; -$a->strings["Twice daily"] = "Twice daily"; -$a->strings["Daily"] = "Daily"; -$a->strings["Weekly"] = "Weekly"; -$a->strings["Monthly"] = "Monthly"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Email"; -$a->strings["Diaspora"] = "diaspora*"; -$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["Discourse"] = "Discourse"; -$a->strings["Diaspora Connector"] = "diaspora* connector"; -$a->strings["GNU Social Connector"] = "GNU Social Connector"; -$a->strings["ActivityPub"] = "ActivityPub"; -$a->strings["pnut"] = "pnut"; -$a->strings["%s (via %s)"] = ""; -$a->strings["General Features"] = "General"; -$a->strings["Photo Location"] = "Photo location"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata."; -$a->strings["Export Public Calendar"] = "Export public calendar"; -$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar"; -$a->strings["Trending Tags"] = "Trending tags"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Show a community page widget with a list of the most popular tags in recent public posts."; -$a->strings["Post Composition Features"] = "Post composition"; -$a->strings["Auto-mention Forums"] = "Auto-mention forums"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; -$a->strings["Explicit Mentions"] = "Explicit Mentions"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Add explicit mentions to comment box for manual control over who gets mentioned in replies."; -$a->strings["Network Sidebar"] = "Network sidebar"; -$a->strings["Archives"] = "Archives"; -$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges"; -$a->strings["Protocol Filter"] = "Protocol filter"; -$a->strings["Enable widget to display Network posts only from selected protocols"] = "Enable widget to display Network posts only from selected protocols"; -$a->strings["Network Tabs"] = "Network tabs"; -$a->strings["Network New Tab"] = "Network new tab"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)"; -$a->strings["Network Shared Links Tab"] = "Network shared links tab"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them"; -$a->strings["Post/Comment Tools"] = "Post/Comment tools"; -$a->strings["Post Categories"] = "Post categories"; -$a->strings["Add categories to your posts"] = "Add categories to your posts"; -$a->strings["Advanced Profile Settings"] = "Advanced profiles"; -$a->strings["List Forums"] = "List forums"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; -$a->strings["Tag Cloud"] = "Tag cloud"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Provide a personal tag cloud on your profile page"; -$a->strings["Display Membership Date"] = "Display membership date"; -$a->strings["Display membership date in profile"] = "Display membership date in profile"; -$a->strings["Forums"] = "Forums"; -$a->strings["External link to forum"] = "External link to forum"; -$a->strings["show more"] = "show more"; -$a->strings["Nothing new here"] = "Nothing new here"; -$a->strings["Go back"] = "Go back"; -$a->strings["Clear notifications"] = "Clear notifications"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; -$a->strings["Logout"] = "Logout"; -$a->strings["End this session"] = "End this session"; -$a->strings["Login"] = "Login"; -$a->strings["Sign in"] = "Sign in"; -$a->strings["Status"] = "Status"; -$a->strings["Your posts and conversations"] = "My posts and conversations"; -$a->strings["Profile"] = "Profile"; -$a->strings["Your profile page"] = "My profile page"; -$a->strings["Your photos"] = "My photos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Your videos"] = "My videos"; -$a->strings["Your events"] = "My events"; -$a->strings["Personal notes"] = "Personal notes"; -$a->strings["Your personal notes"] = "My personal notes"; -$a->strings["Home"] = "Home"; -$a->strings["Home Page"] = "Home page"; -$a->strings["Register"] = "Sign up now >>"; -$a->strings["Create an account"] = "Create account"; -$a->strings["Help"] = "Help"; -$a->strings["Help and documentation"] = "Help and documentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; -$a->strings["Search"] = "Search"; -$a->strings["Search site content"] = "Search site content"; -$a->strings["Full Text"] = "Full text"; -$a->strings["Tags"] = "Tags"; -$a->strings["Contacts"] = "Contacts"; -$a->strings["Community"] = "Community"; -$a->strings["Conversations on this and other servers"] = "Conversations on this and other servers"; -$a->strings["Events and Calendar"] = "Events and calendar"; -$a->strings["Directory"] = "Directory"; -$a->strings["People directory"] = "People directory"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; -$a->strings["Terms of Service"] = "Terms of Service"; -$a->strings["Terms of Service of this Friendica instance"] = "Terms of Service of this Friendica instance"; -$a->strings["Network"] = "Network"; -$a->strings["Conversations from your friends"] = "My friends' conversations"; -$a->strings["Introductions"] = "Introductions"; -$a->strings["Friend Requests"] = "Friend requests"; -$a->strings["Notifications"] = "Notifications"; -$a->strings["See all notifications"] = "See all notifications"; -$a->strings["Mark all system notifications seen"] = "Mark notifications as seen"; -$a->strings["Private mail"] = "Private messages"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Outbox"; -$a->strings["Accounts"] = ""; -$a->strings["Manage other pages"] = "Manage other pages"; -$a->strings["Settings"] = "Settings"; -$a->strings["Account settings"] = "Account settings"; -$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Site setup and configuration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Site map"; -$a->strings["Embedding disabled"] = "Embedding disabled"; -$a->strings["Embedded content"] = "Embedded content"; -$a->strings["prev"] = "prev"; -$a->strings["last"] = "last"; -$a->strings["Image/photo"] = "Image/Photo"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["Click to open/close"] = "Reveal/hide"; -$a->strings["$1 wrote:"] = "$1 wrote:"; -$a->strings["Encrypted content"] = "Encrypted content"; -$a->strings["Invalid source protocol"] = "Invalid source protocol"; -$a->strings["Invalid link protocol"] = "Invalid link protocol"; -$a->strings["Loading more entries..."] = "Loading more entries..."; -$a->strings["The end"] = "The end"; -$a->strings["Follow"] = "Follow"; -$a->strings["Export"] = "Export"; -$a->strings["Export calendar as ical"] = "Export calendar as ical"; -$a->strings["Export calendar as csv"] = "Export calendar as csv"; -$a->strings["No contacts"] = "No contacts"; -$a->strings["%d Contact"] = [ - 0 => "%d contact", - 1 => "%d contacts", -]; -$a->strings["View Contacts"] = "View contacts"; -$a->strings["Remove term"] = "Remove term"; -$a->strings["Saved Searches"] = "Saved searches"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "Trending tags (last %d hour)", - 1 => "Trending tags (last %d hours)", -]; -$a->strings["More Trending Tags"] = "More trending tags"; -$a->strings["Add New Contact"] = "Add new contact"; -$a->strings["Enter address or web location"] = "Enter address or web location"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; -$a->strings["%d invitation available"] = [ - 0 => "%d invitation available", - 1 => "%d invitations available", -]; -$a->strings["Find People"] = "Find people"; -$a->strings["Enter name or interest"] = "Enter name or interest"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing"; -$a->strings["Find"] = "Find"; -$a->strings["Similar Interests"] = "Similar interests"; -$a->strings["Random Profile"] = "Random profile"; -$a->strings["Invite Friends"] = "Invite friends"; -$a->strings["Global Directory"] = "Global directory"; -$a->strings["Local Directory"] = "Local directory"; -$a->strings["Groups"] = "Groups"; -$a->strings["Everyone"] = ""; -$a->strings["Following"] = "Following"; -$a->strings["Mutual friends"] = "Mutual friends"; -$a->strings["Relationships"] = "Relationships"; -$a->strings["All Contacts"] = "All contacts"; -$a->strings["Protocols"] = "Protocols"; -$a->strings["All Protocols"] = "All protocols"; -$a->strings["Saved Folders"] = "Saved Folders"; -$a->strings["Everything"] = "Everything"; -$a->strings["Categories"] = "Categories"; -$a->strings["%d contact in common"] = [ - 0 => "%d contact in common", - 1 => "%d contacts in common", -]; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; +$a->strings["Another database update is currently running."] = ""; +$a->strings["%s: Database update"] = "%s: Database update"; +$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["Database error %d \"%s\" at \"%s\""] = ""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = "[Friendica Notify] Database update"; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."; $a->strings["Yourself"] = ""; +$a->strings["Followers"] = "Followers"; +$a->strings["Mutuals"] = "Mutuals"; $a->strings["Post to Email"] = "Post to email"; $a->strings["Public"] = "Public"; $a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = "This post will be shown to all your followers and can be seen in the community pages and by anyone with its link."; @@ -895,7 +776,7 @@ $a->strings["The database configuration file \"config/local.config.php\" could n $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\"."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "If your server doesn't have a command line version of PHP installed, you won't be able to run background processing. See 'Setup the worker'"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; $a->strings["PHP executable path"] = "PHP executable path"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; $a->strings["Command line PHP"] = "Command line PHP"; @@ -998,11 +879,6 @@ $a->strings["finger"] = "finger"; $a->strings["fingered"] = "fingered"; $a->strings["rebuff"] = "rebuff"; $a->strings["rebuffed"] = "rebuffed"; -$a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = "[Friendica Notify] Database update"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."; $a->strings["Error decoding account file"] = "Error decoding account file"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?"; $a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!"; @@ -1013,11 +889,104 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "User profile creation error"; $a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: "; -$a->strings["%s: Database update"] = "%s: Database update"; -$a->strings["%s: updating %s table."] = "%s: updating %s table."; +$a->strings["Legacy module file not found: %s"] = "Legacy module file not found: %s"; +$a->strings["(no subject)"] = "(no subject)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network."; +$a->strings["You may visit them online at %s"] = "You may visit them online at %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages."; +$a->strings["%s posted an update."] = "%s posted an update."; +$a->strings["This entry was edited"] = "This entry was edited"; +$a->strings["Private Message"] = "Private message"; +$a->strings["pinned item"] = "pinned item"; +$a->strings["Delete locally"] = "Delete locally"; +$a->strings["Delete globally"] = "Delete globally"; +$a->strings["Remove locally"] = "Remove locally"; +$a->strings["save to folder"] = "Save to folder"; +$a->strings["I will attend"] = "I will attend"; +$a->strings["I will not attend"] = "I will not attend"; +$a->strings["I might attend"] = "I might attend"; +$a->strings["ignore thread"] = "Ignore thread"; +$a->strings["unignore thread"] = "Unignore thread"; +$a->strings["toggle ignore status"] = "Toggle ignore status"; +$a->strings["pin"] = "Pin"; +$a->strings["unpin"] = "Unpin"; +$a->strings["toggle pin status"] = "Toggle pin status"; +$a->strings["pinned"] = "pinned"; +$a->strings["add star"] = "Add star"; +$a->strings["remove star"] = "Remove star"; +$a->strings["toggle star status"] = "Toggle star status"; +$a->strings["starred"] = "Starred"; +$a->strings["add tag"] = "Add tag"; +$a->strings["like"] = "Like"; +$a->strings["dislike"] = "Dislike"; +$a->strings["Share this"] = "Share this"; +$a->strings["share"] = "Share"; +$a->strings["%s (Received %s)"] = "%s (Received %s)"; +$a->strings["Comment this item on your system"] = ""; +$a->strings["remote comment"] = ""; +$a->strings["Pushed"] = ""; +$a->strings["Pulled"] = ""; +$a->strings["to"] = "to"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:"; +$a->strings["Reply to %s"] = "Reply to %s"; +$a->strings["More"] = ""; +$a->strings["Notifier task is pending"] = "Notifier task is pending"; +$a->strings["Delivery to remote servers is pending"] = "Delivery to remote servers is pending"; +$a->strings["Delivery to remote servers is underway"] = "Delivery to remote servers is underway"; +$a->strings["Delivery to remote servers is mostly done"] = "Delivery to remote servers is mostly done"; +$a->strings["Delivery to remote servers is done"] = "Delivery to remote servers is done"; +$a->strings["%d comment"] = [ + 0 => "%d comment", + 1 => "%d comments", +]; +$a->strings["Show more"] = "Show more"; +$a->strings["Show fewer"] = "Show fewer"; +$a->strings["comment"] = [ + 0 => "comment", + 1 => "comments", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Could not find any unarchived contact entry for this URL (%s)"; +$a->strings["The contact entries have been archived"] = "The contact entries have been archived"; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Could not find any contact entry for this URL (%s)"; +$a->strings["The contact has been blocked from the node"] = "This contact has been blocked from the node"; +$a->strings["Enter new password: "] = "Enter new password: "; +$a->strings["Enter user name: "] = ""; +$a->strings["Enter user nickname: "] = ""; +$a->strings["Enter user email address: "] = ""; +$a->strings["Enter a language (optional): "] = ""; +$a->strings["User is not pending."] = ""; +$a->strings["User has already been marked for deletion."] = ""; +$a->strings["Type \"yes\" to delete %s"] = ""; +$a->strings["Deletion aborted."] = ""; +$a->strings["Post update version number has been set to %s."] = "Post update version number has been set to %s."; +$a->strings["Check for pending update actions."] = "Check for pending update actions."; +$a->strings["Done."] = "Done."; +$a->strings["Execute pending post updates."] = "Execute pending post updates."; +$a->strings["All pending post updates are done."] = "All pending post updates are done."; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "Home town:"; +$a->strings["Marital Status:"] = ""; +$a->strings["With:"] = ""; +$a->strings["Since:"] = ""; +$a->strings["Sexual Preference:"] = "Sexual preference:"; +$a->strings["Political Views:"] = "Political views:"; +$a->strings["Religious Views:"] = "Religious views:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Title/Description:"] = "Title/Description:"; +$a->strings["Summary"] = "Summary"; +$a->strings["Musical interests"] = "Music:"; +$a->strings["Books, literature"] = "Books, literature, poetry:"; +$a->strings["Television"] = "Television:"; +$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interests:"; +$a->strings["Love/romance"] = "Love/Romance:"; +$a->strings["Work/employment"] = "Work/Employment:"; +$a->strings["School/education"] = "School/Education:"; +$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:"; +$a->strings["No system theme config value set."] = "No system theme configuration value set."; $a->strings["Friend Suggestion"] = "Friend suggestion"; $a->strings["Friend/Connect Request"] = "Friend/Contact request"; $a->strings["New Follower"] = "New follower"; @@ -1029,182 +998,526 @@ $a->strings["%s is attending %s's event"] = "%s is going to %s's event"; $a->strings["%s is not attending %s's event"] = "%s is not going to %s's event"; $a->strings["%s may attending %s's event"] = ""; $a->strings["%s is now friends with %s"] = "%s is now friends with %s"; -$a->strings["Legacy module file not found: %s"] = "Legacy module file not found: %s"; -$a->strings["UnFollow"] = "Unfollow"; -$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Network Notifications"] = "Network notifications"; +$a->strings["System Notifications"] = "System notifications"; +$a->strings["Personal Notifications"] = "Personal notifications"; +$a->strings["Home Notifications"] = "Home notifications"; +$a->strings["No more %s notifications."] = "No more %s notifications."; +$a->strings["Show unread"] = "Show unread"; +$a->strings["Show all"] = "Show all"; +$a->strings["You must be logged in to show this page."] = ""; +$a->strings["Notifications"] = "Notifications"; +$a->strings["Show Ignored Requests"] = "Show ignored requests."; +$a->strings["Hide Ignored Requests"] = "Hide ignored requests"; +$a->strings["Notification type:"] = "Notification type:"; +$a->strings["Suggested by:"] = "Suggested by:"; +$a->strings["Hide this contact from others"] = "Hide this contact from others"; $a->strings["Approve"] = "Approve"; -$a->strings["Organisation"] = "Organization"; -$a->strings["News"] = "News"; -$a->strings["Forum"] = "Forum"; -$a->strings["Connect URL missing."] = "Connect URL missing."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."; -$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; -$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; -$a->strings["An author or name was not found."] = "An author or name was not found."; -$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; -$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; -$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Starts:"; -$a->strings["Finishes:"] = "Finishes:"; -$a->strings["all-day"] = "All-day"; -$a->strings["Sept"] = "Sep"; -$a->strings["No events to display"] = "No events to display"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Edit event"; -$a->strings["Duplicate event"] = "Duplicate event"; -$a->strings["Delete event"] = "Delete event"; -$a->strings["link to source"] = "Link to source"; -$a->strings["D g:i A"] = "D g:i A"; -$a->strings["g:i A"] = "g:i A"; -$a->strings["Show map"] = "Show map"; -$a->strings["Hide map"] = "Hide map"; -$a->strings["%s's birthday"] = "%s's birthday"; -$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; -$a->strings["Item filed"] = "Item filed"; -$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."] = "A deleted group with this name has been 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."; -$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; -$a->strings["Everybody"] = "Everybody"; -$a->strings["edit"] = "edit"; -$a->strings["add"] = "add"; -$a->strings["Edit group"] = "Edit group"; -$a->strings["Contacts not in any group"] = "Contacts not in any group"; -$a->strings["Create a new group"] = "Create new group"; -$a->strings["Group Name: "] = "Group name: "; -$a->strings["Edit groups"] = "Edit groups"; -$a->strings["activity"] = "activity"; -$a->strings["comment"] = [ - 0 => "comment", - 1 => "comments", -]; -$a->strings["post"] = "post"; -$a->strings["Content warning: %s"] = "Content warning: %s"; -$a->strings["bytes"] = "bytes"; -$a->strings["View on separate page"] = "View on separate page"; -$a->strings["view on separate page"] = "view on separate page"; -$a->strings["[no subject]"] = "[no subject]"; -$a->strings["Edit profile"] = "Edit profile"; -$a->strings["Change profile photo"] = "Change profile photo"; -$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Claims to be known to you: "] = "Says they know me:"; +$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts. You will also receive updates from them in your news feed."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; +$a->strings["Friend"] = "Friend"; +$a->strings["Subscriber"] = "Subscriber"; $a->strings["About:"] = "About:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Unfollow"] = "Unfollow"; -$a->strings["Atom feed"] = "Atom feed"; $a->strings["Network:"] = "Network:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[today]"; -$a->strings["Birthday Reminders"] = "Birthday reminders"; -$a->strings["Birthdays this week:"] = "Birthdays this week:"; -$a->strings["[No description]"] = "[No description]"; -$a->strings["Event Reminders"] = "Event reminders"; -$a->strings["Upcoming events the next 7 days:"] = "Upcoming events the next 7 days:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s welcomes %2\$s"; -$a->strings["Database storage failed to update %s"] = "Database storage failed to update %s"; -$a->strings["Database storage failed to insert data"] = "Database storage failed to insert data"; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Filesystem storage failed to create \"%s\". Check you write permissions."; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Filesystem storage failed to save data to \"%s\". Check your write permissions"; -$a->strings["Storage base path"] = "Storage base path"; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree"; -$a->strings["Enter a valid existing folder"] = "Enter a valid existing folder"; -$a->strings["Login failed"] = "Login failed"; -$a->strings["Not enough information to authenticate"] = "Not enough information to authenticate"; -$a->strings["Password can't be empty"] = "Password can't be empty"; -$a->strings["Empty passwords are not allowed."] = "Empty passwords are not allowed."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "The new password has been exposed in a public data dump; please choose another."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "The password can't contain accentuated letters, white spaces or colons (:)"; -$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; -$a->strings["An invitation is required."] = "An invitation is required."; -$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; -$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; -$a->strings["Please enter the required information."] = "Please enter the required information."; -$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."; -$a->strings["Username should be at least %s character."] = [ - 0 => "Username should be at least %s character.", - 1 => "Username should be at least %s characters.", +$a->strings["No introductions."] = "No introductions."; +$a->strings["A Decentralized Social Network"] = ""; +$a->strings["Logged out."] = "Logged out."; +$a->strings["Invalid code, please retry."] = "Invalid code, please try again."; +$a->strings["Two-factor authentication"] = "Two-factor authentication"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Don’t have your phone? Enter a two-factor recovery code"; +$a->strings["Please enter a code from your authentication app"] = "Please enter a code from your authentication app"; +$a->strings["Verify code and complete login"] = "Verify code and complete login"; +$a->strings["Remaining recovery codes: %d"] = "Remaining recovery codes: %d"; +$a->strings["Two-factor recovery"] = "Two-factor recovery"; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"; +$a->strings["Please enter a recovery code"] = "Please enter a recovery code"; +$a->strings["Submit recovery code and complete login"] = "Submit recovery code and complete login"; +$a->strings["Create a New Account"] = "Create a new account"; +$a->strings["Register"] = "Sign up now >>"; +$a->strings["Your OpenID: "] = "Your OpenID: "; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Please enter your username and password to add the OpenID to your existing account."; +$a->strings["Or login using OpenID: "] = "Or login with OpenID: "; +$a->strings["Logout"] = "Logout"; +$a->strings["Login"] = "Login"; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Remember me"; +$a->strings["Forgot your password?"] = "Forgot your password?"; +$a->strings["Website Terms of Service"] = "Website Terms of Service"; +$a->strings["terms of service"] = "Terms of service"; +$a->strings["Website Privacy Policy"] = "Website Privacy Policy"; +$a->strings["privacy policy"] = "Privacy policy"; +$a->strings["OpenID protocol error. No ID returned"] = ""; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Account not found. Please login to your existing account to add the OpenID to it."; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Account not found. Please register a new account or login to your existing account to add the OpenID."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Time conversion"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones."; +$a->strings["UTC time: %s"] = "UTC time: %s"; +$a->strings["Current timezone: %s"] = "Current time zone: %s"; +$a->strings["Converted localtime: %s"] = "Converted local time: %s"; +$a->strings["Please select your timezone:"] = "Please select your time zone:"; +$a->strings["Source input"] = "Source input"; +$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw HTML)"; +$a->strings["BBCode::convert"] = "BBCode::convert"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; +$a->strings["Item Body"] = "Item body"; +$a->strings["Item Tags"] = "Item tags"; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = "Source input (diaspora* format)"; +$a->strings["Source input (Markdown)"] = ""; +$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (raw HTML)"; +$a->strings["Markdown::convert"] = "Markdown::convert"; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Raw HTML input"; +$a->strings["HTML Input"] = "HTML input"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (raw HTML)"; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; +$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (compact)"; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = "Source text"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Diaspora"] = "diaspora*"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to use the Probe feature."; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = "You must be logged in to use this module"; +$a->strings["Source URL"] = "Source URL"; +$a->strings["Lookup address"] = "Lookup address"; +$a->strings["%s's timeline"] = "%s's timeline"; +$a->strings["%s's posts"] = "%s's posts"; +$a->strings["%s's comments"] = "%s's comments"; +$a->strings["No contacts."] = "No contacts."; +$a->strings["Follower (%s)"] = [ + 0 => "Follower (%s)", + 1 => "Followers (%s)", ]; -$a->strings["Username should be at most %s character."] = [ - 0 => "Username should be at most %s character.", - 1 => "Username should be at most %s characters.", +$a->strings["Following (%s)"] = [ + 0 => "Following (%s)", + 1 => "Following (%s)", ]; -$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; -$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; -$a->strings["Not a valid email address."] = "Not a valid email address."; -$a->strings["The nickname was blocked from registration by the nodes admin."] = "The nickname was blocked from registration by the nodes admin."; -$a->strings["Cannot use that email."] = "Cannot use that email."; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Your nickname can only contain a-z, 0-9 and _."; -$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; -$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; -$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; -$a->strings["An error occurred creating your self contact. Please try again."] = "An error occurred creating your self contact. Please try again."; -$a->strings["Friends"] = "Friends"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "An error occurred while creating your default contact group. Please try again."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["Registration details for %s"] = "Registration details for %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Registration at %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."; -$a->strings["Addon not found."] = "Addon not found."; -$a->strings["Addon %s disabled."] = "Addon %s disabled."; -$a->strings["Addon %s enabled."] = "Addon %s enabled."; +$a->strings["Mutual friend (%s)"] = [ + 0 => "Mutual friend (%s)", + 1 => "Mutual friends (%s)", +]; +$a->strings["Contact (%s)"] = [ + 0 => "Contact (%s)", + 1 => "Contacts (%s)", +]; +$a->strings["All contacts"] = "All contacts"; +$a->strings["Following"] = "Following"; +$a->strings["Mutual friends"] = "Mutual friends"; +$a->strings["You're currently viewing your profile as %s Cancel"] = ""; +$a->strings["Member since:"] = "Member since:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Birthday:"; +$a->strings["Age: "] = "Age: "; +$a->strings["%d year old"] = [ + 0 => "", + 1 => "", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Forums:"] = "Forums:"; +$a->strings["View profile as:"] = ""; +$a->strings["Edit profile"] = "Edit profile"; +$a->strings["View as"] = ""; +$a->strings["Only parent users can create additional accounts."] = ""; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."; +$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?"; +$a->strings["Note for the admin"] = "Note for the admin"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin. Why do you want to join this node?"; +$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only."; +$a->strings["Your invitation code: "] = "Your invitation code: "; +$a->strings["Registration"] = "Registration"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: "; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Your Email Address: (Initial information will be sent there, so this must be an existing address.)"; +$a->strings["Please repeat your e-mail address:"] = ""; +$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."; +$a->strings["Choose a nickname: "] = "Choose a nickname: "; +$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; +$a->strings["Terms of Service"] = "Terms of Service"; +$a->strings["Note: This node explicitly contains adult content"] = "Note: This node explicitly contains adult content"; +$a->strings["Parent Password:"] = "Parent Password:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Please enter the password of the parent account to authorize this request."; +$a->strings["Password doesn't match."] = ""; +$a->strings["Please enter your password."] = ""; +$a->strings["You have entered too much information."] = "You have entered too much information."; +$a->strings["Please enter the identical mail address in the second field."] = ""; +$a->strings["The additional account was created."] = ""; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Failed to send email message. Here are your account details:
login: %s
password: %s

You can change your password after login."; +$a->strings["Registration successful."] = "Registration successful."; +$a->strings["Your registration can not be processed."] = "Your registration cannot be processed."; +$a->strings["You have to leave a request note for the admin."] = "You have to leave a request note for the admin."; +$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator."; +$a->strings["Bad Request"] = "Bad request"; +$a->strings["Unauthorized"] = "Unauthorized"; +$a->strings["Forbidden"] = "Forbidden"; +$a->strings["Not Found"] = "Not found"; +$a->strings["Internal Server Error"] = "Internal Server Error"; +$a->strings["Service Unavailable"] = "Service Unavailable"; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = "The server cannot process the request due to an apparent client error."; +$a->strings["Authentication is required and has failed or has not yet been provided."] = "Authentication is required but has failed or not yet being provided."; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."; +$a->strings["The requested resource could not be found but may be available in the future."] = "The requested resource could not be found but may be available in the future."; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "An unexpected condition was encountered and no more specific message is available."; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "The server is currently unavailable (possibly because it is overloaded or down for maintenance). Please try again later."; +$a->strings["Go back"] = "Go back"; +$a->strings["Welcome to %s"] = "Welcome to %s"; +$a->strings["No friends to display."] = "No friends to display."; +$a->strings["Suggested contact not found."] = "Suggested contact not found."; +$a->strings["Friend suggestion sent."] = "Friend suggestion sent"; +$a->strings["Suggest Friends"] = "Suggest friends"; +$a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; +$a->strings["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup"; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state"; +$a->strings["Force all links to use SSL"] = "Force all links to use SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)"; +$a->strings["Base settings"] = "Base settings"; +$a->strings["SSL link policy"] = "SSL link policy"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL"; +$a->strings["Host name"] = "Host name"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Overwrite this field in case the hostname is incorrect, otherwise leave it as is."; +$a->strings["Base path to installation"] = "Base path to installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."; +$a->strings["Sub path of the URL"] = "URL Sub-path "; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub-path."; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database server name"; +$a->strings["Database Login Name"] = "Database login name"; +$a->strings["Database Login Password"] = "Database login password"; +$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty"; +$a->strings["Database Name"] = "Database name"; +$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website"; +$a->strings["Site settings"] = "Site settings"; +$a->strings["Site administrator email address"] = "Site administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["System Language:"] = "System language:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication."; +$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed."; +$a->strings["Installation finished"] = "Installation finished"; +$a->strings["

What next

"] = "

What next

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the worker."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."; +$a->strings["- select -"] = "- select -"; +$a->strings["Item was not removed"] = ""; +$a->strings["Item was not deleted"] = ""; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "Remote privacy information not available."; +$a->strings["Visible to:"] = "Visible to:"; +$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; +$a->strings["Select an identity to manage: "] = "Select identity:"; +$a->strings["Local Community"] = "Local community"; +$a->strings["Posts from local users on this server"] = "Posts from local users on this server"; +$a->strings["Global Community"] = "Global community"; +$a->strings["Posts from users of the whole federated network"] = "Posts from users of the whole federated network"; +$a->strings["No results."] = "No results."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."; +$a->strings["Community option not available."] = "Community option not available."; +$a->strings["Not available."] = "Not available."; +$a->strings["Welcome to Friendica"] = "Welcome to Friendica"; +$a->strings["New Member Checklist"] = "New Member Checklist"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."; +$a->strings["Getting Started"] = "Getting started"; +$a->strings["Friendica Walk-Through"] = "Friendica walk-through"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."; +$a->strings["Go to Your Settings"] = "Go to your settings"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."; +$a->strings["Upload Profile Photo"] = "Upload profile photo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."; +$a->strings["Edit Your Profile"] = "Edit your profile"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."; +$a->strings["Profile Keywords"] = "Profile keywords"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; +$a->strings["Connecting"] = "Connecting"; +$a->strings["Importing Emails"] = "Importing emails"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"; +$a->strings["Go to Your Contacts Page"] = "Go to your contacts page"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "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."; +$a->strings["Go to Your Site's Directory"] = "Go to your site's directory"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "The directory 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 when requested."; +$a->strings["Finding New People"] = "Finding new people"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."; +$a->strings["Groups"] = "Groups"; +$a->strings["Group Your Contacts"] = "Group your contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."; +$a->strings["Why Aren't My Posts Public?"] = "Why aren't my posts public?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."; +$a->strings["Getting Help"] = "Getting help"; +$a->strings["Go to the Help Section"] = "Go to the help section"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; +$a->strings["This page is missing a url parameter."] = "This page is missing a URL parameter."; +$a->strings["The post was created"] = "The post was created"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; +$a->strings["Information"] = "Information"; +$a->strings["Overview"] = "Overview"; +$a->strings["Federation Statistics"] = "Federation statistics"; +$a->strings["Configuration"] = "Configuration"; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Users"; +$a->strings["Addons"] = "Addons"; +$a->strings["Themes"] = "Theme selection"; +$a->strings["Additional features"] = "Additional features"; +$a->strings["Database"] = "Database"; +$a->strings["DB updates"] = "DB updates"; +$a->strings["Inspect Deferred Workers"] = "Inspect deferred workers"; +$a->strings["Inspect worker Queue"] = "Inspect worker queue"; +$a->strings["Tools"] = "Tools"; +$a->strings["Contact Blocklist"] = "Contact block-list"; +$a->strings["Server Blocklist"] = "Server block-list"; +$a->strings["Delete Item"] = "Delete item"; +$a->strings["Logs"] = "Logs"; +$a->strings["View Logs"] = "View logs"; +$a->strings["Diagnostics"] = "Diagnostics"; +$a->strings["PHP Info"] = "PHP info"; +$a->strings["probe address"] = "Probe address"; +$a->strings["check webfinger"] = "check WebFinger"; +$a->strings["Item Source"] = "Item source"; +$a->strings["Babel"] = "Babel"; +$a->strings["ActivityPub Conversion"] = ""; +$a->strings["Admin"] = "Admin"; +$a->strings["Addon Features"] = "Addon features"; +$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation"; +$a->strings["%d contact edited."] = [ + 0 => "%d contact edited.", + 1 => "%d contacts edited.", +]; +$a->strings["Could not access contact record."] = "Could not access contact record."; +$a->strings["Follow"] = "Follow"; +$a->strings["Unfollow"] = "Unfollow"; +$a->strings["Contact not found"] = "Contact not found"; +$a->strings["Contact has been blocked"] = "Contact has been blocked"; +$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; +$a->strings["Contact has been ignored"] = "Contact has been ignored"; +$a->strings["Contact has been unignored"] = "Contact has been unignored"; +$a->strings["Contact has been archived"] = "Contact has been archived"; +$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; +$a->strings["Drop contact"] = "Drop contact"; +$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; +$a->strings["Contact has been removed."] = "Contact has been removed."; +$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; +$a->strings["You are sharing with %s"] = "You are sharing with %s"; +$a->strings["%s is sharing with you"] = "%s is sharing with you"; +$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; +$a->strings["Never"] = "Never"; +$a->strings["(Update was successful)"] = "(Update was successful)"; +$a->strings["(Update was not successful)"] = "(Update was not successful)"; +$a->strings["Suggest friends"] = "Suggest friends"; +$a->strings["Network type: %s"] = "Network type: %s"; +$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; +$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Fetch information like preview pictures, title, and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."; +$a->strings["Disabled"] = "Disabled"; +$a->strings["Fetch information"] = "Fetch information"; +$a->strings["Fetch keywords"] = "Fetch keywords"; +$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; +$a->strings["Contact Information / Notes"] = "Personal note"; +$a->strings["Contact Settings"] = "Notification and privacy "; +$a->strings["Contact"] = "Contact"; +$a->strings["Their personal note"] = "Their personal note"; +$a->strings["Edit contact notes"] = "Edit contact notes"; +$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; +$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; +$a->strings["Ignore contact"] = "Ignore contact"; +$a->strings["View conversations"] = "View conversations"; +$a->strings["Last update:"] = "Last update:"; +$a->strings["Update public posts"] = "Update public posts"; +$a->strings["Update now"] = "Update now"; +$a->strings["Unblock"] = "Unblock"; +$a->strings["Unignore"] = "Unignore"; +$a->strings["Currently blocked"] = "Currently blocked"; +$a->strings["Currently ignored"] = "Currently ignored"; +$a->strings["Currently archived"] = "Currently archived"; +$a->strings["Awaiting connection acknowledge"] = "Awaiting connection acknowledgement"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; +$a->strings["Notification for new posts"] = "Notification for new posts"; +$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; +$a->strings["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; +$a->strings["Actions"] = "Actions"; +$a->strings["All Contacts"] = "All contacts"; +$a->strings["Show all contacts"] = "Show all contacts"; +$a->strings["Pending"] = "Pending"; +$a->strings["Only show pending contacts"] = "Only show pending contacts."; +$a->strings["Blocked"] = "Blocked"; +$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; +$a->strings["Ignored"] = "Ignored"; +$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; +$a->strings["Archived"] = "Archived"; +$a->strings["Only show archived contacts"] = "Only show archived contacts"; +$a->strings["Hidden"] = "Hidden"; +$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; +$a->strings["Organize your contact groups"] = "Organize your contact groups"; +$a->strings["Search your contacts"] = "Search your contacts"; +$a->strings["Results for: %s"] = "Results for: %s"; +$a->strings["Archive"] = "Archive"; +$a->strings["Unarchive"] = "Unarchive"; +$a->strings["Batch Actions"] = "Batch actions"; +$a->strings["Conversations started by this contact"] = "Conversations started by this contact"; +$a->strings["Posts and Comments"] = "Posts and Comments"; +$a->strings["Profile Details"] = "Profile Details"; +$a->strings["View all contacts"] = "View all contacts"; +$a->strings["View all common friends"] = "View all common friends"; +$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; +$a->strings["Mutual Friendship"] = "Mutual friendship"; +$a->strings["is a fan of yours"] = "is a fan of yours"; +$a->strings["you are a fan of"] = "I follow them"; +$a->strings["Pending outgoing contact request"] = "Pending outgoing contact request."; +$a->strings["Pending incoming contact request"] = "Pending incoming contact request."; +$a->strings["Refetch contact data"] = "Re-fetch contact data."; +$a->strings["Toggle Blocked status"] = "Toggle blocked status"; +$a->strings["Toggle Ignored status"] = "Toggle ignored status"; +$a->strings["Toggle Archive status"] = "Toggle archive status"; +$a->strings["Delete contact"] = "Delete contact"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), a username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but won’t be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."; +$a->strings["Privacy Statement"] = "Privacy Statement"; +$a->strings["Help:"] = "Help:"; +$a->strings["Method Not Allowed."] = "Method not allowed."; +$a->strings["Profile not found"] = ""; +$a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; +$a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; +$a->strings["Please join us on Friendica"] = "Please join us on Friendica."; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitation limit is exceeded. Please contact your site administrator."; +$a->strings["%s : Message delivery failed."] = "%s : Message delivery failed"; +$a->strings["%d message sent."] = [ + 0 => "%d message sent.", + 1 => "%d messages sent.", +]; +$a->strings["You have no more invitations available"] = "You have no more invitations available."; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connected to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members."; +$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."] = "Friendica sites are all inter-connected to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."; +$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s."; +$a->strings["Send invitations"] = "Send invitations"; +$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"; +$a->strings["People Search - %s"] = "People search - %s"; +$a->strings["Forum Search - %s"] = "Forum search - %s"; $a->strings["Disable"] = "Disable"; $a->strings["Enable"] = "Enable"; +$a->strings["Theme %s disabled."] = "Theme %s disabled."; +$a->strings["Theme %s successfully enabled."] = "Theme %s successfully enabled."; +$a->strings["Theme %s failed to install."] = "Theme %s failed to install."; +$a->strings["Screenshot"] = "Screenshot"; $a->strings["Administration"] = "Administration"; -$a->strings["Addons"] = "Addons"; $a->strings["Toggle"] = "Toggle"; $a->strings["Author: "] = "Author: "; $a->strings["Maintainer: "] = "Maintainer: "; -$a->strings["Addon %s failed to install."] = "Addon %s failed to install."; -$a->strings["Reload active addons"] = "Reload active addons"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"; -$a->strings["%s contact unblocked"] = [ - 0 => "%s contact unblocked", - 1 => "%s contacts unblocked", +$a->strings["Unknown theme."] = "Unknown theme."; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Reload active themes"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "No themes found on the system. They should be placed in %1\$s"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Unsupported]"; +$a->strings["Lock feature %s"] = "Lock feature %s"; +$a->strings["Manage Additional Features"] = "Manage additional features"; +$a->strings["%s user blocked"] = [ + 0 => "%s user blocked", + 1 => "%s users blocked", ]; -$a->strings["Remote Contact Blocklist"] = "Remote contact block-list"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "This page allows you to prevent any message from a remote contact to reach your node."; -$a->strings["Block Remote Contact"] = "Block remote contact"; +$a->strings["%s user unblocked"] = [ + 0 => "%s user unblocked", + 1 => "%s users unblocked", +]; +$a->strings["You can't remove yourself"] = "You can't remove yourself"; +$a->strings["%s user deleted"] = [ + 0 => "%s user deleted", + 1 => "%s users deleted", +]; +$a->strings["%s user approved"] = [ + 0 => "", + 1 => "", +]; +$a->strings["%s registration revoked"] = [ + 0 => "", + 1 => "", +]; +$a->strings["User \"%s\" deleted"] = "User \"%s\" deleted"; +$a->strings["User \"%s\" blocked"] = "User \"%s\" blocked"; +$a->strings["User \"%s\" unblocked"] = "User \"%s\" unblocked"; +$a->strings["Account approved."] = "Account approved."; +$a->strings["Registration revoked"] = ""; +$a->strings["Private Forum"] = "Private Forum"; +$a->strings["Relay"] = "Relay"; +$a->strings["Email"] = "Email"; +$a->strings["Register date"] = "Registration date"; +$a->strings["Last login"] = "Last login"; +$a->strings["Last public item"] = ""; +$a->strings["Type"] = "Type"; +$a->strings["Add User"] = "Add user"; $a->strings["select all"] = "select all"; -$a->strings["select none"] = "select none"; -$a->strings["Unblock"] = "Unblock"; -$a->strings["No remote contact is blocked from this node."] = "No remote contact is blocked from this node."; -$a->strings["Blocked Remote Contacts"] = "Blocked remote contacts"; -$a->strings["Block New Remote Contact"] = "Block new remote contact"; -$a->strings["Photo"] = "Photo"; -$a->strings["Reason"] = "Reason"; -$a->strings["%s total blocked contact"] = [ - 0 => "%s total blocked contact", - 1 => "%s blocked contacts", -]; -$a->strings["URL of the remote contact to block."] = "URL of the remote contact to block."; -$a->strings["Block Reason"] = "Block reason"; -$a->strings["Server domain pattern added to blocklist."] = "Server domain pattern added to block-list."; -$a->strings["Site blocklist updated."] = "Site block-list updated."; -$a->strings["Blocked server domain pattern"] = "Blocked server domain pattern"; -$a->strings["Reason for the block"] = "Reason for the block"; -$a->strings["Delete server domain pattern"] = "Delete server domain pattern"; -$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the block-list"; -$a->strings["Server Domain Pattern Blocklist"] = "Server domain pattern block-list"; -$a->strings["This page can be used to define a blacklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "This page can be used to define a block-list of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily."; -$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"; -$a->strings["Add new entry to block list"] = "Add new entry to block-list"; -$a->strings["Server Domain Pattern"] = "Server Domain Pattern"; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "The domain pattern of the new server to add to the block-list. Do not include the protocol."; -$a->strings["Block reason"] = "Block reason"; -$a->strings["The reason why you blocked this server domain pattern."] = "The reason why you blocked this server domain pattern."; -$a->strings["Add Entry"] = "Add entry"; -$a->strings["Save changes to the blocklist"] = "Save changes to the block-list"; -$a->strings["Current Entries in the Blocklist"] = "Current entries in the block-list"; -$a->strings["Delete entry from blocklist"] = "Delete entry from block-list"; -$a->strings["Delete entry from blocklist?"] = "Delete entry from block-list?"; +$a->strings["User registrations waiting for confirm"] = "User registrations awaiting confirmation"; +$a->strings["User waiting for permanent deletion"] = "User awaiting permanent deletion"; +$a->strings["Request date"] = "Request date"; +$a->strings["No registrations."] = "No registrations."; +$a->strings["Note from the user"] = "Note from the user"; +$a->strings["Deny"] = "Deny"; +$a->strings["User blocked"] = "User blocked"; +$a->strings["Site admin"] = "Site admin"; +$a->strings["Account expired"] = "Account expired"; +$a->strings["New User"] = "New user"; +$a->strings["Permanent deletion"] = "Permanent deletion"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$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?"] = "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"; +$a->strings["Name of the new user."] = "Name of the new user."; +$a->strings["Nickname"] = "Nickname"; +$a->strings["Nickname of the new user."] = "Nickname of the new user."; +$a->strings["Email address of the new user."] = "Email address of the new user."; +$a->strings["Inspect Deferred Worker Queue"] = "Inspect deferred worker queue"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed."; +$a->strings["Inspect Worker Queue"] = "Inspect worker queue"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."; +$a->strings["ID"] = "ID"; +$a->strings["Job Parameters"] = "Job parameters"; +$a->strings["Created"] = "Created"; +$a->strings["Priority"] = "Priority"; $a->strings["Update has been marked successful"] = "Update has been marked successful"; $a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Execution of database structure update %s failed with error: %s"; @@ -1218,27 +1531,15 @@ $a->strings["Failed Updates"] = "Failed updates"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "This does not include updates prior to 1139, which did not return a status."; $a->strings["Mark success (if update was manually applied)"] = "Mark success (if update was manually applied)"; $a->strings["Attempt to execute this update step automatically"] = "Attempt to execute this update step automatically"; -$a->strings["Lock feature %s"] = "Lock feature %s"; -$a->strings["Manage Additional Features"] = "Manage additional features"; $a->strings["Other"] = "Other"; $a->strings["unknown"] = "unknown"; $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node.\""; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "The Auto Discovered Contact Directory feature is not enabled; enabling it will improve the data displayed here."; -$a->strings["Federation Statistics"] = "Federation statistics"; $a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Currently, this node is aware of %d nodes with %d registered users from the following platforms:"; -$a->strings["Item marked for deletion."] = "Item marked for deletion."; -$a->strings["Delete Item"] = "Delete item"; -$a->strings["Delete this Item"] = "Delete"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "GUID of item to be deleted."; -$a->strings["Item Guid"] = "Item Guid"; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Couldn't open %1\$s log file.\\r\\n
Check if file %1\$s is readable."; $a->strings["The logfile '%s' is not writable. No logging possible"] = "The logfile '%s' is not writable. No logging is possible"; -$a->strings["Log settings updated."] = "Log settings updated."; $a->strings["PHP log currently enabled."] = "PHP log currently enabled."; $a->strings["PHP log currently disabled."] = "PHP log currently disabled."; -$a->strings["Logs"] = "Logs"; $a->strings["Clear"] = "Clear"; $a->strings["Enable Debugging"] = "Enable debugging"; $a->strings["Log file"] = "Log file"; @@ -1246,20 +1547,9 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Log level"; $a->strings["PHP logging"] = "PHP logging"; $a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Couldn't open %1\$s log file.\\r\\n
Check if file %1\$s is readable."; -$a->strings["View Logs"] = "View logs"; -$a->strings["Inspect Deferred Worker Queue"] = "Inspect deferred worker queue"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "This page lists the deferred worker jobs. These are jobs that couldn't initially be executed."; -$a->strings["Inspect Worker Queue"] = "Inspect worker queue"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."; -$a->strings["ID"] = "ID"; -$a->strings["Job Parameters"] = "Job parameters"; -$a->strings["Created"] = "Created"; -$a->strings["Priority"] = "Priority"; $a->strings["Can not parse base url. Must have at least ://"] = "Can not parse base URL. Must have at least ://"; +$a->strings["Relocation started. Could take a while to complete."] = ""; $a->strings["Invalid storage backend setting value."] = "Invalid storage backend setting."; -$a->strings["Site settings updated."] = "Site settings updated."; $a->strings["No special theme for mobile devices"] = "No special theme for mobile devices"; $a->strings["%s - (Experimental)"] = "%s - (Experimental)"; $a->strings["No community page for local users"] = "No community page for local users"; @@ -1267,31 +1557,18 @@ $a->strings["No community page"] = "No community page"; $a->strings["Public postings from users of this site"] = "Public postings from users of this site"; $a->strings["Public postings from the federated network"] = "Public postings from the federated network"; $a->strings["Public postings from local users and the federated network"] = "Public postings from local users and the federated network"; -$a->strings["Disabled"] = "Disabled"; -$a->strings["Users"] = "Users"; -$a->strings["Users, Global Contacts"] = "Users, Global Contacts"; -$a->strings["Users, Global Contacts/fallback"] = "Users, global contacts/fallback"; -$a->strings["One month"] = "One month"; -$a->strings["Three months"] = "Three months"; -$a->strings["Half a year"] = "Half a year"; -$a->strings["One year"] = "One a year"; $a->strings["Multi user instance"] = "Multi user instance"; $a->strings["Closed"] = "Closed"; $a->strings["Requires approval"] = "Requires approval"; $a->strings["Open"] = "Open"; -$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state"; -$a->strings["Force all links to use SSL"] = "Force all links to use SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)"; $a->strings["Don't check"] = "Don't check"; $a->strings["check the stable version"] = "check for stable version updates"; $a->strings["check the development version"] = "check for development version updates"; $a->strings["none"] = ""; -$a->strings["Direct contacts"] = ""; -$a->strings["Contacts of contacts"] = ""; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; $a->strings["Database (legacy)"] = "Database (legacy)"; -$a->strings["Site"] = "Site"; $a->strings["Republish users to directory"] = "Republish users to directory"; -$a->strings["Registration"] = "Registration"; $a->strings["File upload"] = "File upload"; $a->strings["Policies"] = "Policies"; $a->strings["Auto Discovered Contact Directory"] = "Auto-discovered contact directory"; @@ -1316,8 +1593,6 @@ $a->strings["System theme"] = "System theme"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = "Default system theme - may be over-ridden by user profiles - Change default theme settings"; $a->strings["Mobile system theme"] = "Mobile system theme"; $a->strings["Theme for mobile devices"] = "Theme for mobile devices"; -$a->strings["SSL link policy"] = "SSL link policy"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL"; $a->strings["Force SSL"] = "Force SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."; $a->strings["Hide help entry from navigation menu"] = "Hide help entry from navigation menu"; @@ -1398,20 +1673,19 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum load average (frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximum system load before the frontend quits service (default 50)."; $a->strings["Minimal Memory"] = "Minimal memory"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."; -$a->strings["Maximum table size for optimization"] = "Maximum table size for optimization"; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maximum table size (in MB) for automatic optimization. Enter -1 to disable it."; -$a->strings["Minimum level of fragmentation"] = "Minimum level of fragmentation"; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimum fragmentation level to start the automatic optimization (default 30%)."; -$a->strings["Periodical check of global contacts"] = "Periodical check of global contacts"; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."; -$a->strings["Discover followers/followings from global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked for new contacts among their followers and following contacts. This option will create huge masses of jobs, so it should only be activated on powerful machines."] = ""; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Days between enquiry"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Number of days after which a server is rechecked for contacts."; $a->strings["Discover contacts from other servers"] = "Discover contacts from other servers"; -$a->strings["Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."] = "Periodically query other servers for contacts. You can choose between \"Users\": the users on the remote system, \"Global Contacts\": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommended setting is \"Users, Global Contacts\"."; -$a->strings["Timeframe for fetching global contacts"] = "Time-frame for fetching global contacts"; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Search the local directory"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."; $a->strings["Publish server information"] = "Publish server information"; @@ -1434,6 +1708,8 @@ $a->strings["Cache duration in seconds"] = "Cache duration in seconds"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "How long should cache files be held? (Default 86400 seconds - one day; -1 disables item cache)"; $a->strings["Maximum numbers of comments per post"] = "Maximum number of comments per post"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "How many comments should be shown for each post? (Default 100)"; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Temp path"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Enter a different temp path if your system restricts the webserver's access to the system temp path."; $a->strings["Disable picture proxy"] = "Disable picture proxy"; @@ -1468,8 +1744,10 @@ $a->strings["Comma separated list of tags for the \"tags\" subscription."] = "Co $a->strings["Allow user tags"] = "Allow user tags"; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = "If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."; $a->strings["Start Relocation"] = "Start relocation"; +$a->strings["Template engine (%s) error: %s"] = ""; $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB-only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"; $a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "A new Friendica version is available now. Your current version is %1\$s, upstream version is %2\$s"; $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear."; $a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that may appear in the console and logfile output."; @@ -1491,23 +1769,10 @@ $a->strings["Blog Account"] = "Blog account"; $a->strings["Private Forum Account"] = "Private forum account"; $a->strings["Message queues"] = "Message queues"; $a->strings["Server Settings"] = "Server Settings"; -$a->strings["Summary"] = "Summary"; $a->strings["Registered users"] = "Signed up users"; $a->strings["Pending registrations"] = "Pending registrations"; $a->strings["Version"] = "Version"; $a->strings["Active addons"] = "Active addons"; -$a->strings["Theme settings updated."] = "Theme settings updated."; -$a->strings["Theme %s disabled."] = "Theme %s disabled."; -$a->strings["Theme %s successfully enabled."] = "Theme %s successfully enabled."; -$a->strings["Theme %s failed to install."] = "Theme %s failed to install."; -$a->strings["Screenshot"] = "Screenshot"; -$a->strings["Themes"] = "Theme selection"; -$a->strings["Unknown theme."] = "Unknown theme."; -$a->strings["Reload active themes"] = "Reload active themes"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "No themes found on the system. They should be placed in %1\$s"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[Unsupported]"; -$a->strings["The Terms of Service settings have been updated."] = "The Terms of Service settings have been updated."; $a->strings["Display Terms of Service"] = "Display Terms of Service"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Enable the Terms of Service page. If this is enabled, a link to the terms will be added to the registration form and to the general information page."; $a->strings["Display Privacy Statement"] = "Display Privacy Statement"; @@ -1515,94 +1780,129 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Privacy Statement Preview"; $a->strings["The Terms of Service"] = "Terms of Service"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or less."; -$a->strings["%s user blocked"] = [ - 0 => "%s user blocked", - 1 => "%s users blocked", +$a->strings["Server domain pattern added to blocklist."] = "Server domain pattern added to block-list."; +$a->strings["Blocked server domain pattern"] = "Blocked server domain pattern"; +$a->strings["Reason for the block"] = "Reason for the block"; +$a->strings["Delete server domain pattern"] = "Delete server domain pattern"; +$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the block-list"; +$a->strings["Server Domain Pattern Blocklist"] = "Server domain pattern block-list"; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "The list of blocked server domain patterns will be made publicly available on the /friendica page so that your users and people investigating communication problems can find the reason easily."; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"; +$a->strings["Add new entry to block list"] = "Add new entry to block-list"; +$a->strings["Server Domain Pattern"] = "Server Domain Pattern"; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "The domain pattern of the new server to add to the block-list. Do not include the protocol."; +$a->strings["Block reason"] = "Block reason"; +$a->strings["The reason why you blocked this server domain pattern."] = "The reason why you blocked this server domain pattern."; +$a->strings["Add Entry"] = "Add entry"; +$a->strings["Save changes to the blocklist"] = "Save changes to the block-list"; +$a->strings["Current Entries in the Blocklist"] = "Current entries in the block-list"; +$a->strings["Delete entry from blocklist"] = "Delete entry from block-list"; +$a->strings["Delete entry from blocklist?"] = "Delete entry from block-list?"; +$a->strings["%s contact unblocked"] = [ + 0 => "%s contact unblocked", + 1 => "%s contacts unblocked", ]; -$a->strings["%s user unblocked"] = [ - 0 => "%s user unblocked", - 1 => "%s users unblocked", +$a->strings["Remote Contact Blocklist"] = "Remote contact block-list"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "This page allows you to prevent any message from a remote contact to reach your node."; +$a->strings["Block Remote Contact"] = "Block remote contact"; +$a->strings["select none"] = "select none"; +$a->strings["No remote contact is blocked from this node."] = "No remote contact is blocked from this node."; +$a->strings["Blocked Remote Contacts"] = "Blocked remote contacts"; +$a->strings["Block New Remote Contact"] = "Block new remote contact"; +$a->strings["Photo"] = "Photo"; +$a->strings["Reason"] = "Reason"; +$a->strings["%s total blocked contact"] = [ + 0 => "%s total blocked contact", + 1 => "%s blocked contacts", ]; -$a->strings["You can't remove yourself"] = "You can't remove yourself"; -$a->strings["%s user deleted"] = [ - 0 => "%s user deleted", - 1 => "%s users deleted", -]; -$a->strings["%s user approved"] = [ - 0 => "", - 1 => "", -]; -$a->strings["%s registration revoked"] = [ - 0 => "", - 1 => "", -]; -$a->strings["User \"%s\" deleted"] = "User \"%s\" deleted"; -$a->strings["User \"%s\" blocked"] = "User \"%s\" blocked"; -$a->strings["User \"%s\" unblocked"] = "User \"%s\" unblocked"; -$a->strings["Account approved."] = "Account approved."; -$a->strings["Registration revoked"] = ""; -$a->strings["Private Forum"] = "Private Forum"; -$a->strings["Relay"] = "Relay"; -$a->strings["Register date"] = "Registration date"; -$a->strings["Last login"] = "Last login"; -$a->strings["Last public item"] = ""; -$a->strings["Type"] = "Type"; -$a->strings["Add User"] = "Add user"; -$a->strings["User registrations waiting for confirm"] = "User registrations awaiting confirmation"; -$a->strings["User waiting for permanent deletion"] = "User awaiting permanent deletion"; -$a->strings["Request date"] = "Request date"; -$a->strings["No registrations."] = "No registrations."; -$a->strings["Note from the user"] = "Note from the user"; -$a->strings["Deny"] = "Deny"; -$a->strings["User blocked"] = "User blocked"; -$a->strings["Site admin"] = "Site admin"; -$a->strings["Account expired"] = "Account expired"; -$a->strings["New User"] = "New user"; -$a->strings["Permanent deletion"] = "Permanent deletion"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?"; -$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?"] = "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"; -$a->strings["Name of the new user."] = "Name of the new user."; -$a->strings["Nickname"] = "Nickname"; -$a->strings["Nickname of the new user."] = "Nickname of the new user."; -$a->strings["Email address of the new user."] = "Email address of the new user."; -$a->strings["No friends to display."] = "No friends to display."; -$a->strings["No installed applications."] = "No installed applications."; -$a->strings["Applications"] = "Applications"; +$a->strings["URL of the remote contact to block."] = "URL of the remote contact to block."; +$a->strings["Block Reason"] = "Block reason"; +$a->strings["Item Guid"] = "Item Guid"; +$a->strings["Item marked for deletion."] = "Item marked for deletion."; +$a->strings["Delete this Item"] = "Delete"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "GUID of item to be deleted."; +$a->strings["Addon not found."] = "Addon not found."; +$a->strings["Addon %s disabled."] = "Addon %s disabled."; +$a->strings["Addon %s enabled."] = "Addon %s enabled."; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = "Addon %s failed to install."; +$a->strings["Reload active addons"] = "Reload active addons"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"; +$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; +$a->strings["Find on this site"] = "Find on this site"; +$a->strings["Results for:"] = "Results for:"; +$a->strings["Site Directory"] = "Site directory"; $a->strings["Item was not found."] = "Item was not found."; -$a->strings["Submanaged account can't access the administation pages. Please log back in as the master account."] = "A managed account cannot access the administration pages. Please log in as administrator."; -$a->strings["Overview"] = "Overview"; -$a->strings["Configuration"] = "Configuration"; -$a->strings["Additional features"] = "Additional features"; -$a->strings["Database"] = "Database"; -$a->strings["DB updates"] = "DB updates"; -$a->strings["Inspect Deferred Workers"] = "Inspect deferred workers"; -$a->strings["Inspect worker Queue"] = "Inspect worker queue"; -$a->strings["Tools"] = "Tools"; -$a->strings["Contact Blocklist"] = "Contact block-list"; -$a->strings["Server Blocklist"] = "Server block-list"; -$a->strings["Diagnostics"] = "Diagnostics"; -$a->strings["PHP Info"] = "PHP info"; -$a->strings["probe address"] = "Probe address"; -$a->strings["check webfinger"] = "check WebFinger"; -$a->strings["Item Source"] = "Item source"; -$a->strings["Babel"] = "Babel"; -$a->strings["Addon Features"] = "Addon features"; -$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation"; -$a->strings["Profile Details"] = "Profile Details"; +$a->strings["Please enter a post body."] = "Please enter a post body."; +$a->strings["This feature is only available with the frio theme."] = "This feature is only available with the Frio theme."; +$a->strings["Compose new personal note"] = "Compose new personal note"; +$a->strings["Compose new post"] = "Compose new post"; +$a->strings["Visibility"] = "Visibility"; +$a->strings["Clear the location"] = "Clear location"; +$a->strings["Location services are unavailable on your device"] = "Location services are unavailable on your device"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Location services are disabled. Please check the website's permissions on your device"; +$a->strings["Installed addons/apps:"] = "Installed addons/apps:"; +$a->strings["No installed addons/apps"] = "No installed addons/apps"; +$a->strings["Read about the Terms of Service of this node."] = "Read about the Terms of Service of this node."; +$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Please visit Friendi.ca to learn more about the Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; +$a->strings["the bugtracker at github"] = "the bugtracker at github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"; $a->strings["Only You Can See This"] = "Only you can see this."; $a->strings["Tips for New Members"] = "Tips for New Members"; -$a->strings["People Search - %s"] = "People search - %s"; -$a->strings["Forum Search - %s"] = "Forum search - %s"; +$a->strings["The Photo with id %s is not available."] = ""; +$a->strings["Invalid photo with id %s."] = "Invalid photo with id %s."; +$a->strings["The provided profile link doesn't seem to be valid"] = ""; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."; $a->strings["Account"] = "Account"; -$a->strings["Two-factor authentication"] = "Two-factor authentication"; $a->strings["Display"] = "Display"; $a->strings["Manage Accounts"] = ""; $a->strings["Connected apps"] = "Connected apps"; $a->strings["Export personal data"] = "Export personal data"; $a->strings["Remove account"] = "Remove account"; -$a->strings["This page is missing a url parameter."] = "This page is missing a URL parameter."; -$a->strings["The post was created"] = "The post was created"; -$a->strings["Contact settings applied."] = "Contact settings applied."; +$a->strings["Could not create group."] = "Could not create group."; +$a->strings["Group not found."] = "Group not found."; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = "Unknown group."; +$a->strings["Contact is deleted."] = "Contact is deleted."; +$a->strings["Unable to add the contact to the group."] = "Unable to add contact to group."; +$a->strings["Contact successfully added to group."] = "Contact successfully added to group."; +$a->strings["Unable to remove the contact from the group."] = "Unable to remove contact from group."; +$a->strings["Contact successfully removed from group."] = "Contact successfully removed from group."; +$a->strings["Unknown group command."] = "Unknown group command."; +$a->strings["Bad request."] = "Bad request."; +$a->strings["Save Group"] = "Save group"; +$a->strings["Filter"] = "Filter"; +$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; +$a->strings["Group Name: "] = "Group name: "; +$a->strings["Contacts not in any group"] = "Contacts not in any group"; +$a->strings["Unable to remove group."] = "Unable to remove group."; +$a->strings["Delete Group"] = "Delete group"; +$a->strings["Edit Group Name"] = "Edit group name"; +$a->strings["Members"] = "Members"; +$a->strings["Remove contact from group"] = "Remove contact from group"; +$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove it."; +$a->strings["Add contact to group"] = "Add contact to group"; +$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not-logged-in users."; +$a->strings["Search"] = "Search"; +$a->strings["Items tagged with: %s"] = "Items tagged with: %s"; +$a->strings["You must be logged in to use this module."] = "You must be logged in to use this module."; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = "Search term already saved."; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "No profile"; +$a->strings["Error while sending poke, please retry."] = ""; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody"; +$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:"; +$a->strings["Make this post private"] = "Make this post private"; $a->strings["Contact update failed."] = "Contact update failed."; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Warning: These are highly advanced settings. If you enter incorrect information, your communications with this contact might be disrupted."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Please use your browser 'Back' button now if you are uncertain what to do on this page."; @@ -1610,7 +1910,6 @@ $a->strings["No mirroring"] = "No mirroring"; $a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting"; $a->strings["Mirror as my own posting"] = "Mirror as my own posting"; $a->strings["Return to contact editor"] = "Return to contact editor"; -$a->strings["Refetch contact data"] = "Re-fetch contact data."; $a->strings["Remote Self"] = "Remote self"; $a->strings["Mirror postings from this contact"] = "Mirror postings from this contact:"; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "This will cause Friendica to repost new entries from this contact."; @@ -1623,421 +1922,13 @@ $a->strings["Friend Confirm URL"] = "Friend confirm URL:"; $a->strings["Notification Endpoint URL"] = "Notification endpoint URL"; $a->strings["Poll/Feed URL"] = "Poll/Feed URL:"; $a->strings["New photo from this URL"] = "New photo from this URL:"; -$a->strings["%d contact edited."] = [ - 0 => "%d contact edited.", - 1 => "%d contacts edited.", -]; -$a->strings["Could not access contact record."] = "Could not access contact record."; -$a->strings["Contact updated."] = "Contact updated."; -$a->strings["Contact not found"] = "Contact not found"; -$a->strings["Contact has been blocked"] = "Contact has been blocked"; -$a->strings["Contact has been unblocked"] = "Contact has been unblocked"; -$a->strings["Contact has been ignored"] = "Contact has been ignored"; -$a->strings["Contact has been unignored"] = "Contact has been unignored"; -$a->strings["Contact has been archived"] = "Contact has been archived"; -$a->strings["Contact has been unarchived"] = "Contact has been unarchived"; -$a->strings["Drop contact"] = "Drop contact"; -$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?"; -$a->strings["Contact has been removed."] = "Contact has been removed."; -$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s"; -$a->strings["You are sharing with %s"] = "You are sharing with %s"; -$a->strings["%s is sharing with you"] = "%s is sharing with you"; -$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact."; -$a->strings["Never"] = "Never"; -$a->strings["(Update was successful)"] = "(Update was successful)"; -$a->strings["(Update was not successful)"] = "(Update was not successful)"; -$a->strings["Suggest friends"] = "Suggest friends"; -$a->strings["Network type: %s"] = "Network type: %s"; -$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!"; -$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Fetch information like preview pictures, title, and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."; -$a->strings["Fetch information"] = "Fetch information"; -$a->strings["Fetch keywords"] = "Fetch keywords"; -$a->strings["Fetch information and keywords"] = "Fetch information and keywords"; -$a->strings["Contact Information / Notes"] = "Personal note"; -$a->strings["Contact Settings"] = "Notification and privacy "; -$a->strings["Contact"] = "Contact"; -$a->strings["Their personal note"] = "Their personal note"; -$a->strings["Edit contact notes"] = "Edit contact notes"; -$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]"; -$a->strings["Block/Unblock contact"] = "Block/Unblock contact"; -$a->strings["Ignore contact"] = "Ignore contact"; -$a->strings["View conversations"] = "View conversations"; -$a->strings["Last update:"] = "Last update:"; -$a->strings["Update public posts"] = "Update public posts"; -$a->strings["Update now"] = "Update now"; -$a->strings["Unignore"] = "Unignore"; -$a->strings["Currently blocked"] = "Currently blocked"; -$a->strings["Currently ignored"] = "Currently ignored"; -$a->strings["Currently archived"] = "Currently archived"; -$a->strings["Awaiting connection acknowledge"] = "Awaiting connection acknowledgement"; -$a->strings["Hide this contact from others"] = "Hide this contact from others"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Replies/Likes to your public posts may still be visible"; -$a->strings["Notification for new posts"] = "Notification for new posts"; -$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact"; -$a->strings["Blacklisted keywords"] = "Blacklisted keywords"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"; -$a->strings["Actions"] = "Actions"; -$a->strings["Show all contacts"] = "Show all contacts"; -$a->strings["Pending"] = "Pending"; -$a->strings["Only show pending contacts"] = "Only show pending contacts."; -$a->strings["Blocked"] = "Blocked"; -$a->strings["Only show blocked contacts"] = "Only show blocked contacts"; -$a->strings["Ignored"] = "Ignored"; -$a->strings["Only show ignored contacts"] = "Only show ignored contacts"; -$a->strings["Archived"] = "Archived"; -$a->strings["Only show archived contacts"] = "Only show archived contacts"; -$a->strings["Hidden"] = "Hidden"; -$a->strings["Only show hidden contacts"] = "Only show hidden contacts"; -$a->strings["Organize your contact groups"] = "Organize your contact groups"; -$a->strings["Search your contacts"] = "Search your contacts"; -$a->strings["Results for: %s"] = "Results for: %s"; -$a->strings["Archive"] = "Archive"; -$a->strings["Unarchive"] = "Unarchive"; -$a->strings["Batch Actions"] = "Batch actions"; -$a->strings["Conversations started by this contact"] = "Conversations started by this contact"; -$a->strings["Posts and Comments"] = "Posts and Comments"; -$a->strings["View all contacts"] = "View all contacts"; -$a->strings["View all common friends"] = "View all common friends"; -$a->strings["Advanced Contact Settings"] = "Advanced contact settings"; -$a->strings["Mutual Friendship"] = "Mutual friendship"; -$a->strings["is a fan of yours"] = "is a fan of yours"; -$a->strings["you are a fan of"] = "I follow them"; -$a->strings["Pending outgoing contact request"] = "Pending outgoing contact request."; -$a->strings["Pending incoming contact request"] = "Pending incoming contact request."; -$a->strings["Edit contact"] = "Edit contact"; -$a->strings["Toggle Blocked status"] = "Toggle blocked status"; -$a->strings["Toggle Ignored status"] = "Toggle ignored status"; -$a->strings["Toggle Archive status"] = "Toggle archive status"; -$a->strings["Delete contact"] = "Delete contact"; -$a->strings["Local Community"] = "Local community"; -$a->strings["Posts from local users on this server"] = "Posts from local users on this server"; -$a->strings["Global Community"] = "Global community"; -$a->strings["Posts from users of the whole federated network"] = "Posts from users of the whole federated network"; -$a->strings["No results."] = "No results."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."; -$a->strings["Community option not available."] = "Community option not available."; -$a->strings["Not available."] = "Not available."; -$a->strings["Credits"] = "Credits"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"; -$a->strings["Source input"] = "Source input"; -$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw HTML)"; -$a->strings["BBCode::convert"] = "BBCode::convert"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; -$a->strings["Item Body"] = "Item body"; -$a->strings["Item Tags"] = "Item tags"; -$a->strings["Source input (Diaspora format)"] = "Source input (diaspora* format)"; -$a->strings["Source input (Markdown)"] = ""; -$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (raw HTML)"; -$a->strings["Markdown::convert"] = "Markdown::convert"; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Raw HTML input"; -$a->strings["HTML Input"] = "HTML input"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (raw HTML)"; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; -$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (compact)"; -$a->strings["Source text"] = "Source text"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["You must be logged in to use this module"] = "You must be logged in to use this module"; -$a->strings["Source URL"] = "Source URL"; -$a->strings["Time Conversion"] = "Time conversion"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones."; -$a->strings["UTC time: %s"] = "UTC time: %s"; -$a->strings["Current timezone: %s"] = "Current time zone: %s"; -$a->strings["Converted localtime: %s"] = "Converted local time: %s"; -$a->strings["Please select your timezone:"] = "Please select your time zone:"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to use the Probe feature."; -$a->strings["Lookup address"] = "Lookup address"; -$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own."; -$a->strings["Select an identity to manage: "] = "Select identity:"; -$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden)."; -$a->strings["Find on this site"] = "Find on this site"; -$a->strings["Results for:"] = "Results for:"; -$a->strings["Site Directory"] = "Site directory"; -$a->strings["Filetag %s saved to item"] = "File-tag %s saved to item"; -$a->strings["- select -"] = "- select -"; -$a->strings["Installed addons/apps:"] = "Installed addons/apps:"; -$a->strings["No installed addons/apps"] = "No installed addons/apps"; -$a->strings["Read about the Terms of Service of this node."] = "Read about the Terms of Service of this node."; -$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked."; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Please visit Friendi.ca to learn more about the Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit"; -$a->strings["the bugtracker at github"] = "the bugtracker at github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"; -$a->strings["Suggested contact not found."] = "Suggested contact not found."; -$a->strings["Friend suggestion sent."] = "Friend suggestion sent"; -$a->strings["Suggest Friends"] = "Suggest friends"; -$a->strings["Suggest a friend for %s"] = "Suggest a friend for %s"; -$a->strings["Group created."] = "Group created."; -$a->strings["Could not create group."] = "Could not create group."; -$a->strings["Group not found."] = "Group not found."; -$a->strings["Group name changed."] = "Group name changed."; -$a->strings["Unknown group."] = "Unknown group."; -$a->strings["Contact is deleted."] = "Contact is deleted."; -$a->strings["Unable to add the contact to the group."] = "Unable to add contact to group."; -$a->strings["Contact successfully added to group."] = "Contact successfully added to group."; -$a->strings["Unable to remove the contact from the group."] = "Unable to remove contact from group."; -$a->strings["Contact successfully removed from group."] = "Contact successfully removed from group."; -$a->strings["Unknown group command."] = "Unknown group command."; -$a->strings["Bad request."] = "Bad request."; -$a->strings["Save Group"] = "Save group"; -$a->strings["Filter"] = "Filter"; -$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends."; -$a->strings["Group removed."] = "Group removed."; -$a->strings["Unable to remove group."] = "Unable to remove group."; -$a->strings["Delete Group"] = "Delete group"; -$a->strings["Edit Group Name"] = "Edit group name"; -$a->strings["Members"] = "Members"; -$a->strings["Remove contact from group"] = "Remove contact from group"; -$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove it."; -$a->strings["Add contact to group"] = "Add contact to group"; -$a->strings["Help:"] = "Help:"; -$a->strings["Welcome to %s"] = "Welcome to %s"; -$a->strings["No profile"] = "No profile"; -$a->strings["Method Not Allowed."] = "Method not allowed."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup"; -$a->strings["System check"] = "System check"; -$a->strings["Check again"] = "Check again"; -$a->strings["Base settings"] = "Base settings"; -$a->strings["Host name"] = "Host name"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Overwrite this field in case the hostname is incorrect, otherwise leave it as is."; -$a->strings["Base path to installation"] = "Base path to installation"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."; -$a->strings["Sub path of the URL"] = "URL Sub-path "; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub-path."; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database server name"; -$a->strings["Database Login Name"] = "Database login name"; -$a->strings["Database Login Password"] = "Database login password"; -$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty"; -$a->strings["Database Name"] = "Database name"; -$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website"; -$a->strings["Site settings"] = "Site settings"; -$a->strings["Site administrator email address"] = "Site administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["System Language:"] = "System language:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication."; -$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed."; -$a->strings["Installation finished"] = "Installation finished"; -$a->strings["

What next

"] = "

What next

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the worker."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."; -$a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded"; -$a->strings["%s : Not a valid email address."] = "%s : Not a valid email address"; -$a->strings["Please join us on Friendica"] = "Please join us on Friendica."; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitation limit is exceeded. Please contact your site administrator."; -$a->strings["%s : Message delivery failed."] = "%s : Message delivery failed"; -$a->strings["%d message sent."] = [ - 0 => "%d message sent.", - 1 => "%d messages sent.", -]; -$a->strings["You have no more invitations available"] = "You have no more invitations available."; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connected to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members."; -$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."] = "Friendica sites are all inter-connected to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."; -$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s."; -$a->strings["Send invitations"] = "Send invitations"; -$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"; -$a->strings["Please enter a post body."] = "Please enter a post body."; -$a->strings["This feature is only available with the frio theme."] = "This feature is only available with the Frio theme."; -$a->strings["Compose new personal note"] = "Compose new personal note"; -$a->strings["Compose new post"] = "Compose new post"; -$a->strings["Visibility"] = "Visibility"; -$a->strings["Clear the location"] = "Clear location"; -$a->strings["Location services are unavailable on your device"] = "Location services are unavailable on your device"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "Location services are disabled. Please check the website's permissions on your device"; -$a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; -$a->strings["A Decentralized Social Network"] = ""; -$a->strings["Show Ignored Requests"] = "Show ignored requests."; -$a->strings["Hide Ignored Requests"] = "Hide ignored requests"; -$a->strings["Notification type:"] = "Notification type:"; -$a->strings["Suggested by:"] = "Suggested by:"; -$a->strings["Claims to be known to you: "] = "Says they know me:"; -$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts. You will also receive updates from them in your news feed."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."; -$a->strings["Friend"] = "Friend"; -$a->strings["Subscriber"] = "Subscriber"; -$a->strings["No introductions."] = "No introductions."; -$a->strings["No more %s notifications."] = "No more %s notifications."; -$a->strings["You must be logged in to show this page."] = ""; -$a->strings["Network Notifications"] = "Network notifications"; -$a->strings["System Notifications"] = "System notifications"; -$a->strings["Personal Notifications"] = "Personal notifications"; -$a->strings["Home Notifications"] = "Home notifications"; -$a->strings["Show unread"] = "Show unread"; -$a->strings["Show all"] = "Show all"; -$a->strings["The Photo with id %s is not available."] = ""; -$a->strings["Invalid photo with id %s."] = "Invalid photo with id %s."; -$a->strings["User not found."] = "User not found."; -$a->strings["No contacts."] = "No contacts."; -$a->strings["Follower (%s)"] = [ - 0 => "Follower (%s)", - 1 => "Followers (%s)", -]; -$a->strings["Following (%s)"] = [ - 0 => "Following (%s)", - 1 => "Following (%s)", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "Mutual friend (%s)", - 1 => "Mutual friends (%s)", -]; -$a->strings["Contact (%s)"] = [ - 0 => "Contact (%s)", - 1 => "Contacts (%s)", -]; -$a->strings["All contacts"] = "All contacts"; -$a->strings["Member since:"] = "Member since:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Birthday:"; -$a->strings["Age: "] = "Age: "; -$a->strings["%d year old"] = [ - 0 => "", - 1 => "", -]; -$a->strings["Forums:"] = "Forums:"; -$a->strings["View profile as:"] = ""; -$a->strings["%s's timeline"] = "%s's timeline"; -$a->strings["%s's posts"] = "%s's posts"; -$a->strings["%s's comments"] = "%s's comments"; -$a->strings["Only parent users can create additional accounts."] = ""; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."; -$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?"; -$a->strings["Note for the admin"] = "Note for the admin"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin. Why do you want to join this node?"; -$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only."; -$a->strings["Your invitation code: "] = "Your invitation code: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: "; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Your Email Address: (Initial information will be sent there, so this must be an existing address.)"; -$a->strings["Please repeat your e-mail address:"] = ""; -$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."; -$a->strings["Choose a nickname: "] = "Choose a nickname: "; -$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node."; -$a->strings["Note: This node explicitly contains adult content"] = "Note: This node explicitly contains adult content"; -$a->strings["Parent Password:"] = "Parent Password:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Please enter the password of the parent account to authorize this request."; -$a->strings["Password doesn't match."] = ""; -$a->strings["Please enter your password."] = ""; -$a->strings["You have entered too much information."] = "You have entered too much information."; -$a->strings["Please enter the identical mail address in the second field."] = ""; -$a->strings["The additional account was created."] = ""; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Failed to send email message. Here are your account details:
login: %s
password: %s

You can change your password after login."; -$a->strings["Registration successful."] = "Registration successful."; -$a->strings["Your registration can not be processed."] = "Your registration cannot be processed."; -$a->strings["You have to leave a request note for the admin."] = "You have to leave a request note for the admin."; -$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator."; -$a->strings["The provided profile link doesn't seem to be valid"] = ""; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Enter your WebFinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."; -$a->strings["You must be logged in to use this module."] = "You must be logged in to use this module."; -$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not-logged-in users."; -$a->strings["Items tagged with: %s"] = "Items tagged with: %s"; -$a->strings["Search term successfully saved."] = "Search term successfully saved."; -$a->strings["Search term already saved."] = "Search term already saved."; -$a->strings["Search term successfully removed."] = "Search term successfully removed."; -$a->strings["Create a New Account"] = "Create a new account"; -$a->strings["Your OpenID: "] = "Your OpenID: "; -$a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Please enter your username and password to add the OpenID to your existing account."; -$a->strings["Or login using OpenID: "] = "Or login with OpenID: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Remember me"] = "Remember me"; -$a->strings["Forgot your password?"] = "Forgot your password?"; -$a->strings["Website Terms of Service"] = "Website Terms of Service"; -$a->strings["terms of service"] = "Terms of service"; -$a->strings["Website Privacy Policy"] = "Website Privacy Policy"; -$a->strings["privacy policy"] = "Privacy policy"; -$a->strings["Logged out."] = "Logged out."; -$a->strings["OpenID protocol error. No ID returned"] = ""; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "Account not found. Please login to your existing account to add the OpenID to it."; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "Account not found. Please register a new account or login to your existing account to add the OpenID."; -$a->strings["Remaining recovery codes: %d"] = "Remaining recovery codes: %d"; -$a->strings["Invalid code, please retry."] = "Invalid code, please try again."; -$a->strings["Two-factor recovery"] = "Two-factor recovery"; -$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Don’t have your phone? Enter a two-factor recovery code"; -$a->strings["Please enter a recovery code"] = "Please enter a recovery code"; -$a->strings["Submit recovery code and complete login"] = "Submit recovery code and complete login"; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"; -$a->strings["Please enter a code from your authentication app"] = "Please enter a code from your authentication app"; -$a->strings["Verify code and complete login"] = "Verify code and complete login"; -$a->strings["Delegation successfully granted."] = "Delegation successfully granted."; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "Parent user not found, unavailable or password doesn't match."; -$a->strings["Delegation successfully revoked."] = "Delegation successfully revoked."; -$a->strings["Delegated administrators can view but not change delegation permissions."] = "Delegated administrators can view but not change delegation permissions."; -$a->strings["Delegate user not found."] = "Delegate user not found."; -$a->strings["No parent user"] = "No parent user"; -$a->strings["Parent User"] = "Parent user"; -$a->strings["Additional Accounts"] = ""; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = ""; -$a->strings["Register an additional account"] = ""; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Parent users have total control of this account, including core settings. Please double-check whom you grant such access."; -$a->strings["Delegates"] = "Delegates"; -$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."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."; -$a->strings["Existing Page Delegates"] = "Existing page delegates"; -$a->strings["Potential Delegates"] = "Potential delegates"; -$a->strings["Add"] = "Add"; -$a->strings["No entries."] = "No entries."; -$a->strings["The theme you chose isn't available."] = "The theme you chose isn't available."; -$a->strings["%s - (Unsupported)"] = "%s - (Unsupported)"; -$a->strings["Display Settings"] = "Display Settings"; -$a->strings["General Theme Settings"] = "Themes"; -$a->strings["Custom Theme Settings"] = "Theme customization"; -$a->strings["Content Settings"] = "Content/Layout"; -$a->strings["Theme settings"] = "Theme settings"; -$a->strings["Calendar"] = "Calendar"; -$a->strings["Display Theme:"] = "Display theme:"; -$a->strings["Mobile Theme:"] = "Mobile theme:"; -$a->strings["Number of items to display per page:"] = "Number of items displayed per page:"; -$a->strings["Maximum of 100 items"] = "Maximum of 100 items"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Number of items displayed per page on mobile devices:"; -$a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1."; -$a->strings["Automatic updates only at the top of the post stream pages"] = ""; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; -$a->strings["Don't show emoticons"] = "Don't show emoticons"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = ""; -$a->strings["Infinite scroll"] = "Infinite scroll"; -$a->strings["Automatic fetch new items when reaching the page end."] = ""; -$a->strings["Disable Smart Threading"] = "Disable smart threading"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Disable the automatic suppression of extraneous thread indentation."; -$a->strings["Hide the Dislike feature"] = ""; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; -$a->strings["Beginning of week:"] = "Week begins: "; +$a->strings["No installed applications."] = "No installed applications."; +$a->strings["Applications"] = "Applications"; $a->strings["Profile Name is required."] = "Profile name is required."; -$a->strings["Profile updated."] = "Profile updated."; $a->strings["Profile couldn't be updated."] = ""; $a->strings["Label:"] = ""; $a->strings["Value:"] = ""; -$a->strings["Field Permissions"] = ""; +$a->strings["Field Permissions"] = "Field Permissions"; $a->strings["(click to open/close)"] = "(reveal/hide)"; $a->strings["Add a new profile field"] = ""; $a->strings["Profile Actions"] = "Profile actions"; @@ -2047,7 +1938,6 @@ $a->strings["Profile picture"] = "Profile picture"; $a->strings["Location"] = "Location"; $a->strings["Miscellaneous"] = "Miscellaneous"; $a->strings["Custom Profile Fields"] = ""; -$a->strings["Upload Profile Photo"] = "Upload profile photo"; $a->strings["Display name:"] = ""; $a->strings["Street Address:"] = "Street address:"; $a->strings["Locality/City:"] = "Locality/City:"; @@ -2071,7 +1961,6 @@ $a->strings["Crop Image"] = "Crop Image"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing."; $a->strings["Use Image As Is"] = ""; $a->strings["Missing uploaded image."] = ""; -$a->strings["Image uploaded successfully."] = "Image uploaded successfully."; $a->strings["Profile Picture Settings"] = ""; $a->strings["Current Profile Picture"] = ""; $a->strings["Upload Profile Picture"] = ""; @@ -2079,23 +1968,23 @@ $a->strings["Upload Picture:"] = ""; $a->strings["or"] = "or"; $a->strings["skip this step"] = "skip this step"; $a->strings["select a photo from your photo albums"] = "select a photo from your photo albums"; -$a->strings["Please enter your password to access this page."] = "Please enter your password to access this page."; -$a->strings["App-specific password generation failed: The description is empty."] = "App-specific password generation failed: The description is empty."; -$a->strings["App-specific password generation failed: This description already exists."] = "App-specific password generation failed: This description already exists."; -$a->strings["New app-specific password generated."] = "New app-specific password generated."; -$a->strings["App-specific passwords successfully revoked."] = "App-specific passwords successfully revoked."; -$a->strings["App-specific password successfully revoked."] = "App-specific password successfully revoked."; -$a->strings["Two-factor app-specific passwords"] = "Two-factor app-specific passwords"; -$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Make sure to copy your new app-specific password now. You won’t be able to see it again!"; -$a->strings["Description"] = "Description"; -$a->strings["Last Used"] = "Last used"; -$a->strings["Revoke"] = "Revoke"; -$a->strings["Revoke All"] = "Revoke all"; -$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it."; -$a->strings["Generate new app-specific password"] = "Generate new app-specific password"; -$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa on my Fairphone 2..."; -$a->strings["Generate"] = "Generate"; +$a->strings["Delegation successfully granted."] = "Delegation successfully granted."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "Parent user not found, unavailable or password doesn't match."; +$a->strings["Delegation successfully revoked."] = "Delegation successfully revoked."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "Delegated administrators can view but not change delegation permissions."; +$a->strings["Delegate user not found."] = "Delegate user not found."; +$a->strings["No parent user"] = "No parent user"; +$a->strings["Parent User"] = "Parent user"; +$a->strings["Additional Accounts"] = ""; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = ""; +$a->strings["Register an additional account"] = ""; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Parent users have total control of this account, including core settings. Please double-check whom you grant such access."; +$a->strings["Delegates"] = "Delegates"; +$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."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."; +$a->strings["Existing Page Delegates"] = "Existing page delegates"; +$a->strings["Potential Delegates"] = "Potential delegates"; +$a->strings["Add"] = "Add"; +$a->strings["No entries."] = "No entries."; $a->strings["Two-factor authentication successfully disabled."] = "Two-factor authentication successfully disabled."; $a->strings["Wrong Password"] = "Wrong password"; $a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"; @@ -2117,150 +2006,76 @@ $a->strings["Disable two-factor authentication"] = "Disable two-factor authentic $a->strings["Show recovery codes"] = "Show recovery codes"; $a->strings["Manage app-specific passwords"] = "Manage app-specific passwords."; $a->strings["Finish app configuration"] = "Finish app configuration"; -$a->strings["New recovery codes successfully generated."] = "New recovery codes successfully generated."; -$a->strings["Two-factor recovery codes"] = "Two-factor recovery codes"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

"; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."; -$a->strings["Generate new recovery codes"] = "Generate new recovery codes"; -$a->strings["Next: Verification"] = "Next: Verification"; +$a->strings["Please enter your password to access this page."] = "Please enter your password to access this page."; $a->strings["Two-factor authentication successfully activated."] = "Two-factor authentication successfully activated."; $a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"; $a->strings["Two-factor code verification"] = "Two-factor code verification"; $a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Please scan this QR Code with your authenticator app and submit the provided code.

"; $a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = "

Or you can open the following URL in your mobile device:

%s

"; $a->strings["Verify code and enable two-factor authentication"] = "Verify code and enable two-factor authentication"; +$a->strings["New recovery codes successfully generated."] = "New recovery codes successfully generated."; +$a->strings["Two-factor recovery codes"] = "Two-factor recovery codes"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe place! If you lose your device and don’t have the recovery codes you will lose access to your account.

"; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."; +$a->strings["Generate new recovery codes"] = "Generate new recovery codes"; +$a->strings["Next: Verification"] = "Next: Verification"; +$a->strings["App-specific password generation failed: The description is empty."] = "App-specific password generation failed: The description is empty."; +$a->strings["App-specific password generation failed: This description already exists."] = "App-specific password generation failed: This description already exists."; +$a->strings["New app-specific password generated."] = "New app-specific password generated."; +$a->strings["App-specific passwords successfully revoked."] = "App-specific passwords successfully revoked."; +$a->strings["App-specific password successfully revoked."] = "App-specific password successfully revoked."; +$a->strings["Two-factor app-specific passwords"] = "Two-factor app-specific passwords"; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = "

App-specific passwords are randomly generated passwords. They are used instead of your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Make sure to copy your new app-specific password now. You won’t be able to see it again!"; +$a->strings["Description"] = "Description"; +$a->strings["Last Used"] = "Last used"; +$a->strings["Revoke"] = "Revoke"; +$a->strings["Revoke All"] = "Revoke all"; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = "When you generate a new app-specific password, you must use it right away. It will be shown to you only once after you generate it."; +$a->strings["Generate new app-specific password"] = "Generate new app-specific password"; +$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa on my Fairphone 2..."; +$a->strings["Generate"] = "Generate"; +$a->strings["The theme you chose isn't available."] = "The theme you chose isn't available."; +$a->strings["%s - (Unsupported)"] = "%s - (Unsupported)"; +$a->strings["Display Settings"] = "Display Settings"; +$a->strings["General Theme Settings"] = "Themes"; +$a->strings["Custom Theme Settings"] = "Theme customization"; +$a->strings["Content Settings"] = "Content/Layout"; +$a->strings["Calendar"] = "Calendar"; +$a->strings["Display Theme:"] = "Display theme:"; +$a->strings["Mobile Theme:"] = "Mobile theme:"; +$a->strings["Number of items to display per page:"] = "Number of items displayed per page:"; +$a->strings["Maximum of 100 items"] = "Maximum of 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Number of items displayed per page on mobile devices:"; +$a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1."; +$a->strings["Automatic updates only at the top of the post stream pages"] = ""; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; +$a->strings["Don't show emoticons"] = "Don't show emoticons"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = ""; +$a->strings["Infinite scroll"] = "Infinite scroll"; +$a->strings["Automatic fetch new items when reaching the page end."] = ""; +$a->strings["Disable Smart Threading"] = "Disable smart threading"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "Disable the automatic suppression of extraneous thread indentation."; +$a->strings["Hide the Dislike feature"] = ""; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; +$a->strings["Beginning of week:"] = "Week begins: "; $a->strings["Export account"] = "Export account"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server."; $a->strings["Export all"] = "Export all"; $a->strings["Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; $a->strings["Export Contacts to CSV"] = "Export contacts to CSV"; $a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "Export the list of the accounts you are following as CSV file. Compatible with Mastodon for example."; -$a->strings["Bad Request"] = "Bad request"; -$a->strings["Unauthorized"] = "Unauthorized"; -$a->strings["Forbidden"] = "Forbidden"; -$a->strings["Not Found"] = "Not found"; -$a->strings["Internal Server Error"] = "Internal Server Error"; -$a->strings["Service Unavailable"] = "Service Unavailable"; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = "The server cannot process the request due to an apparent client error."; -$a->strings["Authentication is required and has failed or has not yet been provided."] = "Authentication is required but has failed or not yet being provided."; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."; -$a->strings["The requested resource could not be found but may be available in the future."] = "The requested resource could not be found but may be available in the future."; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "An unexpected condition was encountered and no more specific message is available."; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "The server is currently unavailable (possibly because it is overloaded or down for maintenance). Please try again later."; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), a username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but won’t be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner's accounts."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."; -$a->strings["Privacy Statement"] = "Privacy Statement"; -$a->strings["Welcome to Friendica"] = "Welcome to Friendica"; -$a->strings["New Member Checklist"] = "New Member Checklist"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."; -$a->strings["Getting Started"] = "Getting started"; -$a->strings["Friendica Walk-Through"] = "Friendica walk-through"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."; -$a->strings["Go to Your Settings"] = "Go to your settings"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."; -$a->strings["Upload 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 a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."; -$a->strings["Edit Your Profile"] = "Edit your profile"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."; -$a->strings["Profile Keywords"] = "Profile keywords"; -$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; -$a->strings["Connecting"] = "Connecting"; -$a->strings["Importing Emails"] = "Importing emails"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"; -$a->strings["Go to Your Contacts Page"] = "Go to your contacts page"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "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."; -$a->strings["Go to Your Site's Directory"] = "Go to your site's directory"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "The directory 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 when requested."; -$a->strings["Finding New People"] = "Finding new people"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."; -$a->strings["Group Your Contacts"] = "Group your contacts"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."; -$a->strings["Why Aren't My Posts Public?"] = "Why aren't my posts public?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."; -$a->strings["Getting Help"] = "Getting help"; -$a->strings["Go to the Help Section"] = "Go to the help section"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Our help pages may be consulted for detail on other program features and resources."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network."; -$a->strings["You may visit them online at %s"] = "You may visit them online at %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages."; -$a->strings["%s posted an update."] = "%s posted an update."; -$a->strings["This entry was edited"] = "This entry was edited"; -$a->strings["Private Message"] = "Private message"; -$a->strings["pinned item"] = "pinned item"; -$a->strings["Delete locally"] = "Delete locally"; -$a->strings["Delete globally"] = "Delete globally"; -$a->strings["Remove locally"] = "Remove locally"; -$a->strings["save to folder"] = "Save to folder"; -$a->strings["I will attend"] = "I will attend"; -$a->strings["I will not attend"] = "I will not attend"; -$a->strings["I might attend"] = "I might attend"; -$a->strings["ignore thread"] = "Ignore thread"; -$a->strings["unignore thread"] = "Unignore thread"; -$a->strings["toggle ignore status"] = "Toggle ignore status"; -$a->strings["pin"] = "Pin"; -$a->strings["unpin"] = "Unpin"; -$a->strings["toggle pin status"] = "Toggle pin status"; -$a->strings["pinned"] = "pinned"; -$a->strings["add star"] = "Add star"; -$a->strings["remove star"] = "Remove star"; -$a->strings["toggle star status"] = "Toggle star status"; -$a->strings["starred"] = "Starred"; -$a->strings["add tag"] = "Add tag"; -$a->strings["like"] = "Like"; -$a->strings["dislike"] = "Dislike"; -$a->strings["Share this"] = "Share this"; -$a->strings["share"] = "Share"; -$a->strings["%s (Received %s)"] = "%s (Received %s)"; -$a->strings["Comment this item on your system"] = ""; -$a->strings["remote comment"] = ""; -$a->strings["Pushed"] = ""; -$a->strings["Pulled"] = ""; -$a->strings["to"] = "to"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-wall"; -$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:"; -$a->strings["Reply to %s"] = "Reply to %s"; -$a->strings["More"] = ""; -$a->strings["Notifier task is pending"] = "Notifier task is pending"; -$a->strings["Delivery to remote servers is pending"] = "Delivery to remote servers is pending"; -$a->strings["Delivery to remote servers is underway"] = "Delivery to remote servers is underway"; -$a->strings["Delivery to remote servers is mostly done"] = "Delivery to remote servers is mostly done"; -$a->strings["Delivery to remote servers is done"] = "Delivery to remote servers is done"; -$a->strings["%d comment"] = [ - 0 => "%d comment", - 1 => "%d comments", -]; -$a->strings["Show more"] = "Show more"; -$a->strings["Show fewer"] = "Show fewer"; -$a->strings["Attachments:"] = "Attachments:"; +$a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance."; $a->strings["%s is now following %s."] = "%s is now following %s."; $a->strings["following"] = "following"; $a->strings["%s stopped following %s."] = "%s stopped following %s."; $a->strings["stopped following"] = "stopped following"; -$a->strings["Hometown:"] = "Home town:"; -$a->strings["Marital Status:"] = ""; -$a->strings["With:"] = ""; -$a->strings["Since:"] = ""; -$a->strings["Sexual Preference:"] = "Sexual preference:"; -$a->strings["Political Views:"] = "Political views:"; -$a->strings["Religious Views:"] = "Religious views:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Title/Description:"] = "Title/Description:"; -$a->strings["Musical interests"] = "Music:"; -$a->strings["Books, literature"] = "Books, literature, poetry:"; -$a->strings["Television"] = "Television:"; -$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interests:"; -$a->strings["Love/romance"] = "Love/Romance:"; -$a->strings["Work/employment"] = "Work/Employment:"; -$a->strings["School/education"] = "School/Education:"; -$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:"; -$a->strings["Friendica Notification"] = "Friendica notification"; +$a->strings["Attachments:"] = "Attachments:"; $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator"; $a->strings["%s Administrator"] = "%s Administrator"; $a->strings["thanks"] = ""; +$a->strings["Friendica Notification"] = "Friendica notification"; $a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD or MM-DD"; $a->strings["never"] = "never"; $a->strings["less than a second ago"] = "less than a second ago"; @@ -2277,58 +2092,236 @@ $a->strings["second"] = "second"; $a->strings["seconds"] = "seconds"; $a->strings["in %1\$d %2\$s"] = "in %1\$d %2\$s"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago"; -$a->strings["(no subject)"] = "(no subject)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Updating author-id and owner-id in item and thread table. "; -$a->strings["%s: Updating post-type."] = "%s: Updating post-type."; -$a->strings["default"] = "default"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variations"; -$a->strings["Custom"] = "Custom"; -$a->strings["Note"] = "Note"; -$a->strings["Check image permissions if all users are allowed to see the image"] = "Check image permissions that everyone is allowed to see the image"; -$a->strings["Select color scheme"] = "Select color scheme"; -$a->strings["Copy or paste schemestring"] = "Copy or paste theme string"; -$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = "You can copy this string to share your theme with others. Pasting here applies the theme string"; -$a->strings["Navigation bar background color"] = "Navigation bar background color:"; -$a->strings["Navigation bar icon color "] = "Navigation bar icon color:"; -$a->strings["Link color"] = "Link color:"; -$a->strings["Set the background color"] = "Background color:"; -$a->strings["Content background opacity"] = "Content background opacity"; -$a->strings["Set the background image"] = "Background image:"; -$a->strings["Background image style"] = "Background image style"; -$a->strings["Login page background image"] = "Login page background image"; -$a->strings["Login page background color"] = "Login page background color"; -$a->strings["Leave background image and color empty for theme defaults"] = "Leave background image and color empty for theme defaults"; -$a->strings["Skip to main content"] = ""; -$a->strings["Top Banner"] = "Top Banner"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Resize image to the width of the screen and show background color below on long pages."; -$a->strings["Full screen"] = "Full screen"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Resize image to fill entire screen, clipping either the right or the bottom."; -$a->strings["Single row mosaic"] = "Single row mosaic"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Resize image to repeat it on a single row, either vertical or horizontal."; -$a->strings["Mosaic"] = "Mosaic"; -$a->strings["Repeat image to fill the screen."] = "Repeat image to fill the screen."; -$a->strings["Guest"] = "Guest"; -$a->strings["Visitor"] = "Visitor"; -$a->strings["Alignment"] = "Alignment"; -$a->strings["Left"] = "Left"; -$a->strings["Center"] = "Center"; -$a->strings["Color scheme"] = "Color scheme"; -$a->strings["Posts font size"] = "Posts font size"; -$a->strings["Textareas font size"] = "Text areas font size"; -$a->strings["Comma separated list of helper forums"] = "Comma-separated list of helper forums"; -$a->strings["don't show"] = "don't show"; -$a->strings["show"] = "show"; -$a->strings["Set style"] = "Set style"; -$a->strings["Community Pages"] = "Community pages"; -$a->strings["Community Profiles"] = "Community profiles"; -$a->strings["Help or @NewHere ?"] = "Help or @NewHere ?"; -$a->strings["Connect Services"] = "Connect services"; -$a->strings["Find Friends"] = "Find friends"; -$a->strings["Last users"] = "Last users"; -$a->strings["Quick Start"] = "Quick start"; +$a->strings["Database storage failed to update %s"] = "Database storage failed to update %s"; +$a->strings["Database storage failed to insert data"] = "Database storage failed to insert data"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "Filesystem storage failed to create \"%s\". Check you write permissions."; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "Filesystem storage failed to save data to \"%s\". Check your write permissions"; +$a->strings["Storage base path"] = "Storage base path"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Folder where uploaded files are saved. For maximum security, this should be a path outside web server folder tree"; +$a->strings["Enter a valid existing folder"] = "Enter a valid existing folder"; +$a->strings["activity"] = "activity"; +$a->strings["post"] = "post"; +$a->strings["Content warning: %s"] = "Content warning: %s"; +$a->strings["bytes"] = "bytes"; +$a->strings["View on separate page"] = "View on separate page"; +$a->strings["view on separate page"] = "view on separate page"; +$a->strings["link to source"] = "Link to source"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["UnFollow"] = "Unfollow"; +$a->strings["Drop Contact"] = "Drop contact"; +$a->strings["Organisation"] = "Organization"; +$a->strings["News"] = "News"; +$a->strings["Forum"] = "Forum"; +$a->strings["Connect URL missing."] = "Connect URL missing."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."; +$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered."; +$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information."; +$a->strings["An author or name was not found."] = "An author or name was not found."; +$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact."; +$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you."; +$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information."; +$a->strings["Starts:"] = "Starts:"; +$a->strings["Finishes:"] = "Finishes:"; +$a->strings["all-day"] = "All-day"; +$a->strings["Sept"] = "Sep"; +$a->strings["No events to display"] = "No events to display"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Edit event"; +$a->strings["Duplicate event"] = "Duplicate event"; +$a->strings["Delete event"] = "Delete event"; +$a->strings["D g:i A"] = "D g:i A"; +$a->strings["g:i A"] = "g:i A"; +$a->strings["Show map"] = "Show map"; +$a->strings["Hide map"] = "Hide map"; +$a->strings["%s's birthday"] = "%s's birthday"; +$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!"; +$a->strings["Login failed"] = "Login failed"; +$a->strings["Not enough information to authenticate"] = "Not enough information to authenticate"; +$a->strings["Password can't be empty"] = "Password can't be empty"; +$a->strings["Empty passwords are not allowed."] = "Empty passwords are not allowed."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "The new password has been exposed in a public data dump; please choose another."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "The password can't contain accentuated letters, white spaces or colons (:)"; +$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged."; +$a->strings["An invitation is required."] = "An invitation is required."; +$a->strings["Invitation could not be verified."] = "Invitation could not be verified."; +$a->strings["Invalid OpenID url"] = "Invalid OpenID URL"; +$a->strings["Please enter the required information."] = "Please enter the required information."; +$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."; +$a->strings["Username should be at least %s character."] = [ + 0 => "Username should be at least %s character.", + 1 => "Username should be at least %s characters.", +]; +$a->strings["Username should be at most %s character."] = [ + 0 => "Username should be at most %s character.", + 1 => "Username should be at most %s characters.", +]; +$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name."; +$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site."; +$a->strings["Not a valid email address."] = "Not a valid email address."; +$a->strings["The nickname was blocked from registration by the nodes admin."] = "The nickname was blocked from registration by the nodes admin."; +$a->strings["Cannot use that email."] = "Cannot use that email."; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Your nickname can only contain a-z, 0-9 and _."; +$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed."; +$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again."; +$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again."; +$a->strings["An error occurred creating your self contact. Please try again."] = "An error occurred creating your self contact. Please try again."; +$a->strings["Friends"] = "Friends"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "An error occurred while creating your default contact group. Please try again."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Registration details for %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Registration at %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."; +$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."] = "A deleted group with this name has been 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."; +$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts"; +$a->strings["Everybody"] = "Everybody"; +$a->strings["edit"] = "edit"; +$a->strings["add"] = "add"; +$a->strings["Edit group"] = "Edit group"; +$a->strings["Create a new group"] = "Create new group"; +$a->strings["Edit groups"] = "Edit groups"; +$a->strings["Change profile photo"] = "Change profile photo"; +$a->strings["Atom feed"] = "Atom feed"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[today]"; +$a->strings["Birthday Reminders"] = "Birthday reminders"; +$a->strings["Birthdays this week:"] = "Birthdays this week:"; +$a->strings["[No description]"] = "[No description]"; +$a->strings["Event Reminders"] = "Event reminders"; +$a->strings["Upcoming events the next 7 days:"] = "Upcoming events the next 7 days:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s welcomes %2\$s"; +$a->strings["Add New Contact"] = "Add new contact"; +$a->strings["Enter address or web location"] = "Enter address or web location"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo"; +$a->strings["Connect"] = "Connect"; +$a->strings["%d invitation available"] = [ + 0 => "%d invitation available", + 1 => "%d invitations available", +]; +$a->strings["Everyone"] = ""; +$a->strings["Relationships"] = "Relationships"; +$a->strings["Protocols"] = "Protocols"; +$a->strings["All Protocols"] = "All protocols"; +$a->strings["Saved Folders"] = "Saved Folders"; +$a->strings["Everything"] = "Everything"; +$a->strings["Categories"] = "Categories"; +$a->strings["%d contact in common"] = [ + 0 => "%d contact in common", + 1 => "%d contacts in common", +]; +$a->strings["Archives"] = "Archives"; +$a->strings["Frequently"] = "Frequently"; +$a->strings["Hourly"] = "Hourly"; +$a->strings["Twice daily"] = "Twice daily"; +$a->strings["Daily"] = "Daily"; +$a->strings["Weekly"] = "Weekly"; +$a->strings["Monthly"] = "Monthly"; +$a->strings["DFRN"] = "DFRN"; +$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["Discourse"] = "Discourse"; +$a->strings["Diaspora Connector"] = "diaspora* connector"; +$a->strings["GNU Social Connector"] = "GNU Social Connector"; +$a->strings["ActivityPub"] = "ActivityPub"; +$a->strings["pnut"] = "pnut"; +$a->strings["%s (via %s)"] = ""; +$a->strings["General Features"] = "General"; +$a->strings["Photo Location"] = "Photo location"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata."; +$a->strings["Trending Tags"] = "Trending tags"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Show a community page widget with a list of the most popular tags in recent public posts."; +$a->strings["Post Composition Features"] = "Post composition"; +$a->strings["Auto-mention Forums"] = "Auto-mention forums"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window."; +$a->strings["Explicit Mentions"] = "Explicit Mentions"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Add explicit mentions to comment box for manual control over who gets mentioned in replies."; +$a->strings["Post/Comment Tools"] = "Post/Comment tools"; +$a->strings["Post Categories"] = "Post categories"; +$a->strings["Add categories to your posts"] = "Add categories to your posts"; +$a->strings["Advanced Profile Settings"] = "Advanced profiles"; +$a->strings["List Forums"] = "List forums"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page"; +$a->strings["Tag Cloud"] = "Tag cloud"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Provide a personal tag cloud on your profile page"; +$a->strings["Display Membership Date"] = "Display membership date"; +$a->strings["Display membership date in profile"] = "Display membership date in profile"; +$a->strings["Nothing new here"] = "Nothing new here"; +$a->strings["Clear notifications"] = "Clear notifications"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content"; +$a->strings["End this session"] = "End this session"; +$a->strings["Sign in"] = "Sign in"; +$a->strings["Personal notes"] = "Personal notes"; +$a->strings["Your personal notes"] = "My personal notes"; +$a->strings["Home"] = "Home"; +$a->strings["Home Page"] = "Home page"; +$a->strings["Create an account"] = "Create account"; +$a->strings["Help and documentation"] = "Help and documentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games"; +$a->strings["Search site content"] = "Search site content"; +$a->strings["Full Text"] = "Full text"; +$a->strings["Tags"] = "Tags"; +$a->strings["Community"] = "Community"; +$a->strings["Conversations on this and other servers"] = "Conversations on this and other servers"; +$a->strings["Directory"] = "Directory"; +$a->strings["People directory"] = "People directory"; +$a->strings["Information about this friendica instance"] = "Information about this Friendica instance"; +$a->strings["Terms of Service of this Friendica instance"] = "Terms of Service of this Friendica instance"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["Friend Requests"] = "Friend requests"; +$a->strings["See all notifications"] = "See all notifications"; +$a->strings["Mark all system notifications seen"] = "Mark notifications as seen"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Outbox"; +$a->strings["Accounts"] = ""; +$a->strings["Manage other pages"] = "Manage other pages"; +$a->strings["Site setup and configuration"] = "Site setup and configuration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Site map"; +$a->strings["Remove term"] = "Remove term"; +$a->strings["Saved Searches"] = "Saved searches"; +$a->strings["Export"] = "Export"; +$a->strings["Export calendar as ical"] = "Export calendar as ical"; +$a->strings["Export calendar as csv"] = "Export calendar as csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "Trending tags (last %d hour)", + 1 => "Trending tags (last %d hours)", +]; +$a->strings["More Trending Tags"] = "More trending tags"; +$a->strings["No contacts"] = "No contacts"; +$a->strings["%d Contact"] = [ + 0 => "%d contact", + 1 => "%d contacts", +]; +$a->strings["View Contacts"] = "View contacts"; +$a->strings["newer"] = "Later posts"; +$a->strings["older"] = "Earlier posts"; +$a->strings["Embedding disabled"] = "Embedding disabled"; +$a->strings["Embedded content"] = "Embedded content"; +$a->strings["prev"] = "prev"; +$a->strings["last"] = "last"; +$a->strings["Loading more entries..."] = "Loading more entries..."; +$a->strings["The end"] = "The end"; +$a->strings["Click to open/close"] = "Reveal/hide"; +$a->strings["Image/photo"] = "Image/Photo"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 wrote:"; +$a->strings["Encrypted content"] = "Encrypted content"; +$a->strings["Invalid source protocol"] = "Invalid source protocol"; +$a->strings["Invalid link protocol"] = "Invalid link protocol"; +$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."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."; From 8e2a3bc2dd32a3c4efff4a1eeed94899448e6739 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Aug 2020 17:39:51 +0200 Subject: [PATCH 16/44] update for ES thx targz --- view/lang/es/messages.po | 17965 +++++++++++++++++++------------------ view/lang/es/strings.php | 3665 ++++---- 2 files changed, 11181 insertions(+), 10449 deletions(-) diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index f22d3a80eb..92a821b612 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project +# Copyright (C) 2010-2020 the Friendica Project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -7,7 +7,7 @@ # Albert, 2016-2017 # Albert, 2016 # Tobias Diekershoff , 2011 -# Manuel Pérez, 2011 +# 20fb8626d04159f4c3248015e64bc077, 2011 # Carlos Solís , 2012 # David Martín Miranda, 2011 # Erkan Yilmaz , 2011 @@ -16,17 +16,19 @@ # greeneyedred , 2012 # Hauke , 2012 # Hauke , 2011-2012 -# juanman , 2017 -# juanman , 2011-2012 +# juanman , 2017 +# juanman , 2011-2012 +# Julio Cova, 2019 # leberwurscht , 2012 -# Manuel Pérez, 2011-2012,2014 +# 20fb8626d04159f4c3248015e64bc077, 2011-2012,2014 # Manuel Pérez Monís, 2011 # marmor , 2012 # Martin Schmitt , 2012 # Matthias Moritz , 2012 # Mike Macgirvin, 2010 # Oliver , 2012 -# Sennewood , 2013 +# a4e12f943b784a073d5fd49662354257_daaba5c , 2013 +# tar.gz, 2020 # Tobias Diekershoff , 2013 # Tobias Diekershoff , 2012 # tschlotfeldt , 2011 @@ -37,9 +39,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-06 17:21-0500\n" -"PO-Revision-Date: 2019-01-22 19:59+0000\n" -"Last-Translator: Abraham Pérez Hernández \n" +"POT-Creation-Date: 2020-08-04 14:03+0000\n" +"PO-Revision-Date: 2020-08-05 00:17+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,722 +49,1064 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1137 -#, php-format -msgid "Daily posting limit of %d post reached. The post was rejected." -msgid_plural "Daily posting limit of %d posts reached. The post was rejected." -msgstr[0] "" -msgstr[1] "" +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "predeterminado" -#: include/api.php:1151 -#, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "" -msgstr[1] "" +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "greenzero" -#: include/api.php:1165 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:69 view/theme/quattro/config.php:71 +#: view/theme/vier/config.php:119 view/theme/frio/config.php:139 +#: mod/message.php:272 mod/message.php:442 mod/events.php:567 +#: mod/photos.php:958 mod/photos.php:1064 mod/photos.php:1351 +#: mod/photos.php:1395 mod/photos.php:1442 mod/photos.php:1505 +#: src/Object/Post.php:946 src/Module/Debug/Localtime.php:64 +#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:230 src/Module/Install.php:270 +#: src/Module/Install.php:306 src/Module/Delegation.php:151 +#: src/Module/Contact.php:574 src/Module/Invite.php:175 +#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 +#: src/Module/Contact/Advanced.php:140 +#: src/Module/Settings/Profile/Index.php:237 +msgid "Submit" +msgstr "Envíar" + +#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 view/theme/frio/config.php:140 +#: src/Module/Settings/Display.php:186 +msgid "Theme settings" +msgstr "Configuración del Tema" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Variaciones" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Alineación" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Izquierda" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Centrado" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Esquema de color" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Tamaño de letra del titulo de las publicaciones" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Tamaño de letra del área de texto" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Lista separada por comas de foros de ayuda." + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "no mostrar" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "mostrar" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Definir estilo" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Páginas de Comunidad" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:124 +msgid "Community Profiles" +msgstr "Perfiles de la Comunidad" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "¿Ayuda o @NuevoAquí?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:337 +msgid "Connect Services" +msgstr "Servicios conectados" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Buscar amigos" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:151 +msgid "Last users" +msgstr "Últimos usuarios" + +#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 +msgid "Find People" +msgstr "Buscar personas" + +#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 +msgid "Enter name or interest" +msgstr "Introduzce nombre o intereses" + +#: view/theme/vier/theme.php:171 include/conversation.php:892 +#: mod/follow.php:157 src/Model/Contact.php:1165 src/Model/Contact.php:1178 +#: src/Content/Widget.php:79 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" + +#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: Robert Morgenstein, Pesca" + +#: view/theme/vier/theme.php:173 src/Module/Contact.php:834 +#: src/Module/Directory.php:105 src/Content/Widget.php:81 +msgid "Find" +msgstr "Buscar" + +#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 +msgid "Friend Suggestions" +msgstr "Sugerencias de amigos" + +#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 +msgid "Similar Interests" +msgstr "Intereses similares" + +#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 +msgid "Random Profile" +msgstr "Perfil aleatorio" + +#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 +msgid "Invite Friends" +msgstr "Invitar amigos" + +#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 +#: src/Content/Widget.php:86 +msgid "Global Directory" +msgstr "Directorio global" + +#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 +msgid "Local Directory" +msgstr "Directorio local" + +#: view/theme/vier/theme.php:220 src/Content/Nav.php:228 +#: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917 +msgid "Forums" +msgstr "Foros" + +#: view/theme/vier/theme.php:222 src/Content/ForumManager.php:146 +msgid "External link to forum" +msgstr "Enlace externo al foro" + +#: view/theme/vier/theme.php:225 src/Content/Widget.php:450 +#: src/Content/Widget.php:545 src/Content/ForumManager.php:149 +msgid "show more" +msgstr "ver más" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Inicio rápido" + +#: view/theme/vier/theme.php:258 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/Index.php:106 +#: src/Module/Settings/TwoFactor/Verify.php:132 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 src/Content/Nav.php:211 +msgid "Help" +msgstr "Ayuda" + +#: view/theme/frio/config.php:123 +msgid "Custom" msgstr "" -#: include/api.php:4327 mod/photos.php:94 mod/photos.php:202 -#: mod/photos.php:735 mod/photos.php:1166 mod/photos.php:1183 -#: mod/photos.php:1676 mod/profile_photo.php:88 mod/profile_photo.php:97 -#: mod/profile_photo.php:106 mod/profile_photo.php:215 -#: mod/profile_photo.php:304 mod/profile_photo.php:314 src/Model/User.php:681 -#: src/Model/User.php:689 src/Model/User.php:697 -msgid "Profile Photos" -msgstr "Foto del perfil" +#: view/theme/frio/config.php:135 +msgid "Note" +msgstr "Nota" -#: include/conversation.php:156 include/conversation.php:292 -#: src/Model/Item.php:3259 -msgid "event" -msgstr "evento" +#: view/theme/frio/config.php:135 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" -#: include/conversation.php:159 include/conversation.php:169 -#: include/conversation.php:295 include/conversation.php:304 -#: mod/subthread.php:88 mod/tagger.php:70 -msgid "status" -msgstr "estado" +#: view/theme/frio/config.php:141 +msgid "Select color scheme" +msgstr "" -#: include/conversation.php:164 include/conversation.php:300 -#: mod/subthread.php:88 mod/tagger.php:70 src/Model/Item.php:3261 -msgid "photo" -msgstr "foto" +#: view/theme/frio/config.php:142 +msgid "Copy or paste schemestring" +msgstr "" -#: include/conversation.php:176 +#: view/theme/frio/config.php:142 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "" + +#: view/theme/frio/config.php:143 +msgid "Navigation bar background color" +msgstr "Color de fondo de la barra de navegación" + +#: view/theme/frio/config.php:144 +msgid "Navigation bar icon color " +msgstr "Color de icono de la barra de navegación" + +#: view/theme/frio/config.php:145 +msgid "Link color" +msgstr "Color de enlace" + +#: view/theme/frio/config.php:146 +msgid "Set the background color" +msgstr "Seleccionar el color de fondo" + +#: view/theme/frio/config.php:147 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:148 +msgid "Set the background image" +msgstr "Seleccionar la imagen de fondo" + +#: view/theme/frio/config.php:149 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:154 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:158 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:158 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/theme.php:202 +msgid "Guest" +msgstr "Invitado" + +#: view/theme/frio/theme.php:205 +msgid "Visitor" +msgstr "Visitante" + +#: view/theme/frio/theme.php:220 src/Module/Contact.php:625 +#: src/Module/Contact.php:878 src/Module/BaseProfile.php:60 +#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:176 +msgid "Status" +msgstr "Estado" + +#: view/theme/frio/theme.php:220 src/Content/Nav.php:176 +#: src/Content/Nav.php:262 +msgid "Your posts and conversations" +msgstr "Tus publicaciones y conversaciones" + +#: view/theme/frio/theme.php:221 src/Module/Profile/Profile.php:236 +#: src/Module/Welcome.php:57 src/Module/Contact.php:627 +#: src/Module/Contact.php:894 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Content/Nav.php:177 +msgid "Profile" +msgstr "Perfil" + +#: view/theme/frio/theme.php:221 src/Content/Nav.php:177 +msgid "Your profile page" +msgstr "Tu página de perfil" + +#: view/theme/frio/theme.php:222 mod/fbrowser.php:42 +#: src/Module/BaseProfile.php:68 src/Content/Nav.php:178 +msgid "Photos" +msgstr "Fotografías" + +#: view/theme/frio/theme.php:222 src/Content/Nav.php:178 +msgid "Your photos" +msgstr "Tus fotos" + +#: view/theme/frio/theme.php:223 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 src/Content/Nav.php:179 +msgid "Videos" +msgstr "Videos" + +#: view/theme/frio/theme.php:223 src/Content/Nav.php:179 +msgid "Your videos" +msgstr "Tus videos" + +#: view/theme/frio/theme.php:224 view/theme/frio/theme.php:228 mod/cal.php:268 +#: mod/events.php:409 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 src/Content/Nav.php:180 +#: src/Content/Nav.php:247 +msgid "Events" +msgstr "Eventos" + +#: view/theme/frio/theme.php:224 src/Content/Nav.php:180 +msgid "Your events" +msgstr "Tus eventos" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Network" +msgstr "Red" + +#: view/theme/frio/theme.php:227 src/Content/Nav.php:260 +msgid "Conversations from your friends" +msgstr "Conversaciones de tus amigos" + +#: view/theme/frio/theme.php:228 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 src/Content/Nav.php:247 +msgid "Events and Calendar" +msgstr "Eventos y Calendario" + +#: view/theme/frio/theme.php:229 mod/message.php:135 src/Content/Nav.php:272 +msgid "Messages" +msgstr "Mensajes" + +#: view/theme/frio/theme.php:229 src/Content/Nav.php:272 +msgid "Private mail" +msgstr "Correo privado" + +#: view/theme/frio/theme.php:230 src/Module/Welcome.php:52 +#: src/Module/Admin/Themes/Details.php:124 +#: src/Module/Admin/Addons/Details.php:119 src/Module/BaseSettings.php:124 +#: src/Content/Nav.php:281 +msgid "Settings" +msgstr "Configuración" + +#: view/theme/frio/theme.php:230 src/Content/Nav.php:281 +msgid "Account settings" +msgstr "Configuración de tu cuenta" + +#: view/theme/frio/theme.php:231 src/Module/Contact.php:813 +#: src/Module/Contact.php:906 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Content/Nav.php:224 +#: src/Content/Nav.php:283 src/Content/Text/HTML.php:913 +msgid "Contacts" +msgstr "Contactos" + +#: view/theme/frio/theme.php:231 src/Content/Nav.php:283 +msgid "Manage/edit friends and contacts" +msgstr "Administrar/editar amigos y contactos" + +#: view/theme/frio/theme.php:316 include/conversation.php:875 +msgid "Follow Thread" +msgstr "Seguir publicacion" + +#: view/theme/frio/php/standard.php:38 view/theme/frio/php/default.php:84 +msgid "Skip to main content" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "" + +#: update.php:195 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" +msgid "%s: Updating author-id and owner-id in item and thread table. " +msgstr "" -#: include/conversation.php:178 +#: update.php:250 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s no le gusta %3$s de %2$s" +msgid "%s: Updating post-type." +msgstr "" -#: include/conversation.php:180 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$s atenderá %2$s's %3$s" - -#: include/conversation.php:182 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s no atenderá %2$s's %3$s" - -#: include/conversation.php:184 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s atenderá quizás %2$s's %3$s" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ahora es amigo de %2$s" - -#: include/conversation.php:260 +#: include/conversation.php:188 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s le dio un toque a %2$s" -#: include/conversation.php:314 mod/tagger.php:108 +#: include/conversation.php:220 src/Model/Item.php:3330 +msgid "event" +msgstr "evento" + +#: include/conversation.php:223 include/conversation.php:232 mod/tagger.php:89 +msgid "status" +msgstr "estado" + +#: include/conversation.php:228 mod/tagger.php:89 src/Model/Item.php:3332 +msgid "photo" +msgstr "foto" + +#: include/conversation.php:242 mod/tagger.php:122 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s" -#: include/conversation.php:336 -msgid "post/item" -msgstr "publicación/tema" - -#: include/conversation.php:337 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha marcado %3$s de %2$s como Favorito" - -#: include/conversation.php:551 mod/photos.php:1507 mod/profiles.php:356 -msgid "Likes" -msgstr "Me gusta" - -#: include/conversation.php:551 mod/photos.php:1507 mod/profiles.php:360 -msgid "Dislikes" -msgstr "No me gusta" - -#: include/conversation.php:552 include/conversation.php:1484 -#: mod/photos.php:1508 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Atendiendo" -msgstr[1] "Atendiendo" - -#: include/conversation.php:552 mod/photos.php:1508 -msgid "Not attending" -msgstr "No atendiendo" - -#: include/conversation.php:552 mod/photos.php:1508 -msgid "Might attend" -msgstr "Puede que atienda" - -#: include/conversation.php:632 mod/photos.php:1564 src/Object/Post.php:201 +#: include/conversation.php:554 mod/photos.php:1473 src/Object/Post.php:227 msgid "Select" msgstr "Seleccionar" -#: include/conversation.php:633 mod/admin.php:1962 mod/photos.php:1565 -#: mod/settings.php:729 src/Module/Contact.php:828 src/Module/Contact.php:1103 +#: include/conversation.php:555 mod/settings.php:560 mod/settings.php:702 +#: mod/photos.php:1474 src/Module/Contact.php:844 src/Module/Contact.php:1163 +#: src/Module/Admin/Users.php:253 msgid "Delete" msgstr "Eliminar" -#: include/conversation.php:667 src/Object/Post.php:374 -#: src/Object/Post.php:375 +#: include/conversation.php:589 src/Object/Post.php:440 +#: src/Object/Post.php:441 #, php-format msgid "View %s's profile @ %s" msgstr "Ver perfil de %s @ %s" -#: include/conversation.php:679 src/Object/Post.php:362 +#: include/conversation.php:602 src/Object/Post.php:428 msgid "Categories:" msgstr "Categorías:" -#: include/conversation.php:680 src/Object/Post.php:363 +#: include/conversation.php:603 src/Object/Post.php:429 msgid "Filed under:" msgstr "Archivado en:" -#: include/conversation.php:687 src/Object/Post.php:388 +#: include/conversation.php:610 src/Object/Post.php:454 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: include/conversation.php:702 +#: include/conversation.php:625 msgid "View in context" msgstr "Verlo en contexto" -#: include/conversation.php:704 include/conversation.php:1152 -#: mod/editpost.php:108 mod/message.php:262 mod/message.php:444 -#: mod/photos.php:1480 mod/wallmessage.php:141 src/Object/Post.php:413 +#: include/conversation.php:627 include/conversation.php:1167 +#: mod/wallmessage.php:155 mod/message.php:271 mod/message.php:443 +#: mod/editpost.php:104 mod/photos.php:1378 src/Object/Post.php:486 +#: src/Module/Item/Compose.php:159 msgid "Please wait" msgstr "Por favor, espera" -#: include/conversation.php:768 +#: include/conversation.php:691 msgid "remove" msgstr "eliminar" -#: include/conversation.php:772 +#: include/conversation.php:695 msgid "Delete Selected Items" msgstr "Eliminar el elemento seleccionado" -#: include/conversation.php:872 view/theme/frio/theme.php:369 -msgid "Follow Thread" -msgstr "Seguir publicacion" - -#: include/conversation.php:873 src/Model/Contact.php:989 +#: include/conversation.php:876 src/Model/Contact.php:1170 msgid "View Status" msgstr "Ver estado" -#: include/conversation.php:874 include/conversation.php:890 -#: mod/allfriends.php:74 mod/directory.php:167 mod/dirfind.php:228 -#: mod/match.php:84 mod/suggest.php:86 src/Model/Contact.php:929 -#: src/Model/Contact.php:982 src/Model/Contact.php:990 +#: include/conversation.php:877 include/conversation.php:895 +#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 +#: src/Model/Contact.php:1096 src/Model/Contact.php:1162 +#: src/Model/Contact.php:1171 msgid "View Profile" msgstr "Ver perfil" -#: include/conversation.php:875 src/Model/Contact.php:991 +#: include/conversation.php:878 src/Model/Contact.php:1172 msgid "View Photos" msgstr "Ver fotos" -#: include/conversation.php:876 src/Model/Contact.php:983 -#: src/Model/Contact.php:992 +#: include/conversation.php:879 src/Model/Contact.php:1163 +#: src/Model/Contact.php:1173 msgid "Network Posts" msgstr "Publicaciones en la red" -#: include/conversation.php:877 src/Model/Contact.php:984 -#: src/Model/Contact.php:993 +#: include/conversation.php:880 src/Model/Contact.php:1164 +#: src/Model/Contact.php:1174 msgid "View Contact" msgstr "Ver contacto" -#: include/conversation.php:878 src/Model/Contact.php:995 +#: include/conversation.php:881 src/Model/Contact.php:1176 msgid "Send PM" msgstr "Enviar mensaje privado" -#: include/conversation.php:882 src/Model/Contact.php:996 +#: include/conversation.php:882 src/Module/Contact.php:595 +#: src/Module/Contact.php:841 src/Module/Contact.php:1138 +#: src/Module/Admin/Users.php:254 src/Module/Admin/Blocklist/Contact.php:84 +msgid "Block" +msgstr "Bloquear" + +#: include/conversation.php:883 src/Module/Notifications/Notification.php:59 +#: src/Module/Notifications/Introductions.php:110 +#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:596 +#: src/Module/Contact.php:842 src/Module/Contact.php:1146 +msgid "Ignore" +msgstr "Ignorar" + +#: include/conversation.php:887 src/Model/Contact.php:1177 msgid "Poke" msgstr "Toque" -#: include/conversation.php:887 mod/allfriends.php:75 mod/dirfind.php:229 -#: mod/follow.php:148 mod/match.php:85 mod/suggest.php:87 -#: src/Content/Widget.php:62 src/Model/Contact.php:985 -#: src/Module/Contact.php:576 view/theme/vier/theme.php:201 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" - -#: include/conversation.php:1006 +#: include/conversation.php:1018 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: include/conversation.php:1009 +#: include/conversation.php:1021 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: include/conversation.php:1012 +#: include/conversation.php:1024 #, php-format msgid "%s attends." msgstr "%s atiende." -#: include/conversation.php:1015 +#: include/conversation.php:1027 #, php-format msgid "%s doesn't attend." msgstr "%s no atenderá." -#: include/conversation.php:1018 +#: include/conversation.php:1030 #, php-format msgid "%s attends maybe." msgstr "%s quizás atenderá" -#: include/conversation.php:1029 +#: include/conversation.php:1033 include/conversation.php:1076 +#, php-format +msgid "%s reshared this." +msgstr "%scompartió esto." + +#: include/conversation.php:1041 msgid "and" msgstr "y" -#: include/conversation.php:1035 +#: include/conversation.php:1047 #, php-format msgid "and %d other people" msgstr " y a otras %d personas" -#: include/conversation.php:1044 +#: include/conversation.php:1055 #, php-format msgid "%2$d people like this" msgstr "%2$d personas les gusta esto" -#: include/conversation.php:1045 +#: include/conversation.php:1056 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: include/conversation.php:1048 +#: include/conversation.php:1059 #, php-format msgid "%2$d people don't like this" msgstr "%2$d personas no les gusta esto" -#: include/conversation.php:1049 +#: include/conversation.php:1060 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: include/conversation.php:1052 +#: include/conversation.php:1063 #, php-format msgid "%2$d people attend" msgstr "%2$d personas atienden" -#: include/conversation.php:1053 +#: include/conversation.php:1064 #, php-format msgid "%s attend." msgstr "%s atiende." -#: include/conversation.php:1056 +#: include/conversation.php:1067 #, php-format msgid "%2$d people don't attend" msgstr "%2$d personasno atienden." -#: include/conversation.php:1057 +#: include/conversation.php:1068 #, php-format msgid "%s don't attend." msgstr "%s no atiende." -#: include/conversation.php:1060 +#: include/conversation.php:1071 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d personas quizá asistan." -#: include/conversation.php:1061 +#: include/conversation.php:1072 #, php-format msgid "%s attend maybe." msgstr "%s quizás atenderá." -#: include/conversation.php:1091 +#: include/conversation.php:1075 +#, php-format +msgid "%2$d people reshared this" +msgstr "%2$d personas compartieron esto." + +#: include/conversation.php:1105 msgid "Visible to everybody" msgstr "Visible para cualquiera" -#: include/conversation.php:1092 src/Object/Post.php:817 +#: include/conversation.php:1106 src/Object/Post.php:956 +#: src/Module/Item/Compose.php:153 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Por favor agregue la URL de una imagen, video, audio o sitio web." -#: include/conversation.php:1093 +#: include/conversation.php:1107 msgid "Tag term:" msgstr "Etiquetar:" -#: include/conversation.php:1094 mod/filer.php:35 +#: include/conversation.php:1108 src/Module/Filer/SaveTag.php:65 msgid "Save to Folder:" msgstr "Guardar en directorio:" -#: include/conversation.php:1095 +#: include/conversation.php:1109 msgid "Where are you right now?" msgstr "¿Dónde estás ahora?" -#: include/conversation.php:1096 +#: include/conversation.php:1110 msgid "Delete item(s)?" msgstr "¿Borrar objeto(s)?" -#: include/conversation.php:1128 +#: include/conversation.php:1142 msgid "New Post" msgstr "Nueva publicación" -#: include/conversation.php:1131 +#: include/conversation.php:1145 msgid "Share" msgstr "Compartir" -#: include/conversation.php:1132 mod/editpost.php:94 mod/message.php:260 -#: mod/message.php:441 mod/wallmessage.php:139 +#: include/conversation.php:1146 mod/editpost.php:89 mod/photos.php:1397 +#: src/Object/Post.php:947 src/Module/Contact/Poke.php:155 +msgid "Loading..." +msgstr "Cargando..." + +#: include/conversation.php:1147 mod/wallmessage.php:153 mod/message.php:269 +#: mod/message.php:440 mod/editpost.php:90 msgid "Upload photo" msgstr "Subir foto" -#: include/conversation.php:1133 mod/editpost.php:95 +#: include/conversation.php:1148 mod/editpost.php:91 msgid "upload photo" msgstr "subir imagen" -#: include/conversation.php:1134 mod/editpost.php:96 +#: include/conversation.php:1149 mod/editpost.php:92 msgid "Attach file" msgstr "Adjuntar archivo" -#: include/conversation.php:1135 mod/editpost.php:97 +#: include/conversation.php:1150 mod/editpost.php:93 msgid "attach file" msgstr "adjuntar archivo" -#: include/conversation.php:1136 src/Object/Post.php:809 +#: include/conversation.php:1151 src/Object/Post.php:948 +#: src/Module/Item/Compose.php:145 msgid "Bold" msgstr "Negrita" -#: include/conversation.php:1137 src/Object/Post.php:810 +#: include/conversation.php:1152 src/Object/Post.php:949 +#: src/Module/Item/Compose.php:146 msgid "Italic" msgstr "Cursiva" -#: include/conversation.php:1138 src/Object/Post.php:811 +#: include/conversation.php:1153 src/Object/Post.php:950 +#: src/Module/Item/Compose.php:147 msgid "Underline" msgstr "Subrayado" -#: include/conversation.php:1139 src/Object/Post.php:812 +#: include/conversation.php:1154 src/Object/Post.php:951 +#: src/Module/Item/Compose.php:148 msgid "Quote" msgstr "Cita" -#: include/conversation.php:1140 src/Object/Post.php:813 +#: include/conversation.php:1155 src/Object/Post.php:952 +#: src/Module/Item/Compose.php:149 msgid "Code" msgstr "Código" -#: include/conversation.php:1141 src/Object/Post.php:814 +#: include/conversation.php:1156 src/Object/Post.php:953 +#: src/Module/Item/Compose.php:150 msgid "Image" msgstr "Imagen" -#: include/conversation.php:1142 src/Object/Post.php:815 +#: include/conversation.php:1157 src/Object/Post.php:954 +#: src/Module/Item/Compose.php:151 msgid "Link" msgstr "Enlace" -#: include/conversation.php:1143 src/Object/Post.php:816 +#: include/conversation.php:1158 src/Object/Post.php:955 +#: src/Module/Item/Compose.php:152 msgid "Link or Media" msgstr "Enlace o Multimedia" -#: include/conversation.php:1144 mod/editpost.php:104 +#: include/conversation.php:1159 mod/editpost.php:100 +#: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "Configurar tu localización" -#: include/conversation.php:1145 mod/editpost.php:105 +#: include/conversation.php:1160 mod/editpost.php:101 msgid "set location" msgstr "establecer tu ubicación" -#: include/conversation.php:1146 mod/editpost.php:106 +#: include/conversation.php:1161 mod/editpost.php:102 msgid "Clear browser location" msgstr "Borrar la localización del navegador" -#: include/conversation.php:1147 mod/editpost.php:107 +#: include/conversation.php:1162 mod/editpost.php:103 msgid "clear location" msgstr "limpiar la localización" -#: include/conversation.php:1149 mod/editpost.php:122 +#: include/conversation.php:1164 mod/editpost.php:117 +#: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "Establecer el título" -#: include/conversation.php:1151 mod/editpost.php:124 +#: include/conversation.php:1166 mod/editpost.php:119 +#: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "Categorías (lista separada por comas)" -#: include/conversation.php:1153 mod/editpost.php:109 +#: include/conversation.php:1168 mod/editpost.php:105 msgid "Permission settings" msgstr "Configuración de permisos" -#: include/conversation.php:1154 mod/editpost.php:139 +#: include/conversation.php:1169 mod/editpost.php:134 msgid "permissions" msgstr "permisos" -#: include/conversation.php:1163 mod/editpost.php:119 +#: include/conversation.php:1178 mod/editpost.php:114 msgid "Public post" msgstr "Publicación pública" -#: include/conversation.php:1167 mod/editpost.php:130 mod/events.php:566 -#: mod/photos.php:1498 mod/photos.php:1537 mod/photos.php:1597 -#: src/Object/Post.php:818 +#: include/conversation.php:1182 mod/editpost.php:125 mod/events.php:565 +#: mod/photos.php:1396 mod/photos.php:1443 mod/photos.php:1506 +#: src/Object/Post.php:957 src/Module/Item/Compose.php:154 msgid "Preview" msgstr "Vista previa" -#: include/conversation.php:1171 include/items.php:399 -#: mod/dfrn_request.php:654 mod/editpost.php:133 mod/fbrowser.php:105 -#: mod/fbrowser.php:136 mod/follow.php:162 mod/message.php:153 -#: mod/photos.php:258 mod/photos.php:330 mod/settings.php:669 -#: mod/settings.php:695 mod/suggest.php:44 mod/tagrm.php:20 mod/tagrm.php:113 -#: mod/unfollow.php:132 mod/videos.php:140 src/Module/Contact.php:448 +#: include/conversation.php:1186 mod/settings.php:500 mod/settings.php:526 +#: mod/unfollow.php:137 mod/message.php:165 mod/tagrm.php:36 mod/tagrm.php:126 +#: mod/dfrn_request.php:648 mod/item.php:928 mod/editpost.php:128 +#: mod/follow.php:163 mod/fbrowser.php:104 mod/fbrowser.php:133 +#: mod/photos.php:1047 mod/photos.php:1154 src/Module/Contact.php:451 +#: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "Cancelar" -#: include/conversation.php:1176 +#: include/conversation.php:1191 msgid "Post to Groups" msgstr "Publicar hacia grupos" -#: include/conversation.php:1177 +#: include/conversation.php:1192 msgid "Post to Contacts" msgstr "Publicar hacia contactos" -#: include/conversation.php:1178 +#: include/conversation.php:1193 msgid "Private post" msgstr "Publicación privada" -#: include/conversation.php:1183 mod/editpost.php:137 -#: src/Model/Profile.php:364 +#: include/conversation.php:1198 mod/editpost.php:132 +#: src/Module/Contact.php:326 src/Model/Profile.php:454 msgid "Message" msgstr "Mensaje" -#: include/conversation.php:1184 mod/editpost.php:138 +#: include/conversation.php:1199 mod/editpost.php:133 msgid "Browser" msgstr "Navegador" -#: include/conversation.php:1455 -msgid "View all" -msgstr "Ver todos los contactos" +#: include/conversation.php:1201 mod/editpost.php:136 +msgid "Open Compose page" +msgstr "Abrir página de publicación" -#: include/conversation.php:1478 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" +#: include/enotify.php:50 +msgid "[Friendica:Notify]" +msgstr "" -#: include/conversation.php:1481 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: include/conversation.php:1487 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No atendiendo" -msgstr[1] "No atendiendo" - -#: include/conversation.php:1490 src/Content/ContactSelector.php:148 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indeciso" - -#: include/enotify.php:55 -msgid "Friendica Notification" -msgstr "Notificación de Friendica" - -#: include/enotify.php:58 -msgid "Thank You," -msgstr "Gracias," - -#: include/enotify.php:61 +#: include/enotify.php:140 #, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, %2$s Administrador" +msgid "%s New mail received at %s" +msgstr "" -#: include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificación] Nuevo correo recibido de %s" - -#: include/enotify.php:128 +#: include/enotify.php:142 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s te ha enviado un mensaje privado desde %2$s." -#: include/enotify.php:129 +#: include/enotify.php:143 msgid "a private message" msgstr "un mensaje privado" -#: include/enotify.php:129 +#: include/enotify.php:143 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s te ha enviado %2$s." -#: include/enotify.php:131 +#: include/enotify.php:145 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados." -#: include/enotify.php:165 +#: include/enotify.php:189 #, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]" +msgid "%1$s replied to you on %2$s's %3$s %4$s" +msgstr "" -#: include/enotify.php:173 +#: include/enotify.php:191 #, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]" +msgid "%1$s tagged you on %2$s's %3$s %4$s" +msgstr "" -#: include/enotify.php:183 +#: include/enotify.php:193 #, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]" +msgid "%1$s commented on %2$s's %3$s %4$s" +msgstr "" -#: include/enotify.php:195 +#: include/enotify.php:203 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s" +msgid "%1$s replied to you on your %2$s %3$s" +msgstr "" -#: include/enotify.php:197 +#: include/enotify.php:205 #, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha comentado en una conversación/elemento que sigues." - -#: include/enotify.php:200 include/enotify.php:215 include/enotify.php:230 -#: include/enotify.php:245 include/enotify.php:264 include/enotify.php:280 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Por favor, visita %s para ver y/o responder a la conversación." +msgid "%1$s tagged you on your %2$s %3$s" +msgstr "" #: include/enotify.php:207 #, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notificación] %s publicó en tu muro" +msgid "%1$s commented on your %2$s %3$s" +msgstr "" -#: include/enotify.php:209 +#: include/enotify.php:214 #, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s publicó en tu muro de %2$s" +msgid "%1$s replied to you on their %2$s %3$s" +msgstr "" -#: include/enotify.php:210 +#: include/enotify.php:216 #, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s publicó en [url=%2$s]tu muro[/url]" +msgid "%1$s tagged you on their %2$s %3$s" +msgstr "" -#: include/enotify.php:222 +#: include/enotify.php:218 #, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificación] %s te ha etiquetado" +msgid "%1$s commented on their %2$s %3$s" +msgstr "" -#: include/enotify.php:224 +#: include/enotify.php:229 +#, php-format +msgid "%s %s tagged you" +msgstr "" + +#: include/enotify.php:231 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s te ha etiquetado en %2$s" -#: include/enotify.php:225 +#: include/enotify.php:233 #, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]te etiquetó[/url]." +msgid "%1$s Comment to conversation #%2$d by %3$s" +msgstr "" -#: include/enotify.php:237 +#: include/enotify.php:235 #, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Notificacion Friendica] %s compartió una nueva publicación" +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha comentado en una conversación/elemento que sigues." -#: include/enotify.php:239 +#: include/enotify.php:240 include/enotify.php:255 include/enotify.php:270 +#: include/enotify.php:289 include/enotify.php:305 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Por favor, visita %s para ver y/o responder a la conversación." + +#: include/enotify.php:247 +#, php-format +msgid "%s %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:249 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s publicó en tu muro de %2$s" + +#: include/enotify.php:250 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s publicó en [url=%2$s]tu muro[/url]" + +#: include/enotify.php:262 +#, php-format +msgid "%s %s shared a new post" +msgstr "" + +#: include/enotify.php:264 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s compartió un nuevo tema en %2$s" -#: include/enotify.php:240 +#: include/enotify.php:265 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]compartió una publicación[/url]." -#: include/enotify.php:252 +#: include/enotify.php:277 #, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s te dio un toque" +msgid "%1$s %2$s poked you" +msgstr "" -#: include/enotify.php:254 +#: include/enotify.php:279 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s te dio un toque en %2$s" -#: include/enotify.php:255 +#: include/enotify.php:280 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]te dio un toque[/url]." -#: include/enotify.php:272 +#: include/enotify.php:297 #, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación" +msgid "%s %s tagged your post" +msgstr "" -#: include/enotify.php:274 +#: include/enotify.php:299 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s ha etiquetado tu publicación en %2$s" -#: include/enotify.php:275 +#: include/enotify.php:300 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]" -#: include/enotify.php:287 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificación] Sugerencia de amistad recibida" +#: include/enotify.php:312 +#, php-format +msgid "%s Introduction received" +msgstr "" -#: include/enotify.php:289 +#: include/enotify.php:314 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Has recibido una sugerencia de amistad de '%1$s' en %2$s" -#: include/enotify.php:290 +#: include/enotify.php:315 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Has recibido [url=%1$s]una sugerencia de amistad de [/url] de %2$s." -#: include/enotify.php:295 include/enotify.php:341 +#: include/enotify.php:320 include/enotify.php:366 #, php-format msgid "You may visit their profile at %s" msgstr "Puedes visitar su perfil en %s" -#: include/enotify.php:297 +#: include/enotify.php:322 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr " Por favor visita %s para aceptar o rechazar la sugerencia de amistad" -#: include/enotify.php:304 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Notificación:Friendica] Un nuevo contacto comparte contigo" +#: include/enotify.php:329 +#, php-format +msgid "%s A new person is sharing with you" +msgstr "" -#: include/enotify.php:306 include/enotify.php:307 +#: include/enotify.php:331 include/enotify.php:332 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s comparte contigo en %2$s" -#: include/enotify.php:314 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Notificación:Friendica] Tienes un nuevo seguidor" +#: include/enotify.php:339 +#, php-format +msgid "%s You have a new follower" +msgstr "" -#: include/enotify.php:316 include/enotify.php:317 +#: include/enotify.php:341 include/enotify.php:342 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Tienes un nuevo seguidor en %2$s : %1$s" -#: include/enotify.php:330 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notificación] Sugerencia de amistad recibida" +#: include/enotify.php:355 +#, php-format +msgid "%s Friend suggestion received" +msgstr "" -#: include/enotify.php:332 +#: include/enotify.php:357 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s" -#: include/enotify.php:333 +#: include/enotify.php:358 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s." -#: include/enotify.php:339 +#: include/enotify.php:364 msgid "Name:" msgstr "Nombre: " -#: include/enotify.php:340 +#: include/enotify.php:365 msgid "Photo:" msgstr "Foto: " -#: include/enotify.php:343 +#: include/enotify.php:368 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s para aceptar o rechazar la sugerencia por favor." -#: include/enotify.php:351 include/enotify.php:366 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Notificación:Friendica] Conexión aceptada" +#: include/enotify.php:376 include/enotify.php:391 +#, php-format +msgid "%s Connection accepted" +msgstr "" -#: include/enotify.php:353 include/enotify.php:368 +#: include/enotify.php:378 include/enotify.php:393 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' acepto tu consulta de conexión %2$s" -#: include/enotify.php:354 include/enotify.php:369 +#: include/enotify.php:379 include/enotify.php:394 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hacepto tu [url=%1$s]consulta de conexión[/url]." -#: include/enotify.php:359 +#: include/enotify.php:384 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción." -#: include/enotify.php:361 +#: include/enotify.php:386 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Por favor visite %s si desea hacer algún cambio a su relación." -#: include/enotify.php:374 +#: include/enotify.php:399 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -771,37 +1115,37 @@ msgid "" "automatically." msgstr "'%1$s' te ha aceptado como fan, lo que restringe algunas formas de comunicación - como conversaciones privadas y algunas interacciones de perfil. Si es una celebridad o una página comunitaria, estos ajustes son aplicados automáticamente." -#: include/enotify.php:376 +#: include/enotify.php:401 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro." -#: include/enotify.php:378 +#: include/enotify.php:403 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto." -#: include/enotify.php:388 mod/removeme.php:47 +#: include/enotify.php:413 mod/removeme.php:63 msgid "[Friendica System Notify]" msgstr "[Friendica Sistema de Notificaciones]" -#: include/enotify.php:388 +#: include/enotify.php:413 msgid "registration request" msgstr "petición de registro" -#: include/enotify.php:390 +#: include/enotify.php:415 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Recibiste una consulta de registro de '%1$s' en %2$s" -#: include/enotify.php:391 +#: include/enotify.php:416 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Recibiste una [url=%1$s]consulta de registro[/url] from %2$s." -#: include/enotify.php:396 +#: include/enotify.php:421 #, php-format msgid "" "Full Name:\t%s\n" @@ -809,3324 +1153,1400 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Nombre Completo:\t%s\nDireccion del sitio:\t%s\nNombre de usuario:\t%s (%s)" -#: include/enotify.php:402 +#: include/enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Por favor visita %s para aprobar o negar la solicitud." -#: include/items.php:356 mod/admin.php:285 mod/admin.php:2020 -#: mod/admin.php:2266 mod/notice.php:21 mod/viewsrc.php:22 -msgid "Item not found." -msgstr "Elemento no encontrado." - -#: include/items.php:394 -msgid "Do you really want to delete this item?" -msgstr "¿Realmente quieres borrar este objeto?" - -#: include/items.php:396 mod/api.php:112 mod/dfrn_request.php:644 -#: mod/follow.php:151 mod/message.php:150 mod/profiles.php:542 -#: mod/profiles.php:545 mod/profiles.php:567 mod/register.php:232 -#: mod/settings.php:1088 mod/settings.php:1094 mod/settings.php:1101 -#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1113 -#: mod/settings.php:1117 mod/settings.php:1121 mod/settings.php:1141 -#: mod/settings.php:1142 mod/settings.php:1143 mod/settings.php:1144 -#: mod/settings.php:1145 mod/suggest.php:41 src/Module/Contact.php:445 -msgid "Yes" -msgstr "Sí" - -#: include/items.php:446 mod/allfriends.php:22 mod/api.php:37 mod/api.php:42 -#: mod/attach.php:37 mod/cal.php:304 mod/common.php:27 mod/crepair.php:101 -#: mod/delegate.php:31 mod/delegate.php:49 mod/delegate.php:60 -#: mod/dfrn_confirm.php:66 mod/dirfind.php:29 mod/editpost.php:23 -#: mod/events.php:207 mod/follow.php:58 mod/follow.php:122 mod/fsuggest.php:81 -#: mod/group.php:30 mod/invite.php:25 mod/invite.php:111 mod/item.php:165 -#: mod/manage.php:130 mod/message.php:56 mod/message.php:101 -#: mod/network.php:36 mod/nogroup.php:23 mod/notes.php:33 -#: mod/notifications.php:70 mod/ostatus_subscribe.php:18 mod/photos.php:187 -#: mod/photos.php:1060 mod/poke.php:142 mod/profiles.php:183 -#: mod/profiles.php:515 mod/profile_photo.php:33 mod/profile_photo.php:180 -#: mod/profile_photo.php:202 mod/register.php:53 mod/regmod.php:89 -#: mod/repair_ostatus.php:16 mod/settings.php:48 mod/settings.php:154 -#: mod/settings.php:658 mod/suggest.php:62 mod/uimport.php:17 -#: mod/unfollow.php:22 mod/unfollow.php:77 mod/unfollow.php:109 -#: mod/viewcontacts.php:56 mod/wallmessage.php:19 mod/wallmessage.php:43 -#: mod/wallmessage.php:82 mod/wallmessage.php:106 mod/wall_attach.php:81 -#: mod/wall_attach.php:84 mod/wall_upload.php:106 mod/wall_upload.php:109 -#: src/App.php:1786 src/Module/Contact.php:361 -msgid "Permission denied." -msgstr "Permiso denegado." - -#: include/items.php:517 src/Content/Feature.php:95 -msgid "Archives" -msgstr "Archivos" - -#: include/items.php:523 src/App.php:788 src/Content/ForumManager.php:131 -#: src/Content/Widget.php:305 src/Object/Post.php:442 -#: view/theme/vier/theme.php:255 -msgid "show more" -msgstr "ver más" - -#: mod/admin.php:106 -msgid "Theme settings updated." -msgstr "Configuración de la apariencia actualizada." - -#: mod/admin.php:179 src/Content/Nav.php:225 -msgid "Information" -msgstr "Información" - -#: mod/admin.php:180 -msgid "Overview" -msgstr "" - -#: mod/admin.php:181 mod/admin.php:753 -msgid "Federation Statistics" -msgstr "Estadísticas de federación" - -#: mod/admin.php:182 -msgid "Configuration" -msgstr "Configuración" - -#: mod/admin.php:183 mod/admin.php:1478 -msgid "Site" -msgstr "Sitio" - -#: mod/admin.php:184 mod/admin.php:1409 mod/admin.php:1952 mod/admin.php:1969 -msgid "Users" -msgstr "Usuarios" - -#: mod/admin.php:185 mod/admin.php:2068 mod/admin.php:2128 mod/settings.php:99 -msgid "Addons" -msgstr "" - -#: mod/admin.php:186 mod/admin.php:2332 mod/admin.php:2376 -msgid "Themes" -msgstr "Temas" - -#: mod/admin.php:187 mod/settings.php:77 -msgid "Additional features" -msgstr "Características adicionales" - -#: mod/admin.php:188 mod/admin.php:312 mod/register.php:280 -#: src/Content/Nav.php:228 src/Module/Tos.php:71 -msgid "Terms of Service" -msgstr "Términos de Servicio" - -#: mod/admin.php:189 -msgid "Database" -msgstr "Base de Datos" - -#: mod/admin.php:190 -msgid "DB updates" -msgstr "Actualizaciones de la Base de Datos" - -#: mod/admin.php:191 mod/admin.php:796 -msgid "Inspect Queue" -msgstr "Inspeccionar cola" - -#: mod/admin.php:192 -msgid "Inspect Deferred Workers" -msgstr "" - -#: mod/admin.php:193 -msgid "Inspect worker Queue" -msgstr "" - -#: mod/admin.php:194 -msgid "Tools" -msgstr "Herramientas" - -#: mod/admin.php:195 -msgid "Contact Blocklist" -msgstr "" - -#: mod/admin.php:196 mod/admin.php:376 -msgid "Server Blocklist" -msgstr "Lista de bloqueo del servidor" - -#: mod/admin.php:197 mod/admin.php:534 -msgid "Delete Item" -msgstr "Eliminar Artículo" - -#: mod/admin.php:198 mod/admin.php:199 mod/admin.php:2451 -msgid "Logs" -msgstr "Registros" - -#: mod/admin.php:200 mod/admin.php:2518 -msgid "View Logs" -msgstr "Ver registro de depuración" - -#: mod/admin.php:202 -msgid "Diagnostics" -msgstr "Diagnósticos" - -#: mod/admin.php:203 -msgid "PHP Info" -msgstr "" - -#: mod/admin.php:204 -msgid "probe address" -msgstr "probar direccion" - -#: mod/admin.php:205 -msgid "check webfinger" -msgstr "Verificar webfinger" - -#: mod/admin.php:225 src/Content/Nav.php:268 -msgid "Admin" -msgstr "Admin" - -#: mod/admin.php:226 -msgid "Addon Features" -msgstr "" - -#: mod/admin.php:227 -msgid "User registrations waiting for confirmation" -msgstr "Registro de usuarios esperando la confirmación" - -#: mod/admin.php:311 mod/admin.php:375 mod/admin.php:491 mod/admin.php:533 -#: mod/admin.php:752 mod/admin.php:795 mod/admin.php:846 mod/admin.php:964 -#: mod/admin.php:1477 mod/admin.php:1951 mod/admin.php:2067 mod/admin.php:2127 -#: mod/admin.php:2331 mod/admin.php:2375 mod/admin.php:2450 mod/admin.php:2517 -msgid "Administration" -msgstr "Administración" - -#: mod/admin.php:313 -msgid "Display Terms of Service" -msgstr "Mostrar los Términos de Servicio" - -#: mod/admin.php:313 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general." - -#: mod/admin.php:314 -msgid "Display Privacy Statement" -msgstr "Mostrar las Directivas de Privacidad" - -#: mod/admin.php:314 +#: include/api.php:1127 #, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" +msgid "Daily posting limit of %d post reached. The post was rejected." +msgid_plural "Daily posting limit of %d posts reached. The post was rejected." +msgstr[0] "Limite diario de %d publicación alcanzado. La publicación fue rechazada." +msgstr[1] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada." -#: mod/admin.php:315 -msgid "Privacy Statement Preview" -msgstr "Vista previa de las Directivas de Seguridad" - -#: mod/admin.php:317 -msgid "The Terms of Service" -msgstr "Los Términos de Servicio" - -#: mod/admin.php:317 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior." - -#: mod/admin.php:319 mod/admin.php:1479 mod/admin.php:2129 mod/admin.php:2377 -#: mod/admin.php:2452 mod/admin.php:2599 mod/delegate.php:176 -#: mod/settings.php:668 mod/settings.php:775 mod/settings.php:863 -#: mod/settings.php:952 mod/settings.php:1177 -msgid "Save Settings" -msgstr "Guardar configuración" - -#: mod/admin.php:367 mod/admin.php:385 mod/dfrn_request.php:346 -#: mod/friendica.php:122 src/Model/Contact.php:1645 -msgid "Blocked domain" -msgstr "Dominio bloqueado" - -#: mod/admin.php:367 -msgid "The blocked domain" -msgstr "El dominio bloqueado" - -#: mod/admin.php:368 mod/admin.php:386 mod/friendica.php:122 -msgid "Reason for the block" -msgstr "Razón para el bloqueo" - -#: mod/admin.php:368 mod/admin.php:381 -msgid "The reason why you blocked this domain." -msgstr "La razón por la que bloqueó este dominio." - -#: mod/admin.php:369 -msgid "Delete domain" -msgstr "Eliminar dominio" - -#: mod/admin.php:369 -msgid "Check to delete this entry from the blocklist" -msgstr "Marca para eliminar esta entrada de la lista de bloqueo" - -#: mod/admin.php:377 -msgid "" -"This page can be used to define a black list of servers from the federated " -"network that are not allowed to interact with your node. For all entered " -"domains you should also give a reason why you have blocked the remote " -"server." -msgstr "Esta página se puede usar para definir una lista negra de servidores de la red federada a los que no se les permite interactuar con su nodo. Para todos los dominios ingresados, también debe dar una razón por la que ha bloqueado el servidor remoto." - -#: mod/admin.php:378 -msgid "" -"The list of blocked servers will be made publically available on the " -"/friendica page so that your users and people investigating communication " -"problems can find the reason easily." -msgstr "La lista de servidores bloqueados estará disponible públicamente en la página /friendica para que los usuarios y las personas que investiguen los problemas de comunicación puedan encontrar fácilmente la razón.." - -#: mod/admin.php:379 -msgid "Add new entry to block list" -msgstr "Agregar nueva entrada a la lista de bloqueo" - -#: mod/admin.php:380 -msgid "Server Domain" -msgstr "Dominio del servidor" - -#: mod/admin.php:380 -msgid "" -"The domain of the new server to add to the block list. Do not include the " -"protocol." -msgstr "El dominio del nuevo servidor para añadir a la lista de bloqueo. No incluye el protocolo." - -#: mod/admin.php:381 -msgid "Block reason" -msgstr "Lazón del bloqueo" - -#: mod/admin.php:382 -msgid "Add Entry" -msgstr "Añadir Entrada" - -#: mod/admin.php:383 -msgid "Save changes to the blocklist" -msgstr "Guardar cambios en la lista de bloqueo" - -#: mod/admin.php:384 -msgid "Current Entries in the Blocklist" -msgstr "Entradas actuales en la lista de bloqueo" - -#: mod/admin.php:387 -msgid "Delete entry from blocklist" -msgstr "Eliminar entrada de la lista de bloqueo" - -#: mod/admin.php:390 -msgid "Delete entry from blocklist?" -msgstr "¿Eliminar entrada de la lista de bloqueo?" - -#: mod/admin.php:416 -msgid "Server added to blocklist." -msgstr "Servidor añadido a la lista de bloqueo." - -#: mod/admin.php:432 -msgid "Site blocklist updated." -msgstr "Lista de bloqueo del sitio actualizada." - -#: mod/admin.php:455 src/Core/Console/GlobalCommunityBlock.php:68 -msgid "The contact has been blocked from the node" -msgstr "El contacto ha sido blockeado del nodo" - -#: mod/admin.php:457 src/Core/Console/GlobalCommunityBlock.php:65 +#: include/api.php:1141 #, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "" +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "Limite semanal de %d publicación alcanzado. La publicación fue rechazada." +msgstr[1] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada." -#: mod/admin.php:464 +#: include/api.php:1155 #, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:492 -msgid "Remote Contact Blocklist" -msgstr "" - -#: mod/admin.php:493 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: mod/admin.php:494 -msgid "Block Remote Contact" -msgstr "" - -#: mod/admin.php:495 mod/admin.php:1954 -msgid "select all" -msgstr "seleccionar todo" - -#: mod/admin.php:496 -msgid "select none" -msgstr "" - -#: mod/admin.php:497 mod/admin.php:1963 src/Module/Contact.php:623 -#: src/Module/Contact.php:825 src/Module/Contact.php:1078 -msgid "Block" -msgstr "Bloquear" - -#: mod/admin.php:498 mod/admin.php:1965 src/Module/Contact.php:623 -#: src/Module/Contact.php:825 src/Module/Contact.php:1078 -msgid "Unblock" -msgstr "Desbloquear" - -#: mod/admin.php:499 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: mod/admin.php:501 -msgid "Blocked Remote Contacts" -msgstr "" - -#: mod/admin.php:502 -msgid "Block New Remote Contact" -msgstr "" - -#: mod/admin.php:503 -msgid "Photo" -msgstr "" - -#: mod/admin.php:503 mod/admin.php:1946 mod/admin.php:1957 mod/admin.php:1971 -#: mod/admin.php:1987 mod/crepair.php:161 mod/settings.php:670 -#: mod/settings.php:696 -msgid "Name" -msgstr "Nombre" - -#: mod/admin.php:503 mod/profiles.php:395 -msgid "Address" -msgstr "Dirección" - -#: mod/admin.php:503 mod/admin.php:513 mod/follow.php:167 -#: mod/notifications.php:177 mod/notifications.php:261 mod/unfollow.php:137 -#: src/Module/Contact.php:642 -msgid "Profile URL" -msgstr "URL Perfil" - -#: mod/admin.php:511 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:513 -msgid "URL of the remote contact to block." -msgstr "" - -#: mod/admin.php:535 -msgid "Delete this Item" -msgstr "Eliminar este artículo" - -#: mod/admin.php:536 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo." - -#: mod/admin.php:537 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456." - -#: mod/admin.php:538 -msgid "GUID" -msgstr "GUID" - -#: mod/admin.php:538 -msgid "The GUID of the item you want to delete." -msgstr "El GUID del artículo que quiere eliminar." - -#: mod/admin.php:572 -msgid "Item marked for deletion." -msgstr "Artículo marcado para eliminación." - -#: mod/admin.php:643 -msgid "unknown" -msgstr "desconocido" - -#: mod/admin.php:746 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. " - -#: mod/admin.php:747 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "El modulo directorio de contactos encontrados no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí." - -#: mod/admin.php:759 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "" - -#: mod/admin.php:798 mod/admin.php:849 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:799 -msgid "Recipient Name" -msgstr "Nombre del recipiente" - -#: mod/admin.php:800 -msgid "Recipient Profile" -msgstr "Perfil del recipiente" - -#: mod/admin.php:801 src/Content/Nav.php:233 -#: src/Core/NotificationsManager.php:178 view/theme/frio/theme.php:280 -msgid "Network" -msgstr "Red" - -#: mod/admin.php:802 mod/admin.php:851 -msgid "Created" -msgstr "Creado" - -#: mod/admin.php:803 -msgid "Last Tried" -msgstr "Ultimo intento" - -#: mod/admin.php:804 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. " - -#: mod/admin.php:825 -msgid "Inspect Deferred Worker Queue" -msgstr "" - -#: mod/admin.php:826 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "" - -#: mod/admin.php:829 -msgid "Inspect Worker Queue" -msgstr "" - -#: mod/admin.php:830 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "" - -#: mod/admin.php:850 -msgid "Job Parameters" -msgstr "" - -#: mod/admin.php:852 -msgid "Priority" -msgstr "" - -#: mod/admin.php:877 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "" - -#: mod/admin.php:884 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %2$s" - -#: mod/admin.php:894 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "" - -#: mod/admin.php:900 -msgid "The worker was never executed. Please check your database structure!" -msgstr "El trabajador nunca fue ejecutado. ¡Revise la estructura de su base de datos, por favor!" - -#: mod/admin.php:903 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "La última ejecución del trabajador estaba en %s UTC. Esto es anterior a una hora. Revise tu configuración de crontab, por favor." - -#: mod/admin.php:909 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "" - -#: mod/admin.php:916 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "" - -#: mod/admin.php:922 -msgid "Normal Account" -msgstr "Cuenta normal" - -#: mod/admin.php:923 -msgid "Automatic Follower Account" -msgstr "Cuenta de Seguimiento Automático" - -#: mod/admin.php:924 -msgid "Public Forum Account" -msgstr "Cuenta del Foro Pública" - -#: mod/admin.php:925 -msgid "Automatic Friend Account" -msgstr "Cuenta de amistad automática" - -#: mod/admin.php:926 -msgid "Blog Account" -msgstr "Cuenta de blog" - -#: mod/admin.php:927 -msgid "Private Forum Account" -msgstr "Cuenta del Foro Privada" - -#: mod/admin.php:950 -msgid "Message queues" -msgstr "Cola de mensajes" - -#: mod/admin.php:956 -msgid "Server Settings" -msgstr "" - -#: mod/admin.php:965 -msgid "Summary" -msgstr "Resumen" - -#: mod/admin.php:967 -msgid "Registered users" -msgstr "Usuarios registrados" - -#: mod/admin.php:969 -msgid "Pending registrations" -msgstr "Pendientes de registro" - -#: mod/admin.php:970 -msgid "Version" -msgstr "Versión" - -#: mod/admin.php:975 -msgid "Active addons" -msgstr "" - -#: mod/admin.php:1007 -msgid "Can not parse base url. Must have at least ://" -msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos ://" - -#: mod/admin.php:1343 -msgid "Site settings updated." -msgstr "Configuración de actualización." - -#: mod/admin.php:1371 mod/settings.php:896 -msgid "No special theme for mobile devices" -msgstr "No hay tema especial para dispositivos móviles" - -#: mod/admin.php:1400 -msgid "No community page for local users" -msgstr "" - -#: mod/admin.php:1401 -msgid "No community page" -msgstr "No hay pagina de comunidad" - -#: mod/admin.php:1402 -msgid "Public postings from users of this site" -msgstr "Temas públicos de perfiles de este sitio." - -#: mod/admin.php:1403 -msgid "Public postings from the federated network" -msgstr "" - -#: mod/admin.php:1404 -msgid "Public postings from local users and the federated network" -msgstr "" - -#: mod/admin.php:1408 mod/admin.php:1576 mod/admin.php:1586 -#: src/Module/Contact.php:548 -msgid "Disabled" -msgstr "Deshabilitado" - -#: mod/admin.php:1410 -msgid "Users, Global Contacts" -msgstr "Perfiles, contactos globales" - -#: mod/admin.php:1411 -msgid "Users, Global Contacts/fallback" -msgstr "Perfiles, contactos globales/fallback" - -#: mod/admin.php:1415 -msgid "One month" -msgstr "Un mes" - -#: mod/admin.php:1416 -msgid "Three months" -msgstr "Tres meses" - -#: mod/admin.php:1417 -msgid "Half a year" -msgstr "Medio año" - -#: mod/admin.php:1418 -msgid "One year" -msgstr "Un año" - -#: mod/admin.php:1423 -msgid "Multi user instance" -msgstr "Sesión multi usuario" - -#: mod/admin.php:1447 -msgid "Closed" -msgstr "Cerrado" - -#: mod/admin.php:1448 -msgid "Requires approval" -msgstr "Requiere aprobación" - -#: mod/admin.php:1449 -msgid "Open" -msgstr "Abierto" - -#: mod/admin.php:1453 -msgid "No SSL policy, links will track page SSL state" -msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página" - -#: mod/admin.php:1454 -msgid "Force all links to use SSL" -msgstr "Forzar todos los enlaces a utilizar SSL" - -#: mod/admin.php:1455 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" - -#: mod/admin.php:1459 -msgid "Don't check" -msgstr "No verificar" - -#: mod/admin.php:1460 -msgid "check the stable version" -msgstr "verifique la versión estable" - -#: mod/admin.php:1461 -msgid "check the development version" -msgstr "verifica la versión de desarrollo" - -#: mod/admin.php:1480 -msgid "Republish users to directory" -msgstr "Volver a publicar usuarios en el directorio" - -#: mod/admin.php:1481 mod/register.php:257 -msgid "Registration" -msgstr "Registro" - -#: mod/admin.php:1482 -msgid "File upload" -msgstr "Subida de archivo" - -#: mod/admin.php:1483 -msgid "Policies" -msgstr "Políticas" - -#: mod/admin.php:1484 mod/events.php:570 src/Model/Profile.php:879 -#: src/Module/Contact.php:903 -msgid "Advanced" -msgstr "Avanzado" - -#: mod/admin.php:1485 -msgid "Auto Discovered Contact Directory" -msgstr "Directorio de contactos descubierto automáticamente" - -#: mod/admin.php:1486 -msgid "Performance" -msgstr "Rendimiento" - -#: mod/admin.php:1487 -msgid "Worker" -msgstr "Trabajador (??)" - -#: mod/admin.php:1488 -msgid "Message Relay" -msgstr "" - -#: mod/admin.php:1489 -msgid "Relocate Instance" -msgstr "" - -#: mod/admin.php:1490 -msgid "Warning! Advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:1494 -msgid "Site name" -msgstr "Nombre del sitio" - -#: mod/admin.php:1495 -msgid "Host name" -msgstr "Nombre de dominio" - -#: mod/admin.php:1496 -msgid "Sender Email" -msgstr "Dirección de origen de correo electrónico" - -#: mod/admin.php:1496 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío." - -#: mod/admin.php:1497 -msgid "Banner/Logo" -msgstr "Imagen/Logotipo" - -#: mod/admin.php:1498 -msgid "Shortcut icon" -msgstr "Icono de atajo" - -#: mod/admin.php:1498 -msgid "Link to an icon that will be used for browsers." -msgstr "Enlace hacia un icono que sera usado para el navegador." - -#: mod/admin.php:1499 -msgid "Touch icon" -msgstr "Icono touch" - -#: mod/admin.php:1499 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Enlace para un icono que sera usado para tablets y moviles." - -#: mod/admin.php:1500 -msgid "Additional Info" -msgstr "Información adicional" - -#: mod/admin.php:1500 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: mod/admin.php:1501 -msgid "System language" -msgstr "Idioma" - -#: mod/admin.php:1502 -msgid "System theme" -msgstr "Tema" - -#: mod/admin.php:1502 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema" - -#: mod/admin.php:1503 -msgid "Mobile system theme" -msgstr "Tema de sistema móvil" - -#: mod/admin.php:1503 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móviles" - -#: mod/admin.php:1504 -msgid "SSL link policy" -msgstr "Política de enlaces SSL" - -#: mod/admin.php:1504 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL" - -#: mod/admin.php:1505 -msgid "Force SSL" -msgstr "Forzar SSL" - -#: mod/admin.php:1505 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." - -#: mod/admin.php:1506 -msgid "Hide help entry from navigation menu" -msgstr "Ocultar la ayuda en el menú de navegación" - -#: mod/admin.php:1506 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente." - -#: mod/admin.php:1507 -msgid "Single user instance" -msgstr "Sesión de usuario único" - -#: mod/admin.php:1507 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" - -#: mod/admin.php:1508 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" - -#: mod/admin.php:1508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite." - -#: mod/admin.php:1509 -msgid "Maximum image length" -msgstr "Largo máximo de imagen" - -#: mod/admin.php:1509 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." - -#: mod/admin.php:1510 -msgid "JPEG image quality" -msgstr "Calidad de imagen JPEG" - -#: mod/admin.php:1510 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." - -#: mod/admin.php:1512 -msgid "Register policy" -msgstr "Política de registros" - -#: mod/admin.php:1513 -msgid "Maximum Daily Registrations" -msgstr "Registros Máximos Diarios" - -#: mod/admin.php:1513 -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 anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." - -#: mod/admin.php:1514 -msgid "Register text" -msgstr "Términos" - -#: mod/admin.php:1514 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "" - -#: mod/admin.php:1515 -msgid "Forbidden Nicknames" -msgstr "" - -#: mod/admin.php:1515 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "" - -#: mod/admin.php:1516 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: mod/admin.php:1516 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." - -#: mod/admin.php:1517 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" - -#: mod/admin.php:1517 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" - -#: mod/admin.php:1518 -msgid "Allowed email domains" -msgstr "Dominios de correo permitidos" - -#: mod/admin.php:1518 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" - -#: mod/admin.php:1519 -msgid "No OEmbed rich content" -msgstr "" - -#: mod/admin.php:1519 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: mod/admin.php:1520 -msgid "Allowed OEmbed domains" -msgstr "" - -#: mod/admin.php:1520 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: mod/admin.php:1521 -msgid "Block public" -msgstr "Bloqueo público" - -#: mod/admin.php:1521 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." - -#: mod/admin.php:1522 -msgid "Force publish" -msgstr "Forzar publicación" - -#: mod/admin.php:1522 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." - -#: mod/admin.php:1522 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "" - -#: mod/admin.php:1523 -msgid "Global directory URL" -msgstr "URL del directorio global." - -#: mod/admin.php:1523 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia." - -#: mod/admin.php:1524 -msgid "Private posts by default for new users" -msgstr "Publicaciones privadas por defecto para usuarios nuevos" - -#: mod/admin.php:1524 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público." - -#: mod/admin.php:1525 -msgid "Don't include post content in email notifications" -msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" - -#: mod/admin.php:1525 -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 "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." - -#: mod/admin.php:1526 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." - -#: mod/admin.php:1526 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." - -#: mod/admin.php:1527 -msgid "Don't embed private images in posts" -msgstr "No agregar imágenes privados en las publicaciones" - -#: mod/admin.php:1527 -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 "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." - -#: mod/admin.php:1528 -msgid "Explicit Content" -msgstr "" - -#: mod/admin.php:1528 -msgid "" -"Set this to announce that your node is used mostly for explicit content that" -" might not be suited for minors. This information will be published in the " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "" - -#: mod/admin.php:1529 -msgid "Allow Users to set remote_self" -msgstr "Permitir a los usuarios de definir perfiles_remotos" - -#: mod/admin.php:1529 -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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." - -#: mod/admin.php:1530 -msgid "Block multiple registrations" -msgstr "Bloquear registros multiples" - -#: mod/admin.php:1530 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas." - -#: mod/admin.php:1531 -msgid "Disable OpenID" -msgstr "" - -#: mod/admin.php:1531 -msgid "Disable OpenID support for registration and logins." -msgstr "" - -#: mod/admin.php:1532 -msgid "No Fullname check" -msgstr "" - -#: mod/admin.php:1532 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "" - -#: mod/admin.php:1533 -msgid "Community pages for visitors" -msgstr "" - -#: mod/admin.php:1533 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: mod/admin.php:1534 -msgid "Posts per user on community page" -msgstr "Publicaciones por usuario en la pagina de comunidad" - -#: mod/admin.php:1534 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')" - -#: mod/admin.php:1535 -msgid "Disable OStatus support" -msgstr "" - -#: mod/admin.php:1535 -msgid "" -"Disable 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:1536 -msgid "Only import OStatus/ActivityPub threads from our contacts" -msgstr "" - -#: mod/admin.php:1536 -msgid "" -"Normally we import every content from our OStatus and ActivityPub contacts. " -"With this option we only store threads that are started by a contact that is" -" known on our system." -msgstr "" - -#: mod/admin.php:1537 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado." - -#: mod/admin.php:1539 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)." - -#: mod/admin.php:1540 -msgid "Enable Diaspora support" -msgstr "Habilitar el soporte para Diaspora*" - -#: mod/admin.php:1540 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Provee una compatibilidad con la red de Diaspora." - -#: mod/admin.php:1541 -msgid "Only allow Friendica contacts" -msgstr "Permitir solo contactos de Friendica" - -#: mod/admin.php:1541 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados." - -#: mod/admin.php:1542 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: mod/admin.php:1542 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." - -#: mod/admin.php:1543 -msgid "Proxy user" -msgstr "Usuario proxy" - -#: mod/admin.php:1544 -msgid "Proxy URL" -msgstr "Dirección proxy" - -#: mod/admin.php:1545 -msgid "Network timeout" -msgstr "Tiempo de espera de red" - -#: mod/admin.php:1545 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." - -#: mod/admin.php:1546 -msgid "Maximum Load Average" -msgstr "Promedio de carga máxima" - -#: mod/admin.php:1546 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50." - -#: mod/admin.php:1547 -msgid "Maximum Load Average (Frontend)" -msgstr "Carga máxima promedio (frontend)" - -#: mod/admin.php:1547 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50." - -#: mod/admin.php:1548 -msgid "Minimal Memory" -msgstr "Memoria Mínima" - -#: mod/admin.php:1548 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: mod/admin.php:1549 -msgid "Maximum table size for optimization" -msgstr "Tamaño máximo de las tablas para la optimización." - -#: mod/admin.php:1549 -msgid "" -"Maximum table size (in MB) for the automatic optimization. Enter -1 to " -"disable it." -msgstr "" - -#: mod/admin.php:1550 -msgid "Minimum level of fragmentation" -msgstr "Nivel mínimo de fragmentación " - -#: mod/admin.php:1550 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. " - -#: mod/admin.php:1552 -msgid "Periodical check of global contacts" -msgstr "Verificación periódica de los contactos globales." - -#: mod/admin.php:1552 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores." - -#: mod/admin.php:1553 -msgid "Days between requery" -msgstr "Días entre búsquedas" - -#: mod/admin.php:1553 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos." - -#: mod/admin.php:1554 -msgid "Discover contacts from other servers" -msgstr "Descubrir contactos de otros servidores" - -#: mod/admin.php:1554 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'" - -#: mod/admin.php:1555 -msgid "Timeframe for fetching global contacts" -msgstr "Intervalos de tiempo para revisar contactos globales." - -#: mod/admin.php:1555 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)" - -#: mod/admin.php:1556 -msgid "Search the local directory" -msgstr "Buscar el directorio local" - -#: mod/admin.php:1556 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida." - -#: mod/admin.php:1558 -msgid "Publish server information" -msgstr "Publicar información del servidor" - -#: mod/admin.php:1558 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles." - -#: mod/admin.php:1560 -msgid "Check upstream version" -msgstr "Verifique la versión ascendente" - -#: mod/admin.php:1560 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración." - -#: mod/admin.php:1561 -msgid "Suppress Tags" -msgstr "Suprimir tags" - -#: mod/admin.php:1561 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Suprimir la lista de tags al final de una publicación." - -#: mod/admin.php:1562 -msgid "Clean database" -msgstr "" - -#: mod/admin.php:1562 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "" - -#: mod/admin.php:1563 -msgid "Lifespan of remote items" -msgstr "" - -#: mod/admin.php:1563 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "" - -#: mod/admin.php:1564 -msgid "Lifespan of unclaimed items" -msgstr "" - -#: mod/admin.php:1564 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "" - -#: mod/admin.php:1565 -msgid "Lifespan of raw conversation data" -msgstr "" - -#: mod/admin.php:1565 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "" - -#: mod/admin.php:1566 -msgid "Path to item cache" -msgstr "Ruta a la caché del objeto" - -#: mod/admin.php:1566 -msgid "The item caches buffers generated bbcode and external images." -msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. " - -#: mod/admin.php:1567 -msgid "Cache duration in seconds" -msgstr "Duración de la caché en segundos" - -#: mod/admin.php:1567 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1." - -#: mod/admin.php:1568 -msgid "Maximum numbers of comments per post" -msgstr "Numero máximo de respuestas por tema" - -#: mod/admin.php:1568 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." - -#: mod/admin.php:1569 -msgid "Temp path" -msgstr "Ruta a los temporales" - -#: mod/admin.php:1569 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " - -#: mod/admin.php:1570 -msgid "Base path to installation" -msgstr "Ruta base para la instalación" - -#: mod/admin.php:1570 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." - -#: mod/admin.php:1571 -msgid "Disable picture proxy" -msgstr "Deshabilitar proxy de imagen" - -#: mod/admin.php:1571 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "" - -#: mod/admin.php:1572 -msgid "Only search in tags" -msgstr "Solo buscar en tags" - -#: mod/admin.php:1572 -msgid "On large systems the text search can slow down the system extremely." -msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." - -#: mod/admin.php:1574 -msgid "New base url" -msgstr "Nueva URLbase" - -#: mod/admin.php:1574 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Cambiar la URL base para este servidor. Envía un mensaje de reubicación a todos los contactos de Friendica y Diaspora* de todos los usuarios." - -#: mod/admin.php:1576 -msgid "RINO Encryption" -msgstr "Encryptado RINO" - -#: mod/admin.php:1576 -msgid "Encryption layer between nodes." -msgstr "Capa de encryptación entre nodos." - -#: mod/admin.php:1576 -msgid "Enabled" -msgstr "" - -#: mod/admin.php:1578 -msgid "Maximum number of parallel workers" -msgstr "Numero máximo de trabajos paralelos de fondo." - -#: mod/admin.php:1578 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "" - -#: mod/admin.php:1579 -msgid "Don't use 'proc_open' with the worker" -msgstr "No use 'proc_open' junto al \"trabajador\"!" - -#: mod/admin.php:1579 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: mod/admin.php:1580 -msgid "Enable fastlane" -msgstr "Habilitar ascenso rápido" - -#: mod/admin.php:1580 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad." - -#: mod/admin.php:1581 -msgid "Enable frontend worker" -msgstr "Habilitar trabajador de interfaz" - -#: mod/admin.php:1581 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " -"might want to call %s/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server." -msgstr "" - -#: mod/admin.php:1583 -msgid "Subscribe to relay" -msgstr "" - -#: mod/admin.php:1583 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: mod/admin.php:1584 -msgid "Relay server" -msgstr "" - -#: mod/admin.php:1584 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: mod/admin.php:1585 -msgid "Direct relay transfer" -msgstr "" - -#: mod/admin.php:1585 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: mod/admin.php:1586 -msgid "Relay scope" -msgstr "" - -#: mod/admin.php:1586 -msgid "" -"Can be 'all' or 'tags'. 'all' means that every public post should be " -"received. 'tags' means that only posts with selected tags should be " -"received." -msgstr "" - -#: mod/admin.php:1586 -msgid "all" -msgstr "" - -#: mod/admin.php:1586 -msgid "tags" -msgstr "" - -#: mod/admin.php:1587 -msgid "Server tags" -msgstr "" - -#: mod/admin.php:1587 -msgid "Comma separated list of tags for the 'tags' subscription." -msgstr "" - -#: mod/admin.php:1588 -msgid "Allow user tags" -msgstr "" - -#: mod/admin.php:1588 -msgid "" -"If enabled, the tags from the saved searches will used for the 'tags' " -"subscription in addition to the 'relay_server_tags'." -msgstr "" - -#: mod/admin.php:1591 -msgid "Start Relocation" -msgstr "" - -#: mod/admin.php:1617 -msgid "Update has been marked successful" -msgstr "La actualización se ha completado con éxito" - -#: mod/admin.php:1624 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Actualización de base de datos %s fue aplicada con éxito." - -#: mod/admin.php:1628 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" - -#: mod/admin.php:1644 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Paso %s fallo con el error: %s" - -#: mod/admin.php:1646 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Actualización %s aplicada con éxito." - -#: mod/admin.php:1649 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización %s no ha informado, se desconoce el estado." - -#: mod/admin.php:1652 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "No había función adicional de actualización %s que necesitaba ser requerida." - -#: mod/admin.php:1675 -msgid "No failed updates." -msgstr "Actualizaciones sin fallos." - -#: mod/admin.php:1676 -msgid "Check database structure" -msgstr "Revisar estructura de la base de datos" - -#: mod/admin.php:1681 -msgid "Failed Updates" -msgstr "Actualizaciones fallidas" - -#: mod/admin.php:1682 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." - -#: mod/admin.php:1683 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como correcta (si actualizaste manualmente)" - -#: mod/admin.php:1684 -msgid "Attempt to execute this update step automatically" -msgstr "Intentando ejecutar este paso automáticamente" - -#: mod/admin.php:1723 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted." - -#: mod/admin.php:1726 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1763 src/Model/User.php:802 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles de registro para %s" - -#: mod/admin.php:1773 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuario bloqueado/desbloqueado" -msgstr[1] "%s usuarios bloqueados/desbloqueados" - -#: mod/admin.php:1780 mod/admin.php:1833 -msgid "You can't remove yourself" -msgstr "" - -#: mod/admin.php:1783 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuario eliminado" -msgstr[1] "%s usuarios eliminados" - -#: mod/admin.php:1831 -#, php-format -msgid "User '%s' deleted" -msgstr "Usuario '%s' eliminado" - -#: mod/admin.php:1842 -#, php-format -msgid "User '%s' unblocked" -msgstr "Usuario '%s' desbloqueado" - -#: mod/admin.php:1842 -#, php-format -msgid "User '%s' blocked" -msgstr "Usuario '%s' bloqueado'" - -#: mod/admin.php:1890 mod/settings.php:1052 -msgid "Normal Account Page" -msgstr "Página de cuenta normal" - -#: mod/admin.php:1891 mod/settings.php:1056 -msgid "Soapbox Page" -msgstr "Página de tribuna" - -#: mod/admin.php:1892 mod/settings.php:1060 -msgid "Public Forum" -msgstr "Foro público" - -#: mod/admin.php:1893 mod/settings.php:1064 -msgid "Automatic Friend Page" -msgstr "Página de Amistad autómatica" - -#: mod/admin.php:1894 -msgid "Private Forum" -msgstr "" - -#: mod/admin.php:1897 mod/settings.php:1036 -msgid "Personal Page" -msgstr "Página personal" - -#: mod/admin.php:1898 mod/settings.php:1040 -msgid "Organisation Page" -msgstr "Página de organización" - -#: mod/admin.php:1899 mod/settings.php:1044 -msgid "News Page" -msgstr "Página de noticias" - -#: mod/admin.php:1900 mod/settings.php:1048 -msgid "Community Forum" -msgstr "Foro de la comunidad" - -#: mod/admin.php:1946 mod/admin.php:1957 mod/admin.php:1971 mod/admin.php:1989 -#: src/Content/ContactSelector.php:84 -msgid "Email" -msgstr "Correo electrónico" - -#: mod/admin.php:1946 mod/admin.php:1971 -msgid "Register date" -msgstr "Fecha de registro" - -#: mod/admin.php:1946 mod/admin.php:1971 -msgid "Last login" -msgstr "Último acceso" - -#: mod/admin.php:1946 mod/admin.php:1971 -msgid "Last item" -msgstr "Último elemento" - -#: mod/admin.php:1946 -msgid "Type" -msgstr "" - -#: mod/admin.php:1953 -msgid "Add User" -msgstr "Agregar usuario" - -#: mod/admin.php:1955 -msgid "User registrations waiting for confirm" -msgstr "Registro de usuarios esperando confirmación" - -#: mod/admin.php:1956 -msgid "User waiting for permanent deletion" -msgstr "Usuario esperando anulación permanente." - -#: mod/admin.php:1957 -msgid "Request date" -msgstr "Solicitud de fecha" - -#: mod/admin.php:1958 -msgid "No registrations." -msgstr "Sin registros." - -#: mod/admin.php:1959 -msgid "Note from the user" -msgstr "Nota para el usuario" - -#: mod/admin.php:1960 mod/notifications.php:181 mod/notifications.php:267 -msgid "Approve" -msgstr "Aprobar" - -#: mod/admin.php:1961 -msgid "Deny" -msgstr "Denegado" - -#: mod/admin.php:1964 -msgid "User blocked" -msgstr "" - -#: mod/admin.php:1966 -msgid "Site admin" -msgstr "Administrador de la web" - -#: mod/admin.php:1967 -msgid "Account expired" -msgstr "Cuenta caducada" - -#: mod/admin.php:1970 -msgid "New User" -msgstr "Nuevo usuario" - -#: mod/admin.php:1971 -msgid "Permanent deletion" -msgstr "" - -#: mod/admin.php:1976 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" - -#: mod/admin.php:1977 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" - -#: mod/admin.php:1987 -msgid "Name of the new user." -msgstr "Nombre del nuevo usuario" - -#: mod/admin.php:1988 -msgid "Nickname" -msgstr "Apodo" - -#: mod/admin.php:1988 -msgid "Nickname of the new user." -msgstr "Apodo del nuevo perfil." - -#: mod/admin.php:1989 -msgid "Email address of the new user." -msgstr "Dirección de correo del nuevo perfil." - -#: mod/admin.php:2030 -#, php-format -msgid "Addon %s disabled." -msgstr "" - -#: mod/admin.php:2033 -#, php-format -msgid "Addon %s enabled." -msgstr "" - -#: mod/admin.php:2044 mod/admin.php:2293 -msgid "Disable" -msgstr "Desactivado" - -#: mod/admin.php:2047 mod/admin.php:2296 -msgid "Enable" -msgstr "Activado" - -#: mod/admin.php:2069 mod/admin.php:2333 -msgid "Toggle" -msgstr "Activar" - -#: mod/admin.php:2070 mod/admin.php:2334 mod/newmember.php:20 -#: mod/settings.php:136 src/Content/Nav.php:257 view/theme/frio/theme.php:283 -msgid "Settings" -msgstr "Configuración" - -#: mod/admin.php:2077 mod/admin.php:2342 -msgid "Author: " -msgstr "Autor:" - -#: mod/admin.php:2078 mod/admin.php:2343 -msgid "Maintainer: " -msgstr "Mantenedor: " - -#: mod/admin.php:2130 -msgid "Reload active addons" -msgstr "" - -#: mod/admin.php:2135 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "" - -#: mod/admin.php:2255 -msgid "No themes found." -msgstr "No se encontraron temas." - -#: mod/admin.php:2324 -msgid "Screenshot" -msgstr "Captura de pantalla" - -#: mod/admin.php:2378 -msgid "Reload active themes" -msgstr "Recargar interfaces de usuario activos" - -#: mod/admin.php:2383 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "" - -#: mod/admin.php:2384 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: mod/admin.php:2385 -msgid "[Unsupported]" -msgstr "[Sin soporte]" - -#: mod/admin.php:2409 -msgid "Log settings updated." -msgstr "Configuración de registro actualizada." - -#: mod/admin.php:2442 -msgid "PHP log currently enabled." -msgstr "Registro PHP actualmente disponible." - -#: mod/admin.php:2444 -msgid "PHP log currently disabled." -msgstr "Registro PHP actualmente deshabilitado." - -#: mod/admin.php:2453 -msgid "Clear" -msgstr "Limpiar" - -#: mod/admin.php:2457 -msgid "Enable Debugging" -msgstr "Habilitar debugging" - -#: mod/admin.php:2458 -msgid "Log file" -msgstr "Archivo de registro" - -#: mod/admin.php:2458 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." - -#: mod/admin.php:2459 -msgid "Log level" -msgstr "Nivel de registro" - -#: mod/admin.php:2461 -msgid "PHP logging" -msgstr "PHP logging" - -#: mod/admin.php:2462 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2493 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "" - -#: mod/admin.php:2497 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "" - -#: mod/admin.php:2588 mod/admin.php:2589 mod/settings.php:766 -msgid "Off" -msgstr "Apagado" - -#: mod/admin.php:2588 mod/admin.php:2589 mod/settings.php:766 -msgid "On" -msgstr "Encendido" - -#: mod/admin.php:2589 -#, php-format -msgid "Lock feature %s" -msgstr "Trancar opción %s " - -#: mod/admin.php:2597 -msgid "Manage Additional Features" -msgstr "Administrar opciones adicionales" - -#: mod/allfriends.php:52 -msgid "No friends to display." -msgstr "No hay amigos para mostrar." - -#: mod/allfriends.php:91 mod/dirfind.php:219 mod/match.php:99 -#: mod/suggest.php:105 src/Content/Widget.php:38 src/Model/Profile.php:307 -msgid "Connect" -msgstr "Conectar" - -#: mod/api.php:87 mod/api.php:109 -msgid "Authorize application connection" -msgstr "Autorizar la conexión de la aplicación" - -#: mod/api.php:88 -msgid "Return to your app and insert this Securty Code:" -msgstr "Regresa a tu aplicación e introduce este código de seguridad:" - -#: mod/api.php:97 -msgid "Please login to continue." -msgstr "Inicia sesión para continuar." - -#: mod/api.php:111 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" - -#: mod/api.php:113 mod/dfrn_request.php:644 mod/follow.php:151 -#: mod/profiles.php:542 mod/profiles.php:546 mod/profiles.php:567 -#: mod/register.php:233 mod/settings.php:1088 mod/settings.php:1094 -#: mod/settings.php:1101 mod/settings.php:1105 mod/settings.php:1109 -#: mod/settings.php:1113 mod/settings.php:1117 mod/settings.php:1121 -#: mod/settings.php:1141 mod/settings.php:1142 mod/settings.php:1143 -#: mod/settings.php:1144 mod/settings.php:1145 -msgid "No" -msgstr "No" - -#: mod/apps.php:15 src/App.php:1657 -msgid "You must be logged in to use addons. " -msgstr "Tienes que estar registrado para tener acceso a los accesorios." - -#: mod/apps.php:20 -msgid "Applications" -msgstr "Aplicaciones" - -#: mod/apps.php:25 -msgid "No installed applications." -msgstr "Sin aplicaciones" - -#: mod/attach.php:14 -msgid "Item not available." -msgstr "Elemento no disponible." - -#: mod/attach.php:24 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: mod/babel.php:25 -msgid "Source input" -msgstr "" - -#: mod/babel.php:31 -msgid "BBCode::toPlaintext" -msgstr "" - -#: mod/babel.php:37 -msgid "BBCode::convert (raw HTML)" -msgstr "" - -#: mod/babel.php:42 -msgid "BBCode::convert" -msgstr "" - -#: mod/babel.php:48 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:54 -msgid "BBCode::toMarkdown" -msgstr "" - -#: mod/babel.php:60 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" - -#: mod/babel.php:66 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" - -#: mod/babel.php:72 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:79 -msgid "Source input (Diaspora format)" -msgstr "" - -#: mod/babel.php:85 -msgid "Markdown::convert (raw HTML)" -msgstr "" - -#: mod/babel.php:90 -msgid "Markdown::convert" -msgstr "" - -#: mod/babel.php:96 -msgid "Markdown::toBBCode" -msgstr "" - -#: mod/babel.php:103 -msgid "Raw HTML input" -msgstr "" - -#: mod/babel.php:108 -msgid "HTML Input" -msgstr "" - -#: mod/babel.php:114 -msgid "HTML::toBBCode" -msgstr "" - -#: mod/babel.php:120 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "" - -#: mod/babel.php:125 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "" - -#: mod/babel.php:131 -msgid "HTML::toMarkdown" -msgstr "" - -#: mod/babel.php:137 -msgid "HTML::toPlaintext" -msgstr "" - -#: mod/babel.php:145 -msgid "Source text" -msgstr "" - -#: mod/babel.php:146 -msgid "BBCode" -msgstr "" - -#: mod/babel.php:147 -msgid "Markdown" -msgstr "" - -#: mod/babel.php:148 -msgid "HTML" -msgstr "" - -#: mod/bookmarklet.php:22 src/Content/Nav.php:164 src/Module/Login.php:319 -msgid "Login" -msgstr "Acceder" - -#: mod/bookmarklet.php:32 -msgid "Bad Request" -msgstr "" - -#: mod/bookmarklet.php:54 -msgid "The post was created" -msgstr "La publicación fue creada" - -#: mod/cal.php:35 mod/cal.php:39 mod/community.php:38 mod/follow.php:21 -#: mod/viewcontacts.php:23 mod/viewcontacts.php:27 mod/viewsrc.php:13 +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "Limite mensual de %d publicaciones alcanzado. La publicación fue rechazada." + +#: include/api.php:4452 mod/photos.php:105 mod/photos.php:196 +#: mod/photos.php:633 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1580 src/Module/Settings/Profile/Photo/Crop.php:97 +#: src/Module/Settings/Profile/Photo/Crop.php:113 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:861 +#: src/Model/User.php:869 src/Model/User.php:877 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51 +#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37 +#: src/Module/Conversation/Community.php:145 src/Module/Item/Ignore.php:41 +#: src/Module/Diaspora/Receive.php:51 msgid "Access denied." msgstr "Acceso denegado." -#: mod/cal.php:47 mod/dfrn_poll.php:490 mod/help.php:67 -#: mod/viewcontacts.php:34 src/App.php:1708 -msgid "Page not found." -msgstr "Página no encontrada." - -#: mod/cal.php:142 mod/display.php:313 mod/profile.php:156 -msgid "Access to this profile has been restricted." -msgstr "El acceso a este perfil ha sido restringido." - -#: mod/cal.php:274 mod/events.php:399 src/Content/Nav.php:154 -#: src/Content/Nav.php:220 src/Model/Profile.php:938 src/Model/Profile.php:949 -#: view/theme/frio/theme.php:277 view/theme/frio/theme.php:281 -msgid "Events" -msgstr "Eventos" - -#: mod/cal.php:275 mod/events.php:400 -msgid "View" -msgstr "Vista" - -#: mod/cal.php:276 mod/events.php:402 -msgid "Previous" -msgstr "Previo" - -#: mod/cal.php:277 mod/events.php:403 src/Module/Install.php:135 -msgid "Next" -msgstr "Siguiente" - -#: mod/cal.php:280 mod/events.php:408 src/Model/Event.php:426 -msgid "today" -msgstr "hoy" - -#: mod/cal.php:281 mod/events.php:409 src/Model/Event.php:427 -#: src/Util/Temporal.php:309 -msgid "month" -msgstr "mes" - -#: mod/cal.php:282 mod/events.php:410 src/Model/Event.php:428 -#: src/Util/Temporal.php:310 -msgid "week" -msgstr "semana" - -#: mod/cal.php:283 mod/events.php:411 src/Model/Event.php:429 -#: src/Util/Temporal.php:311 -msgid "day" -msgstr "día" - -#: mod/cal.php:284 mod/events.php:412 -msgid "list" -msgstr "lista" - -#: mod/cal.php:297 src/Core/Console/NewPassword.php:67 src/Model/User.php:269 -msgid "User not found" -msgstr "Usuario no encontrado" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "Este formato de calendario no se soporta" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "No se ha encontrado información exportable" - -#: mod/cal.php:332 -msgid "calendar" -msgstr "calendario" - -#: mod/common.php:90 -msgid "No contacts in common." -msgstr "Sin contactos en común." - -#: mod/common.php:141 src/Module/Contact.php:893 -msgid "Common Friends" -msgstr "Amigos comunes" - -#: mod/community.php:31 mod/dfrn_request.php:598 mod/directory.php:43 -#: mod/display.php:213 mod/photos.php:943 mod/probe.php:13 mod/search.php:97 -#: mod/search.php:103 mod/videos.php:192 mod/viewcontacts.php:46 -#: mod/webfinger.php:16 -msgid "Public access denied." -msgstr "Acceso público denegado." - -#: mod/community.php:74 -msgid "Community option not available." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." msgstr "" -#: mod/community.php:91 -msgid "Not available." -msgstr "No disponible" - -#: mod/community.php:101 -msgid "Local Community" -msgstr "" - -#: mod/community.php:104 -msgid "Posts from local users on this server" -msgstr "" - -#: mod/community.php:112 -msgid "Global Community" -msgstr "" - -#: mod/community.php:115 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: mod/community.php:161 mod/search.php:230 -msgid "No results." -msgstr "Sin resultados." - -#: mod/community.php:205 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "" - -#: mod/credits.php:19 -msgid "Credits" -msgstr "Creditos" - -#: mod/credits.php:20 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " - -#: mod/crepair.php:90 -msgid "Contact settings applied." -msgstr "Contacto configurado con éxito." - -#: mod/crepair.php:92 -msgid "Contact update failed." -msgstr "Error al actualizar el Contacto." - -#: mod/crepair.php:113 mod/dfrn_confirm.php:127 mod/fsuggest.php:31 -#: mod/fsuggest.php:97 mod/redir.php:32 mod/redir.php:138 +#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 +#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 +#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 +#: src/Module/Contact/Advanced.php:106 msgid "Contact not found." msgstr "Contacto no encontrado." -#: mod/crepair.php:117 +#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 +#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:489 mod/common.php:41 +#: mod/network.php:46 mod/repair_ostatus.php:31 mod/unfollow.php:37 +#: mod/unfollow.php:91 mod/unfollow.php:123 mod/message.php:70 +#: mod/message.php:113 mod/ostatus_subscribe.php:30 mod/suggest.php:34 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/api.php:50 +#: mod/api.php:55 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/item.php:189 mod/item.php:194 mod/item.php:973 mod/uimport.php:32 +#: mod/editpost.php:38 mod/events.php:228 mod/follow.php:76 mod/follow.php:146 +#: mod/notes.php:43 mod/photos.php:178 mod/photos.php:929 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Contacts.php:65 src/Module/BaseNotifications.php:88 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:195 src/Module/Register.php:234 +#: src/Module/FriendSuggest.php:44 src/Module/BaseApi.php:59 +#: src/Module/BaseApi.php:65 src/Module/Delegation.php:118 +#: src/Module/Contact.php:365 src/Module/FollowConfirm.php:16 +#: src/Module/Invite.php:40 src/Module/Invite.php:128 src/Module/Attach.php:56 +#: src/Module/Group.php:45 src/Module/Group.php:90 +#: src/Module/Search/Directory.php:38 src/Module/Contact/Advanced.php:43 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 +#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:114 +msgid "Permission denied." +msgstr "Permiso denegado." + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." + +#: mod/wallmessage.php:76 mod/message.php:84 +msgid "No recipient selected." +msgstr "Ningún destinatario seleccionado" + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Imposible comprobar tu servidor de inicio." + +#: mod/wallmessage.php:82 mod/message.php:91 +msgid "Message could not be sent." +msgstr "El mensaje no ha podido ser enviado." + +#: mod/wallmessage.php:85 mod/message.php:94 +msgid "Message collection failure." +msgstr "Fallo en la recolección de mensajes." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "Sin receptor." + +#: mod/wallmessage.php:137 mod/message.php:215 mod/message.php:365 +msgid "Please enter a link URL:" +msgstr "Introduce la dirección del enlace:" + +#: mod/wallmessage.php:142 mod/message.php:257 +msgid "Send Private Message" +msgstr "Enviar mensaje privado" + +#: mod/wallmessage.php:143 +#, php-format msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." -#: mod/crepair.php:118 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página." +#: mod/wallmessage.php:144 mod/message.php:258 mod/message.php:431 +msgid "To:" +msgstr "Para:" -#: mod/crepair.php:132 mod/crepair.php:134 -msgid "No mirroring" -msgstr "No espejar" +#: mod/wallmessage.php:145 mod/message.php:262 mod/message.php:433 +msgid "Subject:" +msgstr "Asunto:" -#: mod/crepair.php:132 -msgid "Mirror as forwarded posting" -msgstr "Espejar como reenvio" +#: mod/wallmessage.php:151 mod/message.php:266 mod/message.php:436 +#: src/Module/Invite.php:168 +msgid "Your message:" +msgstr "Tu mensaje:" -#: mod/crepair.php:132 mod/crepair.php:134 -msgid "Mirror as my own posting" -msgstr "Espejar como publicación propia" +#: mod/wallmessage.php:154 mod/message.php:270 mod/message.php:441 +#: mod/editpost.php:94 +msgid "Insert web link" +msgstr "Insertar enlace" -#: mod/crepair.php:147 -msgid "Return to contact editor" -msgstr "Volver al editor de contactos" - -#: mod/crepair.php:149 -msgid "Refetch contact data" -msgstr "Volver a solicitar datos del contacto." - -#: mod/crepair.php:151 mod/events.php:568 mod/fsuggest.php:115 -#: mod/invite.php:154 mod/localtime.php:56 mod/manage.php:183 -#: mod/message.php:263 mod/message.php:443 mod/photos.php:1089 -#: mod/photos.php:1177 mod/photos.php:1452 mod/photos.php:1497 -#: mod/photos.php:1536 mod/photos.php:1596 mod/poke.php:192 -#: mod/profiles.php:578 src/Module/Contact.php:596 src/Module/Install.php:189 -#: src/Module/Install.php:224 src/Object/Post.php:808 -#: view/theme/duepuntozero/config.php:72 view/theme/frio/config.php:119 -#: view/theme/quattro/config.php:74 view/theme/vier/config.php:120 -msgid "Submit" -msgstr "Envíar" - -#: mod/crepair.php:152 -msgid "Remote Self" -msgstr "Perfil remoto" - -#: mod/crepair.php:155 -msgid "Mirror postings from this contact" -msgstr "Espejar publicaciones de este contacto" - -#: mod/crepair.php:157 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." - -#: mod/crepair.php:162 -msgid "Account Nickname" -msgstr "Apodo de la cuenta" - -#: mod/crepair.php:163 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" - -#: mod/crepair.php:164 -msgid "Account URL" -msgstr "Dirección de la cuenta" - -#: mod/crepair.php:165 -msgid "Friend Request URL" -msgstr "Dirección de la solicitud de amistad" - -#: mod/crepair.php:166 -msgid "Friend Confirm URL" -msgstr "Dirección de confirmación de tu amigo " - -#: mod/crepair.php:167 -msgid "Notification Endpoint URL" -msgstr "Dirección URL de la notificación" - -#: mod/crepair.php:168 -msgid "Poll/Feed URL" -msgstr "Dirección del Sondeo/Fuentes" - -#: mod/crepair.php:169 -msgid "New photo from this URL" -msgstr "Nueva foto de esta dirección" - -#: mod/delegate.php:43 -msgid "Parent user not found." -msgstr "" - -#: mod/delegate.php:150 -msgid "No parent user" -msgstr "" - -#: mod/delegate.php:165 -msgid "Parent Password:" -msgstr "" - -#: mod/delegate.php:165 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: mod/delegate.php:172 -msgid "Parent User" -msgstr "" - -#: mod/delegate.php:175 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "" - -#: mod/delegate.php:177 src/Content/Nav.php:255 -msgid "Delegate Page Management" -msgstr "Delegar la administración de la página" - -#: mod/delegate.php:178 -msgid "Delegates" -msgstr "" - -#: mod/delegate.php:180 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." - -#: mod/delegate.php:181 -msgid "Existing Page Delegates" -msgstr "Delegados actuales de la página" - -#: mod/delegate.php:183 -msgid "Potential Delegates" -msgstr "Delegados potenciales" - -#: mod/delegate.php:185 mod/tagrm.php:112 -msgid "Remove" -msgstr "Eliminar" - -#: mod/delegate.php:186 -msgid "Add" -msgstr "Añadir" - -#: mod/delegate.php:187 -msgid "No entries." -msgstr "Sin entradas." - -#: mod/dfrn_confirm.php:72 mod/profiles.php:42 mod/profiles.php:152 -#: mod/profiles.php:197 mod/profiles.php:527 +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 msgid "Profile not found." msgstr "Perfil no encontrado." -#: mod/dfrn_confirm.php:128 +#: mod/dfrn_confirm.php:140 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." -#: mod/dfrn_confirm.php:238 +#: mod/dfrn_confirm.php:241 msgid "Response from remote site was not understood." msgstr "La respuesta desde el sitio remoto no ha sido entendida." -#: mod/dfrn_confirm.php:245 mod/dfrn_confirm.php:251 +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Respuesta inesperada desde el sitio remoto: " -#: mod/dfrn_confirm.php:260 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Confirmación completada con éxito." -#: mod/dfrn_confirm.php:272 +#: mod/dfrn_confirm.php:275 msgid "Temporary failure. Please wait and try again." msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." -#: mod/dfrn_confirm.php:275 +#: mod/dfrn_confirm.php:278 msgid "Introduction failed or was revoked." msgstr "La presentación ha fallado o ha sido anulada." -#: mod/dfrn_confirm.php:280 +#: mod/dfrn_confirm.php:283 msgid "Remote site reported: " msgstr "El sito remoto informó: " -#: mod/dfrn_confirm.php:381 -msgid "Unable to set contact photo." -msgstr "Imposible establecer la foto del contacto." - -#: mod/dfrn_confirm.php:443 +#: mod/dfrn_confirm.php:388 #, php-format msgid "No user record found for '%s' " msgstr "No se ha encontrado a ningún '%s' " -#: mod/dfrn_confirm.php:453 +#: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." -#: mod/dfrn_confirm.php:464 +#: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." -#: mod/dfrn_confirm.php:480 +#: mod/dfrn_confirm.php:425 msgid "Contact record was not found for you on our site." msgstr "El contacto no se ha encontrado en nuestra base de datos." -#: mod/dfrn_confirm.php:494 +#: mod/dfrn_confirm.php:439 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." -#: mod/dfrn_confirm.php:510 +#: mod/dfrn_confirm.php:455 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." -#: mod/dfrn_confirm.php:521 +#: mod/dfrn_confirm.php:466 msgid "Unable to set your contact credentials on our system." msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." -#: mod/dfrn_confirm.php:577 +#: mod/dfrn_confirm.php:522 msgid "Unable to update your contact profile details on our system" msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" -#: mod/dfrn_confirm.php:607 mod/dfrn_request.php:560 -#: src/Model/Contact.php:1960 +#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 +#: src/Model/Contact.php:2666 msgid "[Name Withheld]" msgstr "[Nombre oculto]" -#: mod/dfrn_poll.php:126 mod/dfrn_poll.php:534 +#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606 +#: mod/photos.php:843 src/Module/Debug/WebFinger.php:38 +#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:139 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:49 +#: src/Module/Search/Index.php:54 +msgid "Public access denied." +msgstr "Acceso público denegado." + +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "Ningún vídeo seleccionado" + +#: mod/videos.php:182 mod/photos.php:914 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: mod/videos.php:252 src/Model/Item.php:3522 +msgid "View Video" +msgstr "Ver vídeo" + +#: mod/videos.php:259 mod/photos.php:1600 +msgid "View Album" +msgstr "Ver Álbum" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Vídeos recientes" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Subir nuevos vídeos" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "" + +#: mod/match.php:105 src/Content/Pager.php:216 +msgid "first" +msgstr "primera" + +#: mod/match.php:110 src/Content/Pager.php:276 +msgid "next" +msgstr "sig." + +#: mod/match.php:120 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "Sin conincidencias" + +#: mod/match.php:125 +msgid "Profile Match" +msgstr "Coincidencias de Perfil" + +#: mod/settings.php:90 +msgid "Missing some important data!" +msgstr "¡Faltan algunos datos importantes!" + +#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:840 +msgid "Update" +msgstr "Actualizar" + +#: mod/settings.php:200 +msgid "Failed to connect with email account using the settings provided." +msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." + +#: mod/settings.php:229 +msgid "Contact CSV file upload error" +msgstr "" + +#: mod/settings.php:244 +msgid "Importing Contacts done" +msgstr "" + +#: mod/settings.php:255 +msgid "Relocate message has been send to your contacts" +msgstr "Mensaje de reubicación ha sido enviado a sus contactos." + +#: mod/settings.php:267 +msgid "Passwords do not match." +msgstr "" + +#: mod/settings.php:275 src/Console/User.php:166 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." + +#: mod/settings.php:278 src/Console/User.php:169 +msgid "Password changed." +msgstr "Contraseña modificada." + +#: mod/settings.php:281 +msgid "Password unchanged." +msgstr "" + +#: mod/settings.php:364 +msgid "Please use a shorter name." +msgstr "" + +#: mod/settings.php:367 +msgid "Name too short." +msgstr "" + +#: mod/settings.php:374 +msgid "Wrong Password." +msgstr "" + +#: mod/settings.php:379 +msgid "Invalid email." +msgstr "" + +#: mod/settings.php:385 +msgid "Cannot change to that email." +msgstr "" + +#: mod/settings.php:422 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." + +#: mod/settings.php:425 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." + +#: mod/settings.php:442 +msgid "Settings were not updated." +msgstr "" + +#: mod/settings.php:498 mod/settings.php:524 mod/settings.php:558 +msgid "Add application" +msgstr "Agregar aplicación" + +#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704 +#: mod/settings.php:859 src/Module/Admin/Themes/Index.php:113 +#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Site.php:586 src/Module/Admin/Tos.php:66 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170 +#: src/Module/Settings/Display.php:182 +msgid "Save Settings" +msgstr "Guardar configuración" + +#: mod/settings.php:501 mod/settings.php:527 src/Module/Admin/Users.php:237 +#: src/Module/Admin/Users.php:248 src/Module/Admin/Users.php:262 +#: src/Module/Admin/Users.php:278 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Contact/Advanced.php:150 +msgid "Name" +msgstr "Nombre" + +#: mod/settings.php:502 mod/settings.php:528 +msgid "Consumer Key" +msgstr "Clave del consumidor" + +#: mod/settings.php:503 mod/settings.php:529 +msgid "Consumer Secret" +msgstr "Secreto del consumidor" + +#: mod/settings.php:504 mod/settings.php:530 +msgid "Redirect" +msgstr "Redirigir" + +#: mod/settings.php:505 mod/settings.php:531 +msgid "Icon url" +msgstr "Dirección del ícono" + +#: mod/settings.php:516 +msgid "You can't edit this application." +msgstr "No puedes editar esta aplicación." + +#: mod/settings.php:557 +msgid "Connected Apps" +msgstr "Aplicaciones conectadas" + +#: mod/settings.php:559 src/Object/Post.php:184 src/Object/Post.php:186 +msgid "Edit" +msgstr "Editar" + +#: mod/settings.php:561 +msgid "Client key starts with" +msgstr "Clave de cliente comienza por" + +#: mod/settings.php:562 +msgid "No name" +msgstr "Sin nombre" + +#: mod/settings.php:563 +msgid "Remove authorization" +msgstr "Suprimir la autorización" + +#: mod/settings.php:574 +msgid "No Addon settings configured" +msgstr "" + +#: mod/settings.php:583 +msgid "Addon Settings" +msgstr "" + +#: mod/settings.php:604 +msgid "Additional Features" +msgstr "Características adicionales" + +#: mod/settings.php:629 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "enabled" +msgstr "habilitado" + +#: mod/settings.php:629 mod/settings.php:630 +msgid "disabled" +msgstr "deshabilitado" + +#: mod/settings.php:629 mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "El soporte integrado de conexión con %s está %s" + +#: mod/settings.php:630 +msgid "OStatus (GNU Social)" +msgstr "" + +#: mod/settings.php:661 +msgid "Email access is disabled on this site." +msgstr "El acceso por correo está deshabilitado en esta web." + +#: mod/settings.php:666 mod/settings.php:702 +msgid "None" +msgstr "Ninguna" + +#: mod/settings.php:672 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Redes sociales" + +#: mod/settings.php:677 +msgid "General Social Media Settings" +msgstr "Configuración general de social media " + +#: mod/settings.php:678 +msgid "Accept only top level posts by contacts you follow" +msgstr "" + +#: mod/settings.php:678 +msgid "" +"The system does an auto completion of threads when a comment arrives. This " +"has got the side effect that you can receive posts that had been started by " +"a non-follower but had been commented by someone you follow. This setting " +"deactivates this behaviour. When activated, you strictly only will receive " +"posts from people you really do follow." +msgstr "" + +#: mod/settings.php:679 +msgid "Disable Content Warning" +msgstr "" + +#: mod/settings.php:679 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "" + +#: mod/settings.php:680 +msgid "Disable intelligent shortening" +msgstr "Deshabilitar recorte inteligente de URL" + +#: mod/settings.php:680 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica." + +#: mod/settings.php:681 +msgid "Attach the link title" +msgstr "" + +#: mod/settings.php:681 +msgid "" +"When activated, the title of the attached link will be added as a title on " +"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" +" share feed content." +msgstr "" + +#: mod/settings.php:682 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones " + +#: mod/settings.php:682 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario." + +#: mod/settings.php:683 +msgid "Default group for OStatus contacts" +msgstr "Grupo por defecto para contactos OStatus" + +#: mod/settings.php:684 +msgid "Your legacy GNU Social account" +msgstr "Tu cuenta GNU social conectada" + +#: mod/settings.php:684 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. " + +#: mod/settings.php:687 +msgid "Repair OStatus subscriptions" +msgstr "Reparar subscripciones de OStatus" + +#: mod/settings.php:691 +msgid "Email/Mailbox Setup" +msgstr "Configuración del correo/buzón" + +#: mod/settings.php:692 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." + +#: mod/settings.php:693 +msgid "Last successful email check:" +msgstr "Última comprobación del correo con éxito:" + +#: mod/settings.php:695 +msgid "IMAP server name:" +msgstr "Nombre del servidor IMAP:" + +#: mod/settings.php:696 +msgid "IMAP port:" +msgstr "Puerto IMAP:" + +#: mod/settings.php:697 +msgid "Security:" +msgstr "Seguridad:" + +#: mod/settings.php:698 +msgid "Email login name:" +msgstr "Nombre de usuario:" + +#: mod/settings.php:699 +msgid "Email password:" +msgstr "Contraseña:" + +#: mod/settings.php:700 +msgid "Reply-to address:" +msgstr "Dirección de respuesta:" + +#: mod/settings.php:701 +msgid "Send public posts to all email contacts:" +msgstr "Enviar publicaciones públicas a todos los contactos de correo:" + +#: mod/settings.php:702 +msgid "Action after import:" +msgstr "Acción después de importar:" + +#: mod/settings.php:702 src/Content/Nav.php:269 +msgid "Mark as seen" +msgstr "Marcar como leído" + +#: mod/settings.php:702 +msgid "Move to folder" +msgstr "Mover a un directorio" + +#: mod/settings.php:703 +msgid "Move to folder:" +msgstr "Mover al directorio:" + +#: mod/settings.php:717 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: mod/settings.php:753 +msgid "Account Types" +msgstr "Tipos de cuenta" + +#: mod/settings.php:754 +msgid "Personal Page Subtypes" +msgstr "Subtipos de página personal" + +#: mod/settings.php:755 +msgid "Community Forum Subtypes" +msgstr "Subtipos de foro de comunidad" + +#: mod/settings.php:762 src/Module/Admin/Users.php:194 +msgid "Personal Page" +msgstr "Página personal" + +#: mod/settings.php:763 +msgid "Account for a personal profile." +msgstr "Cuenta para un perfil personal." + +#: mod/settings.php:766 src/Module/Admin/Users.php:195 +msgid "Organisation Page" +msgstr "Página de organización" + +#: mod/settings.php:767 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Cuenta para una organización que aprueba automáticamente las solicitudes de contacto como «Seguidores»." + +#: mod/settings.php:770 src/Module/Admin/Users.php:196 +msgid "News Page" +msgstr "Página de noticias" + +#: mod/settings.php:771 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Cuenta para un reflector de noticias que aprueba automáticamente las solicitudes de contacto como «Seguidores»." + +#: mod/settings.php:774 src/Module/Admin/Users.php:197 +msgid "Community Forum" +msgstr "Foro de la comunidad" + +#: mod/settings.php:775 +msgid "Account for community discussions." +msgstr "Cuenta para discusiones de la comunidad." + +#: mod/settings.php:778 src/Module/Admin/Users.php:187 +msgid "Normal Account Page" +msgstr "Página de cuenta normal" + +#: mod/settings.php:779 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Cuenta para un perfil personal regular que requiere aprobación manual de «Amigos» y «Seguidores»." + +#: mod/settings.php:782 src/Module/Admin/Users.php:188 +msgid "Soapbox Page" +msgstr "Página de tribuna" + +#: mod/settings.php:783 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." + +#: mod/settings.php:786 src/Module/Admin/Users.php:189 +msgid "Public Forum" +msgstr "Foro público" + +#: mod/settings.php:787 +msgid "Automatically approves all contact requests." +msgstr "Aprueba automáticamente todas las solicitudes de contacto." + +#: mod/settings.php:790 src/Module/Admin/Users.php:190 +msgid "Automatic Friend Page" +msgstr "Página de Amistad autómatica" + +#: mod/settings.php:791 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Cuenta para un perfil popular que aprueba automáticamente las solicitudes de contacto como «Friends»." + +#: mod/settings.php:794 +msgid "Private Forum [Experimental]" +msgstr "Foro privado [Experimental]" + +#: mod/settings.php:795 +msgid "Requires manual approval of contact requests." +msgstr "Requiere aprobación manual de solicitudes de contacto." + +#: mod/settings.php:806 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:806 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." + +#: mod/settings.php:814 +msgid "Publish your profile in your local site directory?" +msgstr "" + +#: mod/settings.php:814 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: mod/settings.php:820 +#, php-format +msgid "" +"Your profile will also be published in the global friendica directories " +"(e.g. %s)." +msgstr "" + +#: mod/settings.php:826 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Su dirección de identidad es '%s' o '%s'." + +#: mod/settings.php:857 +msgid "Account Settings" +msgstr "Configuración de la cuenta" + +#: mod/settings.php:865 +msgid "Password Settings" +msgstr "Configuración de la contraseña" + +#: mod/settings.php:866 src/Module/Register.php:149 +msgid "New Password:" +msgstr "Contraseña nueva:" + +#: mod/settings.php:866 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "" + +#: mod/settings.php:867 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Confirmar:" + +#: mod/settings.php:867 +msgid "Leave password fields blank unless changing" +msgstr "Deja la contraseña en blanco si no quieres cambiarla" + +#: mod/settings.php:868 +msgid "Current Password:" +msgstr "Contraseña actual:" + +#: mod/settings.php:868 mod/settings.php:869 +msgid "Your current password to confirm the changes" +msgstr "Su contraseña actual para confirmar los cambios." + +#: mod/settings.php:869 +msgid "Password:" +msgstr "Contraseña:" + +#: mod/settings.php:872 +msgid "Delete OpenID URL" +msgstr "" + +#: mod/settings.php:874 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: mod/settings.php:875 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Nombre completo:" + +#: mod/settings.php:876 +msgid "Email Address:" +msgstr "Dirección de correo:" + +#: mod/settings.php:877 +msgid "Your Timezone:" +msgstr "Zona horaria:" + +#: mod/settings.php:878 +msgid "Your Language:" +msgstr "Tu idioma:" + +#: mod/settings.php:878 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo." + +#: mod/settings.php:879 +msgid "Default Post Location:" +msgstr "Localización predeterminada:" + +#: mod/settings.php:880 +msgid "Use Browser Location:" +msgstr "Usar localización del navegador:" + +#: mod/settings.php:882 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" + +#: mod/settings.php:884 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo número de peticiones de amistad por día:" + +#: mod/settings.php:884 mod/settings.php:894 +msgid "(to prevent spam abuse)" +msgstr "(para prevenir el abuso de spam)" + +#: mod/settings.php:886 +msgid "Allow your profile to be searchable globally?" +msgstr "" + +#: mod/settings.php:886 +msgid "" +"Activate this setting if you want others to easily find and follow you. Your" +" profile will be searchable on remote systems. This setting also determines " +"whether Friendica will inform search engines that your profile should be " +"indexed or not." +msgstr "" + +#: mod/settings.php:887 +msgid "Hide your contact/friend list from viewers of your profile?" +msgstr "" + +#: mod/settings.php:887 +msgid "" +"A list of your contacts is displayed on your profile page. Activate this " +"option to disable the display of your contact list." +msgstr "" + +#: mod/settings.php:888 +msgid "Hide your profile details from anonymous viewers?" +msgstr "" + +#: mod/settings.php:888 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Your public posts and " +"replies will still be accessible by other means." +msgstr "" + +#: mod/settings.php:889 +msgid "Make public posts unlisted" +msgstr "" + +#: mod/settings.php:889 +msgid "" +"Your public posts will not appear on the community pages or in search " +"results, nor be sent to relay servers. However they can still appear on " +"public feeds on remote servers." +msgstr "" + +#: mod/settings.php:890 +msgid "Make all posted pictures accessible" +msgstr "" + +#: mod/settings.php:890 +msgid "" +"This option makes every posted picture accessible via the direct link. This " +"is a workaround for the problem that most other networks can't handle " +"permissions on pictures. Non public pictures still won't be visible for the " +"public on your photo albums though." +msgstr "" + +#: mod/settings.php:891 +msgid "Allow friends to post to your profile page?" +msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" + +#: mod/settings.php:891 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: mod/settings.php:892 +msgid "Allow friends to tag your posts?" +msgstr "¿Permites a los amigos etiquetar tus publicaciones?" + +#: mod/settings.php:892 +msgid "Your contacts can add additional tags to your posts." +msgstr "" + +#: mod/settings.php:893 +msgid "Permit unknown people to send you private mail?" +msgstr "¿Permites que desconocidos te manden correos privados?" + +#: mod/settings.php:893 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: mod/settings.php:894 +msgid "Maximum private messages per day from unknown people:" +msgstr "Número máximo de mensajes diarios para desconocidos:" + +#: mod/settings.php:896 +msgid "Default Post Permissions" +msgstr "Permisos por defecto para las publicaciones" + +#: mod/settings.php:900 +msgid "Expiration settings" +msgstr "" + +#: mod/settings.php:901 +msgid "Automatically expire posts after this many days:" +msgstr "Las publicaciones expirarán automáticamente después de estos días:" + +#: mod/settings.php:901 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" + +#: mod/settings.php:902 +msgid "Expire posts" +msgstr "" + +#: mod/settings.php:902 +msgid "When activated, posts and comments will be expired." +msgstr "" + +#: mod/settings.php:903 +msgid "Expire personal notes" +msgstr "" + +#: mod/settings.php:903 +msgid "" +"When activated, the personal notes on your profile page will be expired." +msgstr "" + +#: mod/settings.php:904 +msgid "Expire starred posts" +msgstr "" + +#: mod/settings.php:904 +msgid "" +"Starring posts keeps them from being expired. That behaviour is overwritten " +"by this setting." +msgstr "" + +#: mod/settings.php:905 +msgid "Expire photos" +msgstr "" + +#: mod/settings.php:905 +msgid "When activated, photos will be expired." +msgstr "" + +#: mod/settings.php:906 +msgid "Only expire posts by others" +msgstr "" + +#: mod/settings.php:906 +msgid "" +"When activated, your own posts never expire. Then the settings above are " +"only valid for posts you received." +msgstr "" + +#: mod/settings.php:909 +msgid "Notification Settings" +msgstr "Configuración de notificaciones" + +#: mod/settings.php:910 +msgid "Send a notification email when:" +msgstr "Enviar notificación por correo cuando:" + +#: mod/settings.php:911 +msgid "You receive an introduction" +msgstr "Recibas una presentación" + +#: mod/settings.php:912 +msgid "Your introductions are confirmed" +msgstr "Tu presentación sea confirmada" + +#: mod/settings.php:913 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en el muro de mi perfil" + +#: mod/settings.php:914 +msgid "Someone writes a followup comment" +msgstr "Algien escriba en un comentario que sigo" + +#: mod/settings.php:915 +msgid "You receive a private message" +msgstr "Recibas un mensaje privado" + +#: mod/settings.php:916 +msgid "You receive a friend suggestion" +msgstr "Recibas una sugerencia de amistad" + +#: mod/settings.php:917 +msgid "You are tagged in a post" +msgstr "Seas etiquetado en una publicación" + +#: mod/settings.php:918 +msgid "You are poked/prodded/etc. in a post" +msgstr "Te han tocado/empujado/etc. en una publicación" + +#: mod/settings.php:920 +msgid "Activate desktop notifications" +msgstr "Activar notificaciones en pantalla." + +#: mod/settings.php:920 +msgid "Show desktop popup on new notifications" +msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." + +#: mod/settings.php:922 +msgid "Text-only notification emails" +msgstr "Notificaciones e-mail de solo texto" + +#: mod/settings.php:924 +msgid "Send text only notification emails, without the html part" +msgstr "Enviar las notificaciones por correo con formato de solo texto sin html." + +#: mod/settings.php:926 +msgid "Show detailled notifications" +msgstr "Mostrar notificaciones detalladas" + +#: mod/settings.php:928 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: mod/settings.php:930 +msgid "Advanced Account/Page Type Settings" +msgstr "Configuración avanzada de tipo de Cuenta/Página" + +#: mod/settings.php:931 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" + +#: mod/settings.php:934 +msgid "Import Contacts" +msgstr "" + +#: mod/settings.php:935 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: mod/settings.php:936 +msgid "Upload File" +msgstr "" + +#: mod/settings.php:938 +msgid "Relocate" +msgstr "Relocalizar" + +#: mod/settings.php:939 +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 "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)" + +#: mod/settings.php:940 +msgid "Resend relocate message to contacts" +msgstr "Reenviar mensaje de relocalización a los contactos" + +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} quiere ser tu amigo" + +#: mod/ping.php:301 +msgid "{0} requested registration" +msgstr "{0} solicitudes de registro" + +#: mod/common.php:104 +msgid "No contacts in common." +msgstr "Sin contactos en común." + +#: mod/common.php:125 src/Module/Contact.php:917 +msgid "Common Friends" +msgstr "Amigos comunes" + +#: mod/network.php:304 +msgid "No items found" +msgstr "" + +#: mod/network.php:547 +msgid "No such group" +msgstr "Ningún grupo" + +#: mod/network.php:568 src/Module/Group.php:293 +msgid "Group is empty" +msgstr "El grupo está vacío" + +#: mod/network.php:572 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" + +#: mod/network.php:597 src/Module/AllFriends.php:52 +#: src/Module/AllFriends.php:60 +msgid "Invalid contact." +msgstr "Contacto erróneo." + +#: mod/network.php:815 +msgid "Latest Activity" +msgstr "" + +#: mod/network.php:818 +msgid "Sort by latest activity" +msgstr "" + +#: mod/network.php:823 +msgid "Latest Posts" +msgstr "" + +#: mod/network.php:826 +msgid "Sort by post received date" +msgstr "" + +#: mod/network.php:833 src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Personal" + +#: mod/network.php:836 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que te mencionan o involucran" + +#: mod/network.php:842 +msgid "Starred" +msgstr "Favoritos" + +#: mod/network.php:845 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribir a contactos de OStatus" + +#: mod/repair_ostatus.php:50 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Debug/Babel.php:269 +#: src/Module/Debug/ActivityPubConversion.php:130 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "" +msgstr[1] "" + +#: mod/repair_ostatus.php:65 mod/ostatus_subscribe.php:79 +msgid "Done" +msgstr "hecho!" + +#: mod/repair_ostatus.php:71 mod/ostatus_subscribe.php:103 +msgid "Keep this window open until done." +msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado." + +#: mod/unfollow.php:51 mod/unfollow.php:106 +msgid "You aren't following this contact." +msgstr "" + +#: mod/unfollow.php:61 mod/unfollow.php:112 +msgid "Unfollowing is currently not supported by your network." +msgstr "Dejar de Seguir no es compatible con su red actualmente." + +#: mod/unfollow.php:132 +msgid "Disconnect/Unfollow" +msgstr "Desconectar/Dejar de seguir" + +#: mod/unfollow.php:134 mod/follow.php:159 +msgid "Your Identity Address:" +msgstr "Dirección de tu perfil:" + +#: mod/unfollow.php:136 mod/dfrn_request.php:647 mod/follow.php:95 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Enviar solicitud" + +#: mod/unfollow.php:140 mod/follow.php:160 +#: src/Module/Notifications/Introductions.php:103 +#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:612 +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "Profile URL" +msgstr "URL Perfil" + +#: mod/unfollow.php:150 mod/follow.php:182 src/Module/Contact.php:889 +#: src/Module/BaseProfile.php:63 +msgid "Status Messages and Posts" +msgstr "Mensajes de Estado y Publicaciones" + +#: mod/message.php:47 mod/message.php:128 src/Content/Nav.php:275 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: mod/message.php:88 +msgid "Unable to locate contact information." +msgstr "No se puede encontrar información del contacto." + +#: mod/message.php:122 src/Module/Notifications/Notification.php:56 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:149 +msgid "Discard" +msgstr "Descartar" + +#: mod/message.php:160 +msgid "Do you really want to delete this message?" +msgstr "¿Estás seguro de que quieres borrar este mensaje?" + +#: mod/message.php:162 mod/api.php:125 mod/item.php:925 +#: src/Module/Notifications/Introductions.php:119 src/Module/Register.php:115 +#: src/Module/Contact.php:448 +msgid "Yes" +msgstr "Sí" + +#: mod/message.php:178 +msgid "Conversation not found." +msgstr "" + +#: mod/message.php:183 +msgid "Message was not deleted." +msgstr "" + +#: mod/message.php:201 +msgid "Conversation was not removed." +msgstr "" + +#: mod/message.php:300 +msgid "No messages." +msgstr "No hay mensajes." + +#: mod/message.php:357 +msgid "Message not available." +msgstr "Mensaje no disponibile." + +#: mod/message.php:407 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: mod/message.php:409 mod/message.php:537 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:424 mod/message.php:534 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: mod/message.php:426 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " + +#: mod/message.php:430 +msgid "Send Reply" +msgstr "Enviar respuesta" + +#: mod/message.php:513 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remitente desconocido - %s" + +#: mod/message.php:515 +#, php-format +msgid "You and %s" +msgstr "Tú y %s" + +#: mod/message.php:517 +#, php-format +msgid "%s and You" +msgstr "%s y Tú" + +#: mod/message.php:540 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensaje" +msgstr[1] "%d mensajes" + +#: mod/ostatus_subscribe.php:35 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribir a los contactos de OStatus" + +#: mod/ostatus_subscribe.php:45 +msgid "No contact provided." +msgstr "Sin suministro de datos de contacto." + +#: mod/ostatus_subscribe.php:51 +msgid "Couldn't fetch information for contact." +msgstr "No se ha podido conseguir la información del contacto." + +#: mod/ostatus_subscribe.php:61 +msgid "Couldn't fetch friends for contact." +msgstr "No se ha podido conseguir datos de amigos para contactar." + +#: mod/ostatus_subscribe.php:93 +msgid "success" +msgstr "exito!" + +#: mod/ostatus_subscribe.php:95 +msgid "failed" +msgstr "fallido!" + +#: mod/ostatus_subscribe.php:98 src/Object/Post.php:305 +msgid "ignored" +msgstr "ignorado" + +#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:538 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s te da la bienvenida a %2$s" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Esta presentación ya ha sido aceptada." - -#: mod/dfrn_request.php:113 mod/dfrn_request.php:354 -msgid "Profile location is not valid or does not contain profile information." -msgstr "La dirección del perfil no es válida o no contiene información del perfil." - -#: mod/dfrn_request.php:117 mod/dfrn_request.php:358 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:361 -msgid "Warning: profile location has no profile photo." -msgstr "Aviso: la dirección del perfil no tiene foto de perfil." - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:365 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "no se encontró %d parámetro requerido en el lugar determinado" -msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "Presentación completa." - -#: mod/dfrn_request.php:198 -msgid "Unrecoverable protocol error." -msgstr "Error de protocolo irrecuperable." - -#: mod/dfrn_request.php:225 -msgid "Profile unavailable." -msgstr "Perfil no disponible." - -#: mod/dfrn_request.php:247 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." - -#: mod/dfrn_request.php:248 -msgid "Spam protection measures have been invoked." -msgstr "Han sido activadas las medidas de protección contra spam." - -#: mod/dfrn_request.php:249 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." - -#: mod/dfrn_request.php:275 -msgid "Invalid locator" -msgstr "Localizador no válido" - -#: mod/dfrn_request.php:311 -msgid "You have already introduced yourself here." -msgstr "Ya te has presentado aquí." - -#: mod/dfrn_request.php:314 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Al parecer, ya eres amigo de %s." - -#: mod/dfrn_request.php:334 -msgid "Invalid profile URL." -msgstr "Dirección de perfil no válida." - -#: mod/dfrn_request.php:340 src/Model/Contact.php:1640 -msgid "Disallowed profile URL." -msgstr "Dirección de perfil no permitida." - -#: mod/dfrn_request.php:413 src/Module/Contact.php:236 -msgid "Failed to update contact record." -msgstr "Error al actualizar el contacto." - -#: mod/dfrn_request.php:433 -msgid "Your introduction has been sent." -msgstr "Tu presentación ha sido enviada." - -#: mod/dfrn_request.php:471 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." - -#: mod/dfrn_request.php:487 -msgid "Please login to confirm introduction." -msgstr "Inicia sesión para confirmar la presentación." - -#: mod/dfrn_request.php:495 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." - -#: mod/dfrn_request.php:509 mod/dfrn_request.php:524 -msgid "Confirm" -msgstr "Confirmar" - -#: mod/dfrn_request.php:520 -msgid "Hide this contact" -msgstr "Ocultar este contacto" - -#: mod/dfrn_request.php:522 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenido a casa %s" - -#: mod/dfrn_request.php:523 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." - -#: mod/dfrn_request.php:633 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" - -#: mod/dfrn_request.php:636 -#, php-format -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." +#: mod/removeme.php:63 +msgid "User deleted their account" msgstr "" -#: mod/dfrn_request.php:641 -msgid "Friend/Connection Request" -msgstr "Solicitud de Amistad/Conexión" - -#: mod/dfrn_request.php:642 +#: mod/removeme.php:64 msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." msgstr "" -#: mod/dfrn_request.php:643 mod/follow.php:150 -msgid "Please answer the following:" -msgstr "Por favor responde lo siguiente:" - -#: mod/dfrn_request.php:644 mod/follow.php:151 +#: mod/removeme.php:65 #, php-format -msgid "Does %s know you?" -msgstr "¿%s te conoce?" - -#: mod/dfrn_request.php:645 mod/follow.php:152 -msgid "Add a personal note:" -msgstr "Añade una nota personal:" - -#: mod/dfrn_request.php:647 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:648 -msgid "GNU Social (Pleroma, Mastodon)" +msgid "The user id is %d" msgstr "" -#: mod/dfrn_request.php:649 -msgid "Diaspora (Socialhome, Hubzilla)" +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Eliminar mi cuenta" + +#: mod/removeme.php:100 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." + +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduce tu contraseña para la verificación:" + +#: mod/tagrm.php:112 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta" + +#: mod/tagrm.php:114 +msgid "Select a tag to remove: " +msgstr "Selecciona una etiqueta para eliminar: " + +#: mod/tagrm.php:125 src/Module/Settings/Delegation.php:179 +msgid "Remove" +msgstr "Eliminar" + +#: mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." + +#: mod/display.php:238 mod/display.php:318 +msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: mod/dfrn_request.php:650 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." +#: mod/display.php:282 mod/cal.php:137 src/Module/Profile/Status.php:105 +#: src/Module/Profile/Profile.php:94 src/Module/Profile/Profile.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "El acceso a este perfil ha sido restringido." -#: mod/dfrn_request.php:651 mod/follow.php:158 mod/unfollow.php:128 -msgid "Your Identity Address:" -msgstr "Dirección de tu perfil:" - -#: mod/dfrn_request.php:653 mod/follow.php:66 mod/unfollow.php:131 -msgid "Submit Request" -msgstr "Enviar solicitud" - -#: mod/directory.php:154 mod/events.php:556 mod/notifications.php:251 -#: src/Model/Event.php:66 src/Model/Event.php:93 src/Model/Event.php:435 -#: src/Model/Event.php:926 src/Model/Profile.php:437 -#: src/Module/Contact.php:646 -msgid "Location:" -msgstr "Localización:" - -#: mod/directory.php:159 mod/notifications.php:257 src/Model/Profile.php:440 -#: src/Model/Profile.php:759 -msgid "Gender:" -msgstr "Género:" - -#: mod/directory.php:160 src/Model/Profile.php:441 src/Model/Profile.php:783 -msgid "Status:" -msgstr "Estado:" - -#: mod/directory.php:161 src/Model/Profile.php:442 src/Model/Profile.php:800 -msgid "Homepage:" -msgstr "Página de inicio:" - -#: mod/directory.php:162 mod/notifications.php:253 src/Model/Profile.php:443 -#: src/Model/Profile.php:820 src/Module/Contact.php:650 -msgid "About:" -msgstr "Acerca de:" - -#: mod/directory.php:210 src/Content/Widget.php:69 -#: view/theme/vier/theme.php:208 -msgid "Global Directory" -msgstr "Directorio global" - -#: mod/directory.php:212 -msgid "Find on this site" -msgstr "Buscar en este sitio" - -#: mod/directory.php:214 -msgid "Results for:" -msgstr "Resultados para:" - -#: mod/directory.php:216 -msgid "Site Directory" -msgstr "Directorio del sitio" - -#: mod/directory.php:217 src/Content/Widget.php:64 src/Module/Contact.php:818 -#: view/theme/vier/theme.php:203 -msgid "Find" -msgstr "Buscar" - -#: mod/directory.php:221 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas pueden que estén ocultas)." - -#: mod/dirfind.php:55 -#, php-format -msgid "People Search - %s" -msgstr "Buscar perfiles - %s" - -#: mod/dirfind.php:66 -#, php-format -msgid "Forum Search - %s" -msgstr "Búsqueda de foro - %s" - -#: mod/dirfind.php:261 mod/match.php:127 -msgid "No matches" -msgstr "Sin conincidencias" - -#: mod/editpost.php:30 mod/editpost.php:40 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: mod/editpost.php:47 -msgid "Edit post" -msgstr "Editar publicación" - -#: mod/editpost.php:93 mod/filer.php:36 mod/notes.php:52 -#: src/Content/Text/HTML.php:963 -msgid "Save" -msgstr "Guardar" - -#: mod/editpost.php:98 mod/message.php:261 mod/message.php:442 -#: mod/wallmessage.php:140 -msgid "Insert web link" -msgstr "Insertar enlace" - -#: mod/editpost.php:99 -msgid "web link" -msgstr "enlace web" - -#: mod/editpost.php:100 -msgid "Insert video link" -msgstr "Insertar enlace del vídeo" - -#: mod/editpost.php:101 -msgid "video link" -msgstr "enlace de video" - -#: mod/editpost.php:102 -msgid "Insert audio link" -msgstr "Insertar vínculo del audio" - -#: mod/editpost.php:103 -msgid "audio link" -msgstr "enlace de audio" - -#: mod/editpost.php:118 src/Core/ACL.php:305 -msgid "CC: email addresses" -msgstr "CC: dirección de correo electrónico" - -#: mod/editpost.php:125 src/Core/ACL.php:306 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" - -#: mod/events.php:117 mod/events.php:119 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de su comienzo." - -#: mod/events.php:126 mod/events.php:128 -msgid "Event title and start time are required." -msgstr "Título del evento y hora de inicio requeridas." - -#: mod/events.php:401 -msgid "Create New Event" -msgstr "Crea un evento nuevo" - -#: mod/events.php:524 -msgid "Event details" -msgstr "Detalles del evento" - -#: mod/events.php:525 -msgid "Starting date and Title are required." -msgstr "Se requiere fecha de comienzo y titulo" - -#: mod/events.php:526 mod/events.php:531 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: mod/events.php:526 mod/events.php:558 mod/profiles.php:608 -msgid "Required" -msgstr "Obligatorio" - -#: mod/events.php:539 mod/events.php:564 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha/hora de finalización no es conocida o es irrelevante." - -#: mod/events.php:541 mod/events.php:546 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: mod/events.php:552 mod/events.php:565 -msgid "Adjust for viewer timezone" -msgstr "Ajuste de zona horaria" - -#: mod/events.php:554 -msgid "Description:" -msgstr "Descripción:" - -#: mod/events.php:558 mod/events.php:560 -msgid "Title:" -msgstr "Título:" - -#: mod/events.php:561 mod/events.php:562 -msgid "Share this event" -msgstr "Comparte este evento" - -#: mod/events.php:569 src/Model/Profile.php:878 -msgid "Basic" -msgstr "Basic" - -#: mod/events.php:571 mod/photos.php:1107 mod/photos.php:1448 -#: src/Core/ACL.php:308 -msgid "Permissions" -msgstr "Permisos" - -#: mod/events.php:587 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: mod/events.php:589 -msgid "Event removed" -msgstr "Evento eliminado" - -#: mod/fbrowser.php:36 src/Content/Nav.php:152 src/Model/Profile.php:918 -#: view/theme/frio/theme.php:275 -msgid "Photos" -msgstr "Fotografías" - -#: mod/fbrowser.php:45 mod/fbrowser.php:70 mod/photos.php:202 -#: mod/photos.php:1071 mod/photos.php:1166 mod/photos.php:1183 -#: mod/photos.php:1650 mod/photos.php:1665 src/Model/Photo.php:242 -#: src/Model/Photo.php:251 -msgid "Contact Photos" -msgstr "Foto del contacto" - -#: mod/fbrowser.php:107 mod/fbrowser.php:138 mod/profile_photo.php:251 -msgid "Upload" -msgstr "Subir" - -#: mod/fbrowser.php:133 -msgid "Files" -msgstr "Archivos" - -#: mod/feedtest.php:18 -msgid "You must be logged in to use this module" +#: mod/display.php:398 +msgid "The feed for this item is unavailable." msgstr "" -#: mod/feedtest.php:45 -msgid "Source URL" -msgstr "" +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 +#: mod/wall_attach.php:49 mod/wall_attach.php:87 +msgid "Invalid request." +msgstr "Consulta invalida" -#: mod/filer.php:35 -msgid "- select -" -msgstr "- seleccionar -" - -#: mod/follow.php:47 -msgid "The contact could not be added." -msgstr "" - -#: mod/follow.php:77 -msgid "You already added this contact." -msgstr "Ya has añadido este contacto." - -#: mod/follow.php:87 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:94 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:101 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." - -#: mod/follow.php:171 mod/notifications.php:255 src/Model/Profile.php:808 -#: src/Module/Contact.php:652 -msgid "Tags:" -msgstr "Etiquetas:" - -#: mod/follow.php:183 mod/unfollow.php:147 src/Model/Profile.php:905 -#: src/Module/Contact.php:865 -msgid "Status Messages and Posts" -msgstr "Mensajes de Estado y Publicaciones" - -#: mod/friendica.php:79 +#: mod/wall_upload.php:174 mod/photos.php:678 mod/photos.php:681 +#: mod/photos.php:708 src/Module/Settings/Profile/Photo/Index.php:61 #, php-format -msgid "" -"This is Friendica, version %s that is running at the web location %s. The " -"database version is %s, the post update version is %s." -msgstr "" +msgid "Image exceeds size limit of %s" +msgstr "La imagen excede el limite de %s" -#: mod/friendica.php:85 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor." +#: mod/wall_upload.php:188 mod/photos.php:731 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Imposible procesar la imagen." -#: mod/friendica.php:89 -msgid "Bug reports and issues: please visit" -msgstr "Reporte de fallos y problemas: por favor visita" +#: mod/wall_upload.php:219 +msgid "Wall Photos" +msgstr "Foto del Muro" -#: mod/friendica.php:89 -msgid "the bugtracker at github" -msgstr "aviso de fallas (bugs) en github" +#: mod/wall_upload.php:227 mod/photos.php:760 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "Error al subir la imagen." -#: mod/friendica.php:92 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "" - -#: mod/friendica.php:97 -msgid "Installed addons/apps:" -msgstr "" - -#: mod/friendica.php:111 -msgid "No installed addons/apps" -msgstr "" - -#: mod/friendica.php:116 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "" - -#: mod/friendica.php:121 -msgid "On this server the following remote servers are blocked." -msgstr "En este servidor los siguientes servidores remotos están bloqueados." - -#: mod/fsuggest.php:73 -msgid "Friend suggestion sent." -msgstr "Solicitud de amistad enviada." - -#: mod/fsuggest.php:102 -msgid "Suggest Friends" -msgstr "Sugerencias de amistad" - -#: mod/fsuggest.php:104 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Recomienda un amigo a %s" - -#: mod/group.php:40 -msgid "Group created." -msgstr "Grupo creado." - -#: mod/group.php:46 -msgid "Could not create group." -msgstr "Imposible crear el grupo." - -#: mod/group.php:60 mod/group.php:187 -msgid "Group not found." -msgstr "Grupo no encontrado." - -#: mod/group.php:74 -msgid "Group name changed." -msgstr "El nombre del grupo ha cambiado." - -#: mod/group.php:87 mod/profperm.php:30 src/App.php:1785 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: mod/group.php:105 -msgid "Save Group" -msgstr "Guardar grupo" - -#: mod/group.php:106 -msgid "Filter" -msgstr "" - -#: mod/group.php:111 -msgid "Create a group of contacts/friends." -msgstr "Crea un grupo de contactos/amigos." - -#: mod/group.php:112 mod/group.php:136 mod/group.php:229 -#: src/Model/Group.php:415 -msgid "Group Name: " -msgstr "Nombre del grupo: " - -#: mod/group.php:127 src/Model/Group.php:412 -msgid "Contacts not in any group" -msgstr "Contactos sin grupo" - -#: mod/group.php:159 -msgid "Group removed." -msgstr "Grupo eliminado." - -#: mod/group.php:161 -msgid "Unable to remove group." -msgstr "No se puede eliminar el grupo." - -#: mod/group.php:222 -msgid "Delete Group" -msgstr "Borrar grupo" - -#: mod/group.php:233 -msgid "Edit Group Name" -msgstr "Editar nombre de grupo" - -#: mod/group.php:244 -msgid "Members" -msgstr "Miembros" - -#: mod/group.php:246 src/Module/Contact.php:707 -msgid "All Contacts" -msgstr "Todos los contactos" - -#: mod/group.php:247 mod/network.php:651 -msgid "Group is empty" -msgstr "El grupo está vacío" - -#: mod/group.php:260 -msgid "Remove contact from group" -msgstr "" - -#: mod/group.php:278 mod/profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsa en un contacto para añadirlo o eliminarlo." - -#: mod/group.php:292 -msgid "Add contact to group" -msgstr "" - -#: mod/hcard.php:19 -msgid "No profile" -msgstr "Nigún perfil" - -#: mod/help.php:51 -msgid "Help:" -msgstr "Ayuda:" - -#: mod/help.php:58 src/Content/Nav.php:184 view/theme/vier/theme.php:294 -msgid "Help" -msgstr "Ayuda" - -#: mod/help.php:64 src/App.php:1705 -msgid "Not Found" -msgstr "No se ha encontrado" - -#: mod/home.php:40 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: mod/invite.php:38 -msgid "Total invitation limit exceeded." -msgstr "Límite total de invitaciones excedido." - -#: mod/invite.php:60 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo válida." - -#: mod/invite.php:87 -msgid "Please join us on Friendica" -msgstr "Únete a nosotros en Friendica" - -#: mod/invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." - -#: mod/invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Ha fallado la entrega del mensaje." - -#: mod/invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensaje enviado." -msgstr[1] "%d mensajes enviados." - -#: mod/invite.php:122 -msgid "You have no more invitations available" -msgstr "No tienes más invitaciones disponibles" - -#: mod/invite.php:130 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." - -#: mod/invite.php:132 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." - -#: mod/invite.php:133 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." - -#: mod/invite.php:137 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." - -#: mod/invite.php:141 -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." -msgstr "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales." - -#: mod/invite.php:140 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "Para aceptar esta invitación, visite y regístrese en%s, por favor." - -#: mod/invite.php:147 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: mod/invite.php:148 -msgid "Enter email addresses, one per line:" -msgstr "Introduce las direcciones de correo, una por línea:" - -#: mod/invite.php:149 mod/message.php:257 mod/message.php:437 -#: mod/wallmessage.php:137 -msgid "Your message:" -msgstr "Tu mensaje:" - -#: mod/invite.php:149 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." - -#: mod/invite.php:151 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Tienes que proporcionar el siguiente código: $invite_code" - -#: mod/invite.php:151 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" - -#: mod/invite.php:153 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor" - -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "No se puede encontrar la publicación original." - -#: mod/item.php:284 -msgid "Empty post discarded." -msgstr "Publicación vacía descartada." - -#: mod/item.php:805 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." - -#: mod/item.php:807 -#, php-format -msgid "You may visit them online at %s" -msgstr "Los puedes visitar en línea en %s" - -#: mod/item.php:808 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." - -#: mod/item.php:812 -#, php-format -msgid "%s posted an update." -msgstr "%s ha publicado una actualización." - -#: mod/localtime.php:19 src/Model/Event.php:34 src/Model/Event.php:840 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: mod/localtime.php:33 -msgid "Time Conversion" -msgstr "Conversión horária" - -#: mod/localtime.php:35 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." - -#: mod/localtime.php:39 -#, php-format -msgid "UTC time: %s" -msgstr "Tiempo UTC: %s" - -#: mod/localtime.php:42 -#, php-format -msgid "Current timezone: %s" -msgstr "Zona horaria actual: %s" - -#: mod/localtime.php:46 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zona horaria local convertida: %s" - -#: mod/localtime.php:52 -msgid "Please select your timezone:" -msgstr "Por favor, selecciona tu zona horaria:" - -#: mod/lockview.php:46 mod/lockview.php:57 -msgid "Remote privacy information not available." -msgstr "Privacidad de la información remota no disponible." - -#: mod/lockview.php:66 -msgid "Visible to:" -msgstr "Visible para:" - -#: mod/lostpass.php:26 +#: mod/lostpass.php:40 msgid "No valid account found." msgstr "No se ha encontrado ninguna cuenta válida" -#: mod/lostpass.php:38 +#: mod/lostpass.php:52 msgid "Password reset request issued. Check your email." msgstr "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo." -#: mod/lostpass.php:44 +#: mod/lostpass.php:58 #, php-format msgid "" "\n" @@ -4142,7 +2562,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:55 +#: mod/lostpass.php:69 #, php-format msgid "" "\n" @@ -4159,66 +2579,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:74 +#: mod/lostpass.php:84 #, php-format msgid "Password reset requested at %s" msgstr "Contraseña restablecida enviada a %s" -#: mod/lostpass.php:90 +#: mod/lostpass.php:100 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." -#: mod/lostpass.php:103 +#: mod/lostpass.php:113 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:118 +#: mod/lostpass.php:128 msgid "Forgot your Password?" msgstr "¿Olvidaste tu contraseña?" -#: mod/lostpass.php:119 +#: mod/lostpass.php:129 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." -#: mod/lostpass.php:120 src/Module/Login.php:321 +#: mod/lostpass.php:130 src/Module/Security/Login.php:144 msgid "Nickname or Email: " msgstr "Apodo o Correo electrónico: " -#: mod/lostpass.php:121 +#: mod/lostpass.php:131 msgid "Reset" msgstr "Restablecer" -#: mod/lostpass.php:137 src/Module/Login.php:333 +#: mod/lostpass.php:146 src/Module/Security/Login.php:156 msgid "Password Reset" msgstr "Restablecer la contraseña" -#: mod/lostpass.php:138 +#: mod/lostpass.php:147 msgid "Your password has been reset as requested." msgstr "Tu contraseña ha sido restablecida como solicitaste." -#: mod/lostpass.php:139 +#: mod/lostpass.php:148 msgid "Your new password is" msgstr "Tu nueva contraseña es" -#: mod/lostpass.php:140 +#: mod/lostpass.php:149 msgid "Save or copy your new password - and then" msgstr "Guarda o copia tu nueva contraseña y luego" -#: mod/lostpass.php:141 +#: mod/lostpass.php:150 msgid "click here to login" msgstr "pulsa aquí para acceder" -#: mod/lostpass.php:142 +#: mod/lostpass.php:151 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." -#: mod/lostpass.php:150 +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "" + +#: mod/lostpass.php:158 #, php-format msgid "" "\n" @@ -4229,7 +2653,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:156 +#: mod/lostpass.php:164 #, php-format msgid "" "\n" @@ -4243,3975 +2667,825 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:172 +#: mod/lostpass.php:176 #, php-format msgid "Your password has been changed at %s" msgstr "Tu contraseña se ha cambiado por %s" -#: mod/maintenance.php:26 -msgid "System down for maintenance" -msgstr "Servicio suspendido por mantenimiento" +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "Esta presentación ya ha sido aceptada." -#: mod/manage.php:179 -msgid "Manage Identities and/or Pages" -msgstr "Administrar identidades y/o páginas" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "La dirección del perfil no es válida o no contiene información del perfil." -#: mod/manage.php:180 +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." + +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Aviso: la dirección del perfil no tiene foto de perfil." + +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "no se encontró %d parámetro requerido en el lugar determinado" +msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Presentación completa." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Error de protocolo irrecuperable." + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "Perfil no disponible." + +#: mod/dfrn_request.php:264 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." + +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "Han sido activadas las medidas de protección contra spam." + +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." + +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Localizador no válido" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "Ya te has presentado aquí." + +#: mod/dfrn_request.php:329 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Al parecer, ya eres amigo de %s." + +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Dirección de perfil no válida." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2288 +msgid "Disallowed profile URL." +msgstr "Dirección de perfil no permitida." + +#: mod/dfrn_request.php:361 src/Module/Friendica.php:77 +#: src/Model/Contact.php:2293 +msgid "Blocked domain" +msgstr "Dominio bloqueado" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:147 +msgid "Failed to update contact record." +msgstr "Error al actualizar el contacto." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "Tu presentación ha sido enviada." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." -#: mod/manage.php:181 -msgid "Select an identity to manage: " -msgstr "Selecciona una identidad a gestionar:" +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Inicia sesión para confirmar la presentación." -#: mod/match.php:46 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." +#: mod/dfrn_request.php:504 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." -#: mod/match.php:112 src/Content/Pager.php:210 -msgid "first" -msgstr "primera" +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Confirmar" -#: mod/match.php:117 src/Content/Pager.php:270 -msgid "next" -msgstr "sig." +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "Ocultar este contacto" -#: mod/match.php:132 -msgid "Profile Match" -msgstr "Coincidencias de Perfil" +#: mod/dfrn_request.php:531 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenido a casa %s" -#: mod/message.php:33 mod/message.php:116 src/Content/Nav.php:249 -msgid "New Message" -msgstr "Nuevo mensaje" +#: mod/dfrn_request.php:532 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." -#: mod/message.php:70 mod/wallmessage.php:60 -msgid "No recipient selected." -msgstr "Ningún destinatario seleccionado" +#: mod/dfrn_request.php:642 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Solicitud de Amistad/Conexión" -#: mod/message.php:74 -msgid "Unable to locate contact information." -msgstr "No se puede encontrar información del contacto." - -#: mod/message.php:77 mod/wallmessage.php:66 -msgid "Message could not be sent." -msgstr "El mensaje no ha podido ser enviado." - -#: mod/message.php:80 mod/wallmessage.php:69 -msgid "Message collection failure." -msgstr "Fallo en la recolección de mensajes." - -#: mod/message.php:83 mod/wallmessage.php:72 -msgid "Message sent." -msgstr "Mensaje enviado." - -#: mod/message.php:110 mod/notifications.php:47 mod/notifications.php:185 -#: mod/notifications.php:233 -msgid "Discard" -msgstr "Descartar" - -#: mod/message.php:123 src/Content/Nav.php:246 view/theme/frio/theme.php:282 -msgid "Messages" -msgstr "Mensajes" - -#: mod/message.php:148 -msgid "Do you really want to delete this message?" -msgstr "¿Estás seguro de que quieres borrar este mensaje?" - -#: mod/message.php:166 -msgid "Conversation not found." +#: mod/dfrn_request.php:643 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" msgstr "" -#: mod/message.php:171 -msgid "Message deleted." -msgstr "Mensaje eliminado." - -#: mod/message.php:176 mod/message.php:191 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: mod/message.php:205 mod/message.php:362 mod/wallmessage.php:123 -msgid "Please enter a link URL:" -msgstr "Introduce la dirección del enlace:" - -#: mod/message.php:248 mod/wallmessage.php:128 -msgid "Send Private Message" -msgstr "Enviar mensaje privado" - -#: mod/message.php:249 mod/message.php:432 mod/wallmessage.php:130 -msgid "To:" -msgstr "Para:" - -#: mod/message.php:253 mod/message.php:434 mod/wallmessage.php:131 -msgid "Subject:" -msgstr "Asunto:" - -#: mod/message.php:291 -msgid "No messages." -msgstr "No hay mensajes." - -#: mod/message.php:354 -msgid "Message not available." -msgstr "Mensaje no disponibile." - -#: mod/message.php:408 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: mod/message.php:410 mod/message.php:542 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:425 mod/message.php:539 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: mod/message.php:427 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " - -#: mod/message.php:431 -msgid "Send Reply" -msgstr "Enviar respuesta" - -#: mod/message.php:514 -#, php-format -msgid "Unknown sender - %s" -msgstr "Remitente desconocido - %s" - -#: mod/message.php:516 -#, php-format -msgid "You and %s" -msgstr "Tú y %s" - -#: mod/message.php:518 -#, php-format -msgid "%s and You" -msgstr "%s y Tú" - -#: mod/message.php:545 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensaje" -msgstr[1] "%d mensajes" - -#: mod/network.php:184 mod/search.php:39 -msgid "Remove term" -msgstr "Eliminar término" - -#: mod/network.php:191 mod/search.php:48 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: mod/network.php:192 src/Model/Group.php:406 -msgid "add" -msgstr "añadir" - -#: mod/network.php:559 +#: mod/dfrn_request.php:644 src/Module/RemoteFollow.php:106 #, php-format msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos." -msgstr[1] "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos." - -#: mod/network.php:562 -msgid "Messages in this group won't be send to these receivers." -msgstr "Los mensajes de este grupo no se enviarán a estos receptores." - -#: mod/network.php:630 -msgid "No such group" -msgstr "Ningún grupo" - -#: mod/network.php:655 -#, php-format -msgid "Group: %s" -msgstr "Grupo: %s" - -#: mod/network.php:681 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente." - -#: mod/network.php:684 -msgid "Invalid contact." -msgstr "Contacto erróneo." - -#: mod/network.php:962 -msgid "Commented Order" -msgstr "Orden de comentarios" - -#: mod/network.php:965 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentarios" - -#: mod/network.php:970 -msgid "Posted Order" -msgstr "Orden de publicación" - -#: mod/network.php:973 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" - -#: mod/network.php:980 mod/profiles.php:595 -#: src/Core/NotificationsManager.php:185 -msgid "Personal" -msgstr "Personal" - -#: mod/network.php:983 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que te mencionan o involucran" - -#: mod/network.php:990 -msgid "New" -msgstr "Nuevo" - -#: mod/network.php:993 -msgid "Activity Stream - by date" -msgstr "Corriente de actividad por fecha" - -#: mod/network.php:1001 -msgid "Shared Links" -msgstr "Enlaces compartidos" - -#: mod/network.php:1004 -msgid "Interesting Links" -msgstr "Enlaces interesantes" - -#: mod/network.php:1011 -msgid "Starred" -msgstr "Favoritos" - -#: mod/network.php:1014 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" - -#: mod/newmember.php:12 -msgid "Welcome to Friendica" -msgstr "Bienvenido a Friendica " - -#: mod/newmember.php:13 -msgid "New Member Checklist" -msgstr "Listado de nuevos miembros" - -#: mod/newmember.php:15 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." - -#: mod/newmember.php:16 -msgid "Getting Started" -msgstr "Empezando" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Visita guiada a Friendica" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." - -#: mod/newmember.php:22 -msgid "Go to Your Settings" -msgstr "Ir a tus ajustes" - -#: mod/newmember.php:22 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." - -#: mod/newmember.php:23 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." - -#: mod/newmember.php:25 mod/profperm.php:117 src/Content/Nav.php:151 -#: src/Model/Profile.php:744 src/Model/Profile.php:877 -#: src/Model/Profile.php:910 src/Module/Contact.php:657 -#: src/Module/Contact.php:870 view/theme/frio/theme.php:274 -msgid "Profile" -msgstr "Perfil" - -#: mod/newmember.php:27 mod/profiles.php:599 mod/profile_photo.php:250 -msgid "Upload Profile Photo" -msgstr "Subir foto del Perfil" - -#: mod/newmember.php:27 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." - -#: mod/newmember.php:28 -msgid "Edit Your Profile" -msgstr "Editar tu perfil" - -#: mod/newmember.php:28 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." - -#: mod/newmember.php:29 -msgid "Profile Keywords" -msgstr "Palabras clave del perfil" - -#: mod/newmember.php:29 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." - -#: mod/newmember.php:31 -msgid "Connecting" -msgstr "Conectando" - -#: mod/newmember.php:37 -msgid "Importing Emails" -msgstr "Importando correos electrónicos" - -#: mod/newmember.php:37 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." - -#: mod/newmember.php:40 -msgid "Go to Your Contacts Page" -msgstr "Ir a tu página de contactos" - -#: mod/newmember.php:40 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." - -#: mod/newmember.php:41 -msgid "Go to Your Site's Directory" -msgstr "Ir al directorio de tu sitio" - -#: mod/newmember.php:41 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." - -#: mod/newmember.php:42 -msgid "Finding New People" -msgstr "Encontrando nueva gente" - -#: mod/newmember.php:42 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." - -#: mod/newmember.php:44 src/Model/Group.php:407 src/Module/Contact.php:755 -msgid "Groups" -msgstr "Grupos" - -#: mod/newmember.php:46 -msgid "Group Your Contacts" -msgstr "Agrupa tus contactos" - -#: mod/newmember.php:46 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." - -#: mod/newmember.php:49 -msgid "Why Aren't My Posts Public?" -msgstr "¿Por qué mis publicaciones no son públicas?" - -#: mod/newmember.php:49 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." - -#: mod/newmember.php:53 -msgid "Getting Help" -msgstr "Consiguiendo ayuda" - -#: mod/newmember.php:55 -msgid "Go to the Help Section" -msgstr "Ir a la sección de ayuda" - -#: mod/newmember.php:55 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." - -#: mod/notes.php:40 src/Model/Profile.php:960 -msgid "Personal Notes" -msgstr "Notas personales" - -#: mod/notifications.php:38 -msgid "Invalid request identifier." -msgstr "Solicitud de identificación no válida." - -#: mod/notifications.php:60 mod/notifications.php:184 -#: mod/notifications.php:269 src/Module/Contact.php:624 -#: src/Module/Contact.php:826 src/Module/Contact.php:1086 -msgid "Ignore" -msgstr "Ignorar" - -#: mod/notifications.php:93 src/Content/Nav.php:241 -msgid "Notifications" -msgstr "Notificaciones" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Notificaciones de Red" - -#: mod/notifications.php:110 mod/notify.php:82 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: mod/notifications.php:115 -msgid "Personal Notifications" -msgstr "Notificaciones personales" - -#: mod/notifications.php:120 -msgid "Home Notifications" -msgstr "Notificaciones de Inicio" - -#: mod/notifications.php:140 -msgid "Show unread" -msgstr "Mostrar no leído" - -#: mod/notifications.php:140 -msgid "Show all" -msgstr "Mostrar todo" - -#: mod/notifications.php:151 -msgid "Show Ignored Requests" -msgstr "Mostrar peticiones ignoradas" - -#: mod/notifications.php:151 -msgid "Hide Ignored Requests" -msgstr "Ocultar peticiones ignoradas" - -#: mod/notifications.php:164 mod/notifications.php:241 -msgid "Notification type:" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." msgstr "" -#: mod/notifications.php:167 -msgid "Suggested by:" +#: mod/dfrn_request.php:645 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" msgstr "" -#: mod/notifications.php:179 mod/notifications.php:258 -#: src/Module/Contact.php:632 -msgid "Hide this contact from others" -msgstr "Ocultar este contacto a los demás." +#: mod/dfrn_request.php:646 mod/follow.php:158 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Por favor responde lo siguiente:" -#: mod/notifications.php:201 -msgid "Claims to be known to you: " -msgstr "Dice conocerte: " - -#: mod/notifications.php:202 -msgid "yes" -msgstr "sí" - -#: mod/notifications.php:202 -msgid "no" -msgstr "no" - -#: mod/notifications.php:203 mod/notifications.php:207 -msgid "Shall your connection be bidirectional or not?" -msgstr "¿Su conexión debe ser bidireccional o no?" - -#: mod/notifications.php:204 mod/notifications.php:208 +#: mod/dfrn_request.php:654 mod/follow.php:172 #, php-format -msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." - -#: mod/notifications.php:205 -#, php-format -msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." - -#: mod/notifications.php:209 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "Aceptar a %s como participante les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." - -#: mod/notifications.php:220 -msgid "Friend" -msgstr "Amigo" - -#: mod/notifications.php:221 -msgid "Sharer" -msgstr "Lector" - -#: mod/notifications.php:221 -msgid "Subscriber" -msgstr "Suscriptor" - -#: mod/notifications.php:264 src/Model/Profile.php:538 -#: src/Module/Contact.php:89 -msgid "Network:" -msgstr "Red:" - -#: mod/notifications.php:277 -msgid "No introductions." -msgstr "Sin presentaciones." - -#: mod/notifications.php:311 -#, php-format -msgid "No more %s notifications." -msgstr "No más notificaciones de %s." - -#: mod/notify.php:78 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema." - -#: mod/oexchange.php:32 -msgid "Post successful." -msgstr "¡Publicado!" - -#: mod/openid.php:32 -msgid "OpenID protocol error. No ID returned." -msgstr "Error de protocolo OpenID. ID no devuelta." - -#: mod/openid.php:68 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio." - -#: mod/openid.php:118 src/Module/Login.php:91 src/Module/Login.php:141 -msgid "Login failed." -msgstr "Accesso fallido." - -#: mod/ostatus_subscribe.php:23 -msgid "Subscribing to OStatus contacts" -msgstr "Subscribir a los contactos de OStatus" - -#: mod/ostatus_subscribe.php:35 -msgid "No contact provided." -msgstr "Sin suministro de datos de contacto." - -#: mod/ostatus_subscribe.php:42 -msgid "Couldn't fetch information for contact." -msgstr "No se ha podido conseguir la información del contacto." - -#: mod/ostatus_subscribe.php:52 -msgid "Couldn't fetch friends for contact." -msgstr "No se ha podido conseguir datos de amigos para contactar." - -#: mod/ostatus_subscribe.php:70 mod/repair_ostatus.php:52 -msgid "Done" -msgstr "hecho!" - -#: mod/ostatus_subscribe.php:84 -msgid "success" -msgstr "exito!" - -#: mod/ostatus_subscribe.php:86 -msgid "failed" -msgstr "fallido!" - -#: mod/ostatus_subscribe.php:89 src/Object/Post.php:277 -msgid "ignored" -msgstr "ignorado" - -#: mod/ostatus_subscribe.php:94 mod/repair_ostatus.php:58 -msgid "Keep this window open until done." -msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado." - -#: mod/photos.php:116 src/Model/Profile.php:921 -msgid "Photo Albums" -msgstr "Álbum de Fotos" - -#: mod/photos.php:117 mod/photos.php:1706 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: mod/photos.php:120 mod/photos.php:1227 mod/photos.php:1708 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: mod/photos.php:138 mod/settings.php:56 -msgid "everybody" -msgstr "todos" - -#: mod/photos.php:194 -msgid "Contact information unavailable" -msgstr "Información del contacto no disponible" - -#: mod/photos.php:213 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: mod/photos.php:242 mod/photos.php:255 mod/photos.php:1178 -msgid "Delete Album" -msgstr "Eliminar álbum" - -#: mod/photos.php:253 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" - -#: mod/photos.php:315 mod/photos.php:327 mod/photos.php:1453 -msgid "Delete Photo" -msgstr "Eliminar foto" - -#: mod/photos.php:325 -msgid "Do you really want to delete this photo?" -msgstr "¿Estás seguro de que quieres borrar esta foto?" - -#: mod/photos.php:682 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:682 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fue etiquetado en %2$s por %3$s" - -#: mod/photos.php:778 mod/photos.php:781 mod/photos.php:810 -#: mod/profile_photo.php:155 mod/wall_upload.php:197 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La imagen excede el limite de %s" - -#: mod/photos.php:784 -msgid "Image upload didn't complete, please try again" +msgid "%s knows you" msgstr "" -#: mod/photos.php:787 -msgid "Image file is missing" -msgstr "" +#: mod/dfrn_request.php:655 mod/follow.php:173 +msgid "Add a personal note:" +msgstr "Añade una nota personal:" -#: mod/photos.php:792 +#: mod/api.php:100 mod/api.php:122 +msgid "Authorize application connection" +msgstr "Autorizar la conexión de la aplicación" + +#: mod/api.php:101 +msgid "Return to your app and insert this Securty Code:" +msgstr "Regresa a tu aplicación e introduce este código de seguridad:" + +#: mod/api.php:110 src/Module/BaseAdmin.php:73 +msgid "Please login to continue." +msgstr "Inicia sesión para continuar." + +#: mod/api.php:124 msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" -#: mod/photos.php:818 -msgid "Image file is empty." -msgstr "El archivo de imagen está vacío." +#: mod/api.php:126 src/Module/Notifications/Introductions.php:119 +#: src/Module/Register.php:116 +msgid "No" +msgstr "No" -#: mod/photos.php:833 mod/profile_photo.php:164 mod/wall_upload.php:211 -msgid "Unable to process image." -msgstr "Imposible procesar la imagen." +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." -#: mod/photos.php:862 mod/profile_photo.php:309 mod/wall_upload.php:250 -msgid "Image upload failed." -msgstr "Error al subir la imagen." +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Si no - intento de subir un archivo vacío?" -#: mod/photos.php:948 -msgid "No photos selected" -msgstr "Ninguna foto seleccionada" - -#: mod/photos.php:1045 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: mod/photos.php:1099 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: mod/photos.php:1103 mod/photos.php:1173 -msgid "New album name: " -msgstr "Nombre del nuevo álbum: " - -#: mod/photos.php:1104 -msgid "or select existing album:" -msgstr "" - -#: mod/photos.php:1105 -msgid "Do not show a status post for this upload" -msgstr "No actualizar tu estado con este envío" - -#: mod/photos.php:1121 mod/photos.php:1456 mod/settings.php:1212 -msgid "Show to Groups" -msgstr "Mostrar a los Grupos" - -#: mod/photos.php:1122 mod/photos.php:1457 mod/settings.php:1213 -msgid "Show to Contacts" -msgstr "Mostrar a los Contactos" - -#: mod/photos.php:1184 -msgid "Edit Album" -msgstr "Modificar álbum" - -#: mod/photos.php:1189 -msgid "Show Newest First" -msgstr "Mostrar más nuevos primero" - -#: mod/photos.php:1191 -msgid "Show Oldest First" -msgstr "Mostrar más antiguos primero" - -#: mod/photos.php:1212 mod/photos.php:1691 -msgid "View Photo" -msgstr "Ver foto" - -#: mod/photos.php:1253 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: mod/photos.php:1255 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: mod/photos.php:1330 -msgid "View photo" -msgstr "Ver foto" - -#: mod/photos.php:1330 -msgid "Edit photo" -msgstr "Modificar foto" - -#: mod/photos.php:1331 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: mod/photos.php:1337 src/Object/Post.php:150 -msgid "Private Message" -msgstr "Mensaje privado" - -#: mod/photos.php:1357 -msgid "View Full Size" -msgstr "Ver a tamaño completo" - -#: mod/photos.php:1421 -msgid "Tags: " -msgstr "Etiquetas: " - -#: mod/photos.php:1424 -msgid "[Select tags to remove]" -msgstr "" - -#: mod/photos.php:1439 -msgid "New album name" -msgstr "Nuevo nombre del álbum" - -#: mod/photos.php:1440 -msgid "Caption" -msgstr "Título" - -#: mod/photos.php:1441 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: mod/photos.php:1441 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" - -#: mod/photos.php:1442 -msgid "Do not rotate" -msgstr "No rotar" - -#: mod/photos.php:1443 -msgid "Rotate CW (right)" -msgstr "Girar a la derecha" - -#: mod/photos.php:1444 -msgid "Rotate CCW (left)" -msgstr "Girar a la izquierda" - -#: mod/photos.php:1478 src/Object/Post.php:305 -msgid "I like this (toggle)" -msgstr "Me gusta esto (cambiar)" - -#: mod/photos.php:1479 src/Object/Post.php:306 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: mod/photos.php:1494 mod/photos.php:1533 mod/photos.php:1593 -#: src/Module/Contact.php:1019 src/Object/Post.php:805 -msgid "This is you" -msgstr "Este eres tú" - -#: mod/photos.php:1496 mod/photos.php:1535 mod/photos.php:1595 -#: src/Object/Post.php:410 src/Object/Post.php:807 -msgid "Comment" -msgstr "Comentar" - -#: mod/photos.php:1625 -msgid "Map" -msgstr "Mapa" - -#: mod/photos.php:1697 mod/videos.php:375 -msgid "View Album" -msgstr "Ver Álbum" - -#: mod/ping.php:272 -msgid "{0} wants to be your friend" -msgstr "{0} quiere ser tu amigo" - -#: mod/ping.php:288 -msgid "{0} requested registration" -msgstr "{0} solicitudes de registro" - -#: mod/poke.php:185 -msgid "Poke/Prod" -msgstr "Toque/Empujón" - -#: mod/poke.php:186 -msgid "poke, prod or do other things to somebody" -msgstr "da un toque, empujón o similar a alguien" - -#: mod/poke.php:187 -msgid "Recipient" -msgstr "Receptor" - -#: mod/poke.php:188 -msgid "Choose what you wish to do to recipient" -msgstr "Elige qué desea hacer con el receptor" - -#: mod/poke.php:191 -msgid "Make this post private" -msgstr "Hacer esta publicación privada" - -#: mod/probe.php:14 mod/webfinger.php:17 -msgid "Only logged in users are permitted to perform a probing." -msgstr "Sólo los usuarios registrados pueden realizar una exploración." - -#: mod/profile.php:87 mod/profile.php:90 src/Protocol/OStatus.php:1287 +#: mod/wall_attach.php:116 #, php-format -msgid "%s's timeline" +msgid "File exceeds size limit of %s" +msgstr "El archivo excede el limite de tamaño de %s" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "Ha fallado la subida del archivo." + +#: mod/item.php:132 mod/item.php:136 +msgid "Unable to locate original post." +msgstr "No se puede encontrar la publicación original." + +#: mod/item.php:336 mod/item.php:341 +msgid "Empty post discarded." +msgstr "Publicación vacía descartada." + +#: mod/item.php:710 +msgid "Post updated." msgstr "" -#: mod/profile.php:88 src/Protocol/OStatus.php:1291 -#, php-format -msgid "%s's posts" +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." msgstr "" -#: mod/profile.php:89 src/Protocol/OStatus.php:1294 -#, php-format -msgid "%s's comments" +#: mod/item.php:743 +msgid "Item couldn't be fetched." msgstr "" -#: mod/profiles.php:61 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: mod/item.php:891 src/Module/Debug/ItemBody.php:46 +#: src/Module/Debug/ItemBody.php:59 src/Module/Admin/Themes/Details.php:70 +#: src/Module/Admin/Themes/Index.php:59 +msgid "Item not found." +msgstr "Elemento no encontrado." -#: mod/profiles.php:77 mod/profiles.php:113 -msgid "Profile-" -msgstr "Perfil-" +#: mod/item.php:923 +msgid "Do you really want to delete this item?" +msgstr "¿Realmente quieres borrar este objeto?" -#: mod/profiles.php:96 mod/profiles.php:135 -msgid "New profile created." -msgstr "Nuevo perfil creado." - -#: mod/profiles.php:119 -msgid "Profile unavailable to clone." -msgstr "Imposible duplicar el perfil." - -#: mod/profiles.php:207 -msgid "Profile Name is required." -msgstr "Se necesita un nombre de perfil." - -#: mod/profiles.php:348 -msgid "Marital Status" -msgstr "Estado civil" - -#: mod/profiles.php:352 -msgid "Romantic Partner" -msgstr "Pareja sentimental" - -#: mod/profiles.php:364 -msgid "Work/Employment" -msgstr "Trabajo/estudios" - -#: mod/profiles.php:367 -msgid "Religion" -msgstr "Religión" - -#: mod/profiles.php:371 -msgid "Political Views" -msgstr "Preferencias políticas" - -#: mod/profiles.php:375 -msgid "Gender" -msgstr "Género" - -#: mod/profiles.php:379 -msgid "Sexual Preference" -msgstr "Orientación sexual" - -#: mod/profiles.php:383 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:387 -msgid "Homepage" -msgstr "Página de inicio" - -#: mod/profiles.php:391 mod/profiles.php:594 -msgid "Interests" -msgstr "Intereses" - -#: mod/profiles.php:402 mod/profiles.php:590 -msgid "Location" -msgstr "Ubicación" - -#: mod/profiles.php:485 -msgid "Profile updated." -msgstr "Perfil actualizado." - -#: mod/profiles.php:539 -msgid "Hide contacts and friends:" -msgstr "Ocultar contactos y amigos" - -#: mod/profiles.php:544 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" - -#: mod/profiles.php:564 -msgid "Show more profile fields:" -msgstr "Mostrar mas campos del perfil:" - -#: mod/profiles.php:576 -msgid "Profile Actions" -msgstr "Acciones de perfil" - -#: mod/profiles.php:577 -msgid "Edit Profile Details" -msgstr "Editar detalles de tu perfil" - -#: mod/profiles.php:579 -msgid "Change Profile Photo" -msgstr "Cambiar imagen del Perfil" - -#: mod/profiles.php:581 -msgid "View this profile" -msgstr "Ver este perfil" - -#: mod/profiles.php:582 -msgid "View all profiles" +#: mod/uimport.php:45 +msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: mod/profiles.php:583 mod/profiles.php:678 src/Model/Profile.php:413 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: mod/profiles.php:584 -msgid "Create a new profile using these settings" -msgstr "¿Crear un nuevo perfil con esta configuración?" - -#: mod/profiles.php:585 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: mod/profiles.php:586 -msgid "Delete this profile" -msgstr "Eliminar este perfil" - -#: mod/profiles.php:588 -msgid "Basic information" -msgstr "Información básica" - -#: mod/profiles.php:589 -msgid "Profile picture" -msgstr "Imagen del perfil" - -#: mod/profiles.php:591 -msgid "Preferences" -msgstr "Preferencias" - -#: mod/profiles.php:592 -msgid "Status information" -msgstr "Información del estatus" - -#: mod/profiles.php:593 -msgid "Additional information" -msgstr "Información addicional" - -#: mod/profiles.php:596 -msgid "Relation" -msgstr "Relación" - -#: mod/profiles.php:597 src/Util/Temporal.php:80 src/Util/Temporal.php:82 -msgid "Miscellaneous" -msgstr "Varios" - -#: mod/profiles.php:600 -msgid "Your Gender:" -msgstr "Género:" - -#: mod/profiles.php:601 -msgid " Marital Status:" -msgstr " Estado civil:" - -#: mod/profiles.php:602 src/Model/Profile.php:796 -msgid "Sexual Preference:" -msgstr "Preferencia sexual:" - -#: mod/profiles.php:603 -msgid "Example: fishing photography software" -msgstr "Ejemplo: pesca fotografía software" - -#: mod/profiles.php:608 -msgid "Profile Name:" -msgstr "Nombres del perfil:" - -#: mod/profiles.php:610 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet." - -#: mod/profiles.php:611 -msgid "Your Full Name:" -msgstr "Tu nombre completo:" - -#: mod/profiles.php:612 -msgid "Title/Description:" -msgstr "Título/Descrición:" - -#: mod/profiles.php:615 -msgid "Street Address:" -msgstr "Dirección" - -#: mod/profiles.php:616 -msgid "Locality/City:" -msgstr "Localidad/Ciudad:" - -#: mod/profiles.php:617 -msgid "Region/State:" -msgstr "Región/Estado:" - -#: mod/profiles.php:618 -msgid "Postal/Zip Code:" -msgstr "Código postal:" - -#: mod/profiles.php:619 -msgid "Country:" -msgstr "País" - -#: mod/profiles.php:620 src/Util/Temporal.php:148 -msgid "Age: " -msgstr "Edad: " - -#: mod/profiles.php:623 -msgid "Who: (if applicable)" -msgstr "¿Quién? (si es aplicable)" - -#: mod/profiles.php:623 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:624 -msgid "Since [date]:" -msgstr "Desde [fecha]:" - -#: mod/profiles.php:626 -msgid "Tell us about yourself..." -msgstr "Háblanos sobre ti..." - -#: mod/profiles.php:627 -msgid "XMPP (Jabber) address:" -msgstr "Dirección XMPP (Jabber):" - -#: mod/profiles.php:627 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "La dirección XMPP será propagada entre sus contactos para que puedan seguirle." - -#: mod/profiles.php:628 -msgid "Homepage URL:" -msgstr "Dirección de tu página:" - -#: mod/profiles.php:629 src/Model/Profile.php:804 -msgid "Hometown:" -msgstr "Ciudad de origen:" - -#: mod/profiles.php:630 src/Model/Profile.php:812 -msgid "Political Views:" -msgstr "Ideas políticas:" - -#: mod/profiles.php:631 -msgid "Religious Views:" -msgstr "Creencias religiosas:" - -#: mod/profiles.php:632 -msgid "Public Keywords:" -msgstr "Palabras clave públicas:" - -#: mod/profiles.php:632 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" - -#: mod/profiles.php:633 -msgid "Private Keywords:" -msgstr "Palabras clave privadas:" - -#: mod/profiles.php:633 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" - -#: mod/profiles.php:634 src/Model/Profile.php:828 -msgid "Likes:" -msgstr "Me gusta:" - -#: mod/profiles.php:635 src/Model/Profile.php:832 -msgid "Dislikes:" -msgstr "No me gusta:" - -#: mod/profiles.php:636 -msgid "Musical interests" -msgstr "Gustos musicales" - -#: mod/profiles.php:637 -msgid "Books, literature" -msgstr "Libros, literatura" - -#: mod/profiles.php:638 -msgid "Television" -msgstr "Televisión" - -#: mod/profiles.php:639 -msgid "Film/dance/culture/entertainment" -msgstr "Películas/baile/cultura/entretenimiento" - -#: mod/profiles.php:640 -msgid "Hobbies/Interests" -msgstr "Aficiones/Intereses" - -#: mod/profiles.php:641 -msgid "Love/romance" -msgstr "Amor/Romance" - -#: mod/profiles.php:642 -msgid "Work/employment" -msgstr "Trabajo/ocupación" - -#: mod/profiles.php:643 -msgid "School/education" -msgstr "Escuela/estudios" - -#: mod/profiles.php:644 -msgid "Contact information and Social Networks" -msgstr "Informacioń de contacto y Redes sociales" - -#: mod/profiles.php:675 src/Model/Profile.php:409 -msgid "Profile Image" -msgstr "Imagen del Perfil" - -#: mod/profiles.php:677 src/Model/Profile.php:412 -msgid "visible to everybody" -msgstr "Visible para todos" - -#: mod/profiles.php:684 -msgid "Edit/Manage Profiles" -msgstr "Editar/Administrar perfiles" - -#: mod/profiles.php:685 src/Model/Profile.php:399 src/Model/Profile.php:421 -msgid "Change profile photo" -msgstr "Cambiar foto del perfil" - -#: mod/profiles.php:686 src/Model/Profile.php:400 -msgid "Create New Profile" -msgstr "Crear nuevo perfil" - -#: mod/profile_photo.php:59 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen recibida, pero ha fallado al recortarla." - -#: mod/profile_photo.php:91 mod/profile_photo.php:100 -#: mod/profile_photo.php:109 mod/profile_photo.php:317 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." - -#: mod/profile_photo.php:128 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." - -#: mod/profile_photo.php:136 -msgid "Unable to process image" -msgstr "Imposible procesar la imagen" - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Subir archivo:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Elige un perfil:" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:255 -msgid "skip this step" -msgstr "saltar este paso" - -#: mod/profile_photo.php:255 -msgid "select a photo from your photo albums" -msgstr "elige una foto de tus álbumes" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Editado" - -#: mod/profile_photo.php:307 -msgid "Image uploaded successfully." -msgstr "Imagen subida con éxito." - -#: mod/profperm.php:36 mod/profperm.php:69 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil no válido." - -#: mod/profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: mod/profperm.php:128 -msgid "Visible To" -msgstr "Visible para" - -#: mod/profperm.php:144 -msgid "All Contacts (with secure profile access)" -msgstr "Todos los contactos (con perfil de acceso seguro)" - -#: mod/register.php:103 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." - -#: mod/register.php:107 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio." - -#: mod/register.php:114 -msgid "Registration successful." -msgstr "Registro exitoso." - -#: mod/register.php:119 -msgid "Your registration can not be processed." -msgstr "Tu registro no se puede procesar." - -#: mod/register.php:162 -msgid "Your registration is pending approval by the site owner." -msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." - -#: mod/register.php:191 mod/uimport.php:39 +#: mod/uimport.php:54 src/Module/Register.php:84 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." -#: mod/register.php:218 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." - -#: mod/register.php:219 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." - -#: mod/register.php:220 -msgid "Your OpenID (optional): " -msgstr "Tu OpenID (opcional):" - -#: mod/register.php:229 -msgid "Include your profile in member directory?" -msgstr "¿Incluir tu perfil en el directorio de miembros?" - -#: mod/register.php:253 -msgid "Note for the admin" -msgstr "Nota para el administrador" - -#: mod/register.php:253 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" - -#: mod/register.php:254 -msgid "Membership on this site is by invitation only." -msgstr "Sitio solo accesible mediante invitación." - -#: mod/register.php:255 -msgid "Your invitation code: " -msgstr "" - -#: mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Nombre completo (ej. Joe Smith, real o real aparente):" - -#: mod/register.php:264 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "" - -#: mod/register.php:266 mod/settings.php:1184 -msgid "New Password:" -msgstr "Contraseña nueva:" - -#: mod/register.php:266 -msgid "Leave empty for an auto generated password." -msgstr "Dejar vacío para autogenerar una contraseña" - -#: mod/register.php:267 mod/settings.php:1185 -msgid "Confirm:" -msgstr "Confirmar:" - -#: mod/register.php:268 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@%s'." -msgstr "" - -#: mod/register.php:269 -msgid "Choose a nickname: " -msgstr "Escoge un apodo: " - -#: mod/register.php:272 src/Content/Nav.php:178 src/Module/Login.php:290 -msgid "Register" -msgstr "Registrarse" - -#: mod/register.php:277 mod/uimport.php:54 +#: mod/uimport.php:61 src/Module/Register.php:160 msgid "Import" msgstr "Importar" -#: mod/register.php:278 -msgid "Import your profile to this friendica instance" -msgstr "Importar tu perfil a esta instancia de friendica" - -#: mod/register.php:286 -msgid "Note: This node explicitly contains adult content" -msgstr "" - -#: mod/regmod.php:53 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: mod/regmod.php:77 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro anulado para %s" - -#: mod/regmod.php:84 -msgid "Please login." -msgstr "Por favor accede." - -#: mod/removeme.php:47 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:48 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:49 -#, php-format -msgid "The user id is %d" -msgstr "" - -#: mod/removeme.php:85 mod/removeme.php:88 -msgid "Remove My Account" -msgstr "Eliminar mi cuenta" - -#: mod/removeme.php:86 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." - -#: mod/removeme.php:87 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduce tu contraseña para la verificación:" - -#: mod/repair_ostatus.php:21 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribir a contactos de OStatus" - -#: mod/repair_ostatus.php:37 -msgid "Error" -msgstr "error" - -#: mod/search.php:104 -msgid "Only logged in users are permitted to perform a search." -msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." - -#: mod/search.php:128 -msgid "Too Many Requests" -msgstr "Demasiadas consultas" - -#: mod/search.php:129 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." - -#: mod/search.php:150 src/Content/Nav.php:192 src/Content/Text/HTML.php:969 -msgid "Search" -msgstr "Buscar" - -#: mod/search.php:236 -#, php-format -msgid "Items tagged with: %s" -msgstr "Objetos taggeado con: %s" - -#: mod/search.php:238 src/Module/Contact.php:817 -#, php-format -msgid "Results for: %s" -msgstr "Resultados para: %s" - -#: mod/settings.php:61 -msgid "Account" -msgstr "Cuenta" - -#: mod/settings.php:69 src/Content/Nav.php:260 src/Model/Profile.php:392 -msgid "Profiles" -msgstr "Perfiles" - -#: mod/settings.php:85 -msgid "Display" -msgstr "Interfaz del usuario" - -#: mod/settings.php:92 mod/settings.php:833 -msgid "Social Networks" -msgstr "Redes sociales" - -#: mod/settings.php:106 src/Content/Nav.php:255 -msgid "Delegations" -msgstr "Delegaciones" - -#: mod/settings.php:113 -msgid "Connected apps" -msgstr "Aplicaciones conectadas" - -#: mod/settings.php:120 mod/uexport.php:53 -msgid "Export personal data" -msgstr "Exportación de datos personales" - -#: mod/settings.php:127 -msgid "Remove account" -msgstr "Eliminar cuenta" - -#: mod/settings.php:179 -msgid "Missing some important data!" -msgstr "¡Faltan algunos datos importantes!" - -#: mod/settings.php:181 mod/settings.php:694 src/Module/Contact.php:824 -msgid "Update" -msgstr "Actualizar" - -#: mod/settings.php:290 -msgid "Failed to connect with email account using the settings provided." -msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." - -#: mod/settings.php:295 -msgid "Email settings updated." -msgstr "Configuración de correo actualizada." - -#: mod/settings.php:311 -msgid "Features updated" -msgstr "Actualizaciones" - -#: mod/settings.php:384 -msgid "Relocate message has been send to your contacts" -msgstr "Mensaje de reubicación ha sido enviado a sus contactos." - -#: mod/settings.php:396 -msgid "Passwords do not match." -msgstr "" - -#: mod/settings.php:404 src/Core/Console/NewPassword.php:80 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." - -#: mod/settings.php:407 src/Core/Console/NewPassword.php:83 -msgid "Password changed." -msgstr "Contraseña modificada." - -#: mod/settings.php:410 -msgid "Password unchanged." -msgstr "" - -#: mod/settings.php:493 -msgid " Please use a shorter name." -msgstr " Usa un nombre más corto." - -#: mod/settings.php:496 -msgid " Name too short." -msgstr " Nombre demasiado corto." - -#: mod/settings.php:504 -msgid "Wrong Password" -msgstr "Contraseña incorrecta" - -#: mod/settings.php:509 -msgid "Invalid email." -msgstr "" - -#: mod/settings.php:515 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:565 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." - -#: mod/settings.php:568 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." - -#: mod/settings.php:608 -msgid "Settings updated." -msgstr "Configuración actualizada." - -#: mod/settings.php:667 mod/settings.php:693 mod/settings.php:727 -msgid "Add application" -msgstr "Agregar aplicación" - -#: mod/settings.php:671 mod/settings.php:697 -msgid "Consumer Key" -msgstr "Clave del consumidor" - -#: mod/settings.php:672 mod/settings.php:698 -msgid "Consumer Secret" -msgstr "Secreto del consumidor" - -#: mod/settings.php:673 mod/settings.php:699 -msgid "Redirect" -msgstr "Redirigir" - -#: mod/settings.php:674 mod/settings.php:700 -msgid "Icon url" -msgstr "Dirección del ícono" - -#: mod/settings.php:685 -msgid "You can't edit this application." -msgstr "No puedes editar esta aplicación." - -#: mod/settings.php:726 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" - -#: mod/settings.php:728 src/Object/Post.php:160 src/Object/Post.php:162 -msgid "Edit" -msgstr "Editar" - -#: mod/settings.php:730 -msgid "Client key starts with" -msgstr "Clave de cliente comienza por" - -#: mod/settings.php:731 -msgid "No name" -msgstr "Sin nombre" - -#: mod/settings.php:732 -msgid "Remove authorization" -msgstr "Suprimir la autorización" - -#: mod/settings.php:743 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:752 -msgid "Addon Settings" -msgstr "" - -#: mod/settings.php:773 -msgid "Additional Features" -msgstr "Características adicionales" - -#: mod/settings.php:796 src/Content/ContactSelector.php:85 -msgid "Diaspora" -msgstr "Diaspora*" - -#: mod/settings.php:796 mod/settings.php:797 -msgid "enabled" -msgstr "habilitado" - -#: mod/settings.php:796 mod/settings.php:797 -msgid "disabled" -msgstr "deshabilitado" - -#: mod/settings.php:796 mod/settings.php:797 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "El soporte integrado de conexión con %s está %s" - -#: mod/settings.php:797 -msgid "GNU Social (OStatus)" -msgstr "GNUsocial (OStatus)" - -#: mod/settings.php:828 -msgid "Email access is disabled on this site." -msgstr "El acceso por correo está deshabilitado en esta web." - -#: mod/settings.php:838 -msgid "General Social Media Settings" -msgstr "Configuración general de social media " - -#: mod/settings.php:839 -msgid "Disable Content Warning" -msgstr "" - -#: mod/settings.php:839 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:840 -msgid "Disable intelligent shortening" -msgstr "Deshabilitar recorte inteligente de URL" - -#: mod/settings.php:840 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica." - -#: mod/settings.php:841 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones " - -#: mod/settings.php:841 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario." - -#: mod/settings.php:842 -msgid "Default group for OStatus contacts" -msgstr "Grupo por defecto para contactos OStatus" - -#: mod/settings.php:843 -msgid "Your legacy GNU Social account" -msgstr "Tu cuenta GNU social conectada" - -#: mod/settings.php:843 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. " - -#: mod/settings.php:846 -msgid "Repair OStatus subscriptions" -msgstr "Reparar subscripciones de OStatus" - -#: mod/settings.php:850 -msgid "Email/Mailbox Setup" -msgstr "Configuración del correo/buzón" - -#: mod/settings.php:851 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." - -#: mod/settings.php:852 -msgid "Last successful email check:" -msgstr "Última comprobación del correo con éxito:" - -#: mod/settings.php:854 -msgid "IMAP server name:" -msgstr "Nombre del servidor IMAP:" - -#: mod/settings.php:855 -msgid "IMAP port:" -msgstr "Puerto IMAP:" - -#: mod/settings.php:856 -msgid "Security:" -msgstr "Seguridad:" - -#: mod/settings.php:856 mod/settings.php:861 -msgid "None" -msgstr "Ninguna" - -#: mod/settings.php:857 -msgid "Email login name:" -msgstr "Nombre de usuario:" - -#: mod/settings.php:858 -msgid "Email password:" -msgstr "Contraseña:" - -#: mod/settings.php:859 -msgid "Reply-to address:" -msgstr "Dirección de respuesta:" - -#: mod/settings.php:860 -msgid "Send public posts to all email contacts:" -msgstr "Enviar publicaciones públicas a todos los contactos de correo:" - -#: mod/settings.php:861 -msgid "Action after import:" -msgstr "Acción después de importar:" - -#: mod/settings.php:861 src/Content/Nav.php:243 -msgid "Mark as seen" -msgstr "Marcar como leído" - -#: mod/settings.php:861 -msgid "Move to folder" -msgstr "Mover a un directorio" - -#: mod/settings.php:862 -msgid "Move to folder:" -msgstr "Mover al directorio:" - -#: mod/settings.php:905 -#, php-format -msgid "%s - (Unsupported)" -msgstr "" - -#: mod/settings.php:907 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: mod/settings.php:934 src/Core/L10n.php:356 src/Model/Event.php:392 -msgid "Sunday" -msgstr "Domingo" - -#: mod/settings.php:934 src/Core/L10n.php:356 src/Model/Event.php:393 -msgid "Monday" -msgstr "Lunes" - -#: mod/settings.php:950 -msgid "Display Settings" -msgstr "Configuración Tema/Visualización" - -#: mod/settings.php:956 -msgid "Display Theme:" -msgstr "Utilizar tema:" - -#: mod/settings.php:957 -msgid "Mobile Theme:" -msgstr "Tema móvil:" - -#: mod/settings.php:958 -msgid "Suppress warning of insecure networks" -msgstr "Suprimir el aviso de redes inseguras" - -#: mod/settings.php:958 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas." - -#: mod/settings.php:959 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" - -#: mod/settings.php:959 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." - -#: mod/settings.php:960 -msgid "Number of items to display per page:" -msgstr "Número de elementos a mostrar por página:" - -#: mod/settings.php:960 mod/settings.php:961 -msgid "Maximum of 100 items" -msgstr "Máximo 100 elementos" - -#: mod/settings.php:961 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Cantidad de objetos a visualizar cuando se usa un movil" - -#: mod/settings.php:962 -msgid "Don't show emoticons" -msgstr "No mostrar emoticones" - -#: mod/settings.php:963 -msgid "Calendar" -msgstr "Calendario" - -#: mod/settings.php:964 -msgid "Beginning of week:" -msgstr "Principio de la semana:" - -#: mod/settings.php:965 -msgid "Don't show notices" -msgstr "No mostrara avisos" - -#: mod/settings.php:966 -msgid "Infinite scroll" -msgstr "pagina infinita (sroll)" - -#: mod/settings.php:967 -msgid "Automatic updates only at the top of the network page" -msgstr "Actualizaciones automaticas solo estando al principio de la pagina" - -#: mod/settings.php:967 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "Cuando está deshabilitada, la página de red se actualiza constantemente, lo que podría ser confuso al leer." - -#: mod/settings.php:968 -msgid "Bandwidth Saver Mode" -msgstr "" - -#: mod/settings.php:968 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas." - -#: mod/settings.php:969 -msgid "Smart Threading" -msgstr "" - -#: mod/settings.php:969 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "" - -#: mod/settings.php:971 -msgid "General Theme Settings" -msgstr "Ajustes generales de tema" - -#: mod/settings.php:972 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados de tema" - -#: mod/settings.php:973 -msgid "Content Settings" -msgstr "Ajustes de contenido" - -#: mod/settings.php:974 view/theme/duepuntozero/config.php:74 -#: view/theme/frio/config.php:121 view/theme/quattro/config.php:76 -#: view/theme/vier/config.php:122 -msgid "Theme settings" -msgstr "Configuración del Tema" - -#: mod/settings.php:988 -msgid "Unable to find your profile. Please contact your admin." -msgstr "" - -#: mod/settings.php:1027 -msgid "Account Types" -msgstr "Tipos de cuenta" - -#: mod/settings.php:1028 -msgid "Personal Page Subtypes" -msgstr "Subtipos de página personal" - -#: mod/settings.php:1029 -msgid "Community Forum Subtypes" -msgstr "Subtipos de foro de comunidad" - -#: mod/settings.php:1037 -msgid "Account for a personal profile." -msgstr "Cuenta para un perfil personal." - -#: mod/settings.php:1041 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Cuenta para una organización que aprueba automáticamente las solicitudes de contacto como «Seguidores»." - -#: mod/settings.php:1045 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Cuenta para un reflector de noticias que aprueba automáticamente las solicitudes de contacto como «Seguidores»." - -#: mod/settings.php:1049 -msgid "Account for community discussions." -msgstr "Cuenta para discusiones de la comunidad." - -#: mod/settings.php:1053 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Cuenta para un perfil personal regular que requiere aprobación manual de «Amigos» y «Seguidores»." - -#: mod/settings.php:1057 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." - -#: mod/settings.php:1061 -msgid "Automatically approves all contact requests." -msgstr "Aprueba automáticamente todas las solicitudes de contacto." - -#: mod/settings.php:1065 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Cuenta para un perfil popular que aprueba automáticamente las solicitudes de contacto como «Friends»." - -#: mod/settings.php:1068 -msgid "Private Forum [Experimental]" -msgstr "Foro privado [Experimental]" - -#: mod/settings.php:1069 -msgid "Requires manual approval of contact requests." -msgstr "Requiere aprobación manual de solicitudes de contacto." - -#: mod/settings.php:1080 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1080 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." - -#: mod/settings.php:1088 -msgid "Publish your default profile in your local site directory?" -msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?" - -#: mod/settings.php:1088 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" - -#: mod/settings.php:1094 -msgid "Publish your default profile in the global social directory?" -msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?" - -#: mod/settings.php:1094 -#, php-format -msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "" - -#: mod/settings.php:1101 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?" - -#: mod/settings.php:1101 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "" - -#: mod/settings.php:1105 -msgid "Hide your profile details from anonymous viewers?" -msgstr "" - -#: mod/settings.php:1105 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "" - -#: mod/settings.php:1109 -msgid "Allow friends to post to your profile page?" -msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" - -#: mod/settings.php:1109 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:1113 -msgid "Allow friends to tag your posts?" -msgstr "¿Permites a los amigos etiquetar tus publicaciones?" - -#: mod/settings.php:1113 -msgid "Your contacts can add additional tags to your posts." -msgstr "" - -#: mod/settings.php:1117 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?" - -#: mod/settings.php:1117 -msgid "" -"If you like, Friendica may suggest new members to add you as a contact." -msgstr "" - -#: mod/settings.php:1121 -msgid "Permit unknown people to send you private mail?" -msgstr "¿Permites que desconocidos te manden correos privados?" - -#: mod/settings.php:1121 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: mod/settings.php:1125 -msgid "Profile is not published." -msgstr "El perfil no está publicado." - -#: mod/settings.php:1131 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Su dirección de identidad es '%s' o '%s'." - -#: mod/settings.php:1138 -msgid "Automatically expire posts after this many days:" -msgstr "Las publicaciones expirarán automáticamente después de estos días:" - -#: mod/settings.php:1138 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" - -#: mod/settings.php:1139 -msgid "Advanced expiration settings" -msgstr "Configuración avanzada de expiración" - -#: mod/settings.php:1140 -msgid "Advanced Expiration" -msgstr "Expiración avanzada" - -#: mod/settings.php:1141 -msgid "Expire posts:" -msgstr "¿Expiran las publicaciones?" - -#: mod/settings.php:1142 -msgid "Expire personal notes:" -msgstr "¿Expiran las notas personales?" - -#: mod/settings.php:1143 -msgid "Expire starred posts:" -msgstr "¿Expiran los favoritos?" - -#: mod/settings.php:1144 -msgid "Expire photos:" -msgstr "¿Expiran las fotografías?" - -#: mod/settings.php:1145 -msgid "Only expire posts by others:" -msgstr "Solo expiran los mensajes de los demás:" - -#: mod/settings.php:1175 -msgid "Account Settings" -msgstr "Configuración de la cuenta" - -#: mod/settings.php:1183 -msgid "Password Settings" -msgstr "Configuración de la contraseña" - -#: mod/settings.php:1184 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "" - -#: mod/settings.php:1185 -msgid "Leave password fields blank unless changing" -msgstr "Deja la contraseña en blanco si no quieres cambiarla" - -#: mod/settings.php:1186 -msgid "Current Password:" -msgstr "Contraseña actual:" - -#: mod/settings.php:1186 mod/settings.php:1187 -msgid "Your current password to confirm the changes" -msgstr "Su contraseña actual para confirmar los cambios." - -#: mod/settings.php:1187 -msgid "Password:" -msgstr "Contraseña:" - -#: mod/settings.php:1191 -msgid "Basic Settings" -msgstr "Configuración básica" - -#: mod/settings.php:1192 src/Model/Profile.php:752 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: mod/settings.php:1193 -msgid "Email Address:" -msgstr "Dirección de correo:" - -#: mod/settings.php:1194 -msgid "Your Timezone:" -msgstr "Zona horaria:" - -#: mod/settings.php:1195 -msgid "Your Language:" -msgstr "Tu idioma:" - -#: mod/settings.php:1195 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo." - -#: mod/settings.php:1196 -msgid "Default Post Location:" -msgstr "Localización predeterminada:" - -#: mod/settings.php:1197 -msgid "Use Browser Location:" -msgstr "Usar localización del navegador:" - -#: mod/settings.php:1200 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: mod/settings.php:1202 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo número de peticiones de amistad por día:" - -#: mod/settings.php:1202 mod/settings.php:1231 -msgid "(to prevent spam abuse)" -msgstr "(para prevenir el abuso de spam)" - -#: mod/settings.php:1203 -msgid "Default Post Permissions" -msgstr "Permisos por defecto para las publicaciones" - -#: mod/settings.php:1204 -msgid "(click to open/close)" -msgstr "(pulsa para abrir/cerrar)" - -#: mod/settings.php:1214 -msgid "Default Private Post" -msgstr "Publicación Privada por defecto" - -#: mod/settings.php:1215 -msgid "Default Public Post" -msgstr "Publicación Pública por defecto" - -#: mod/settings.php:1219 -msgid "Default Permissions for New Posts" -msgstr "Permisos por defecto para nuevas publicaciones" - -#: mod/settings.php:1231 -msgid "Maximum private messages per day from unknown people:" -msgstr "Número máximo de mensajes diarios para desconocidos:" - -#: mod/settings.php:1234 -msgid "Notification Settings" -msgstr "Configuración de notificaciones" - -#: mod/settings.php:1235 -msgid "Send a notification email when:" -msgstr "Enviar notificación por correo cuando:" - -#: mod/settings.php:1236 -msgid "You receive an introduction" -msgstr "Recibas una presentación" - -#: mod/settings.php:1237 -msgid "Your introductions are confirmed" -msgstr "Tu presentación sea confirmada" - -#: mod/settings.php:1238 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en el muro de mi perfil" - -#: mod/settings.php:1239 -msgid "Someone writes a followup comment" -msgstr "Algien escriba en un comentario que sigo" - -#: mod/settings.php:1240 -msgid "You receive a private message" -msgstr "Recibas un mensaje privado" - -#: mod/settings.php:1241 -msgid "You receive a friend suggestion" -msgstr "Recibas una sugerencia de amistad" - -#: mod/settings.php:1242 -msgid "You are tagged in a post" -msgstr "Seas etiquetado en una publicación" - -#: mod/settings.php:1243 -msgid "You are poked/prodded/etc. in a post" -msgstr "Te han tocado/empujado/etc. en una publicación" - -#: mod/settings.php:1245 -msgid "Activate desktop notifications" -msgstr "Activar notificaciones en pantalla." - -#: mod/settings.php:1245 -msgid "Show desktop popup on new notifications" -msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." - -#: mod/settings.php:1247 -msgid "Text-only notification emails" -msgstr "Notificaciones e-mail de solo texto" - -#: mod/settings.php:1249 -msgid "Send text only notification emails, without the html part" -msgstr "Enviar las notificaciones por correo con formato de solo texto sin html." - -#: mod/settings.php:1251 -msgid "Show detailled notifications" -msgstr "Mostrar notificaciones detalladas" - -#: mod/settings.php:1253 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:1255 -msgid "Advanced Account/Page Type Settings" -msgstr "Configuración avanzada de tipo de Cuenta/Página" - -#: mod/settings.php:1256 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" - -#: mod/settings.php:1259 -msgid "Relocate" -msgstr "Relocalizar" - -#: mod/settings.php:1260 -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 "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)" - -#: mod/settings.php:1261 -msgid "Resend relocate message to contacts" -msgstr "Reenviar mensaje de relocalización a los contactos" - -#: mod/subthread.php:104 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo las %3$s de %2$s" - -#: mod/suggest.php:39 -msgid "Do you really want to delete this suggestion?" -msgstr "¿Estás seguro de que quieres borrar esta sugerencia?" - -#: mod/suggest.php:75 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." - -#: mod/suggest.php:88 mod/suggest.php:108 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: mod/suggest.php:118 src/Content/Widget.php:65 view/theme/vier/theme.php:204 -msgid "Friend Suggestions" -msgstr "Sugerencias de amigos" - -#: mod/tagrm.php:31 -msgid "Tag(s) removed" -msgstr "" - -#: mod/tagrm.php:99 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta" - -#: mod/tagrm.php:101 -msgid "Select a tag to remove: " -msgstr "Selecciona una etiqueta para eliminar: " - -#: mod/uexport.php:45 -msgid "Export account" -msgstr "Exportar cuenta" - -#: mod/uexport.php:45 -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 la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." - -#: mod/uexport.php:46 -msgid "Export all" -msgstr "Exportar todo" - -#: mod/uexport.php:46 -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 la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)" - -#: mod/uimport.php:30 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "" - -#: mod/uimport.php:56 +#: mod/uimport.php:63 msgid "Move account" msgstr "Mover cuenta" -#: mod/uimport.php:57 +#: mod/uimport.php:64 msgid "You can import an account from another Friendica server." msgstr "Puedes importar una cuenta desde otro servidor de Friendica." -#: mod/uimport.php:58 +#: mod/uimport.php:65 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 "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." -#: mod/uimport.php:59 +#: mod/uimport.php:66 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" -#: mod/uimport.php:60 +#: mod/uimport.php:67 msgid "Account file" msgstr "Archivo de la cuenta" -#: mod/uimport.php:60 +#: mod/uimport.php:67 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" -#: mod/unfollow.php:36 mod/unfollow.php:92 -msgid "You aren't following this contact." +#: mod/cal.php:74 src/Module/Profile/Status.php:54 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:53 +#: src/Module/Register.php:260 src/Module/HoverCard.php:53 +msgid "User not found." msgstr "" -#: mod/unfollow.php:46 mod/unfollow.php:98 -msgid "Unfollowing is currently not supported by your network." -msgstr "Dejar de Seguir no es compatible con su red actualmente." +#: mod/cal.php:269 mod/events.php:410 +msgid "View" +msgstr "Vista" -#: mod/unfollow.php:67 -msgid "Contact unfollowed" -msgstr "Contacto no seguido" +#: mod/cal.php:270 mod/events.php:412 +msgid "Previous" +msgstr "Previo" -#: mod/unfollow.php:118 src/Module/Contact.php:572 -msgid "Disconnect/Unfollow" -msgstr "Desconectar/Dejar de seguir" +#: mod/cal.php:271 mod/events.php:413 src/Module/Install.php:192 +msgid "Next" +msgstr "Siguiente" -#: mod/update_community.php:23 mod/update_contact.php:23 -#: mod/update_display.php:24 mod/update_network.php:33 mod/update_notes.php:36 -#: mod/update_profile.php:35 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenido incrustado - recarga la página para verlo]" +#: mod/cal.php:274 mod/events.php:418 src/Model/Event.php:445 +msgid "today" +msgstr "hoy" -#: mod/videos.php:132 -msgid "Do you really want to delete this video?" -msgstr "Realmente quieres eliminar este vídeo?" +#: mod/cal.php:275 mod/events.php:419 src/Util/Temporal.php:330 +#: src/Model/Event.php:446 +msgid "month" +msgstr "mes" -#: mod/videos.php:137 -msgid "Delete Video" -msgstr "Borrar vídeo" +#: mod/cal.php:276 mod/events.php:420 src/Util/Temporal.php:331 +#: src/Model/Event.php:447 +msgid "week" +msgstr "semana" -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Ningún vídeo seleccionado" +#: mod/cal.php:277 mod/events.php:421 src/Util/Temporal.php:332 +#: src/Model/Event.php:448 +msgid "day" +msgstr "día" -#: mod/videos.php:368 src/Model/Item.php:3426 -msgid "View Video" -msgstr "Ver vídeo" +#: mod/cal.php:278 mod/events.php:422 +msgid "list" +msgstr "lista" -#: mod/videos.php:383 -msgid "Recent Videos" -msgstr "Vídeos recientes" +#: mod/cal.php:291 src/Console/User.php:152 src/Console/User.php:250 +#: src/Console/User.php:283 src/Console/User.php:309 +#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Admin/Users.php:112 src/Model/User.php:432 +msgid "User not found" +msgstr "Usuario no encontrado" -#: mod/videos.php:385 -msgid "Upload New Videos" -msgstr "Subir nuevos vídeos" +#: mod/cal.php:300 +msgid "This calendar format is not supported" +msgstr "Este formato de calendario no se soporta" -#: mod/viewcontacts.php:78 -msgid "No contacts." -msgstr "Ningún contacto." +#: mod/cal.php:302 +msgid "No exportable data found" +msgstr "No se ha encontrado información exportable" -#: mod/viewcontacts.php:94 src/Module/Contact.php:605 -#: src/Module/Contact.php:1025 +#: mod/cal.php:319 +msgid "calendar" +msgstr "calendario" + +#: mod/editpost.php:45 mod/editpost.php:55 +msgid "Item not found" +msgstr "Elemento no encontrado" + +#: mod/editpost.php:62 +msgid "Edit post" +msgstr "Editar publicación" + +#: mod/editpost.php:88 mod/notes.php:62 src/Module/Filer/SaveTag.php:66 +#: src/Content/Text/HTML.php:896 +msgid "Save" +msgstr "Guardar" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "enlace web" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Insertar enlace del vídeo" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "enlace de video" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Insertar vínculo del audio" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "enlace de audio" + +#: mod/editpost.php:113 src/Core/ACL.php:314 +msgid "CC: email addresses" +msgstr "CC: dirección de correo electrónico" + +#: mod/editpost.php:120 src/Core/ACL.php:315 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" + +#: mod/events.php:135 mod/events.php:137 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de su comienzo." + +#: mod/events.php:144 mod/events.php:146 +msgid "Event title and start time are required." +msgstr "Título del evento y hora de inicio requeridas." + +#: mod/events.php:411 +msgid "Create New Event" +msgstr "Crea un evento nuevo" + +#: mod/events.php:523 +msgid "Event details" +msgstr "Detalles del evento" + +#: mod/events.php:524 +msgid "Starting date and Title are required." +msgstr "Se requiere fecha de comienzo y titulo" + +#: mod/events.php:525 mod/events.php:530 +msgid "Event Starts:" +msgstr "Inicio del evento:" + +#: mod/events.php:525 mod/events.php:557 +msgid "Required" +msgstr "Obligatorio" + +#: mod/events.php:538 mod/events.php:563 +msgid "Finish date/time is not known or not relevant" +msgstr "La fecha/hora de finalización no es conocida o es irrelevante." + +#: mod/events.php:540 mod/events.php:545 +msgid "Event Finishes:" +msgstr "Finalización del evento:" + +#: mod/events.php:551 mod/events.php:564 +msgid "Adjust for viewer timezone" +msgstr "Ajuste de zona horaria" + +#: mod/events.php:553 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Descripción:" + +#: mod/events.php:555 src/Module/Notifications/Introductions.php:166 +#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:616 +#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:364 +msgid "Location:" +msgstr "Localización:" + +#: mod/events.php:557 mod/events.php:559 +msgid "Title:" +msgstr "Título:" + +#: mod/events.php:560 mod/events.php:561 +msgid "Share this event" +msgstr "Comparte este evento" + +#: mod/events.php:568 src/Module/Profile/Profile.php:242 +msgid "Basic" +msgstr "Basic" + +#: mod/events.php:569 src/Module/Profile/Profile.php:243 +#: src/Module/Contact.php:927 src/Module/Admin/Site.php:591 +msgid "Advanced" +msgstr "Avanzado" + +#: mod/events.php:570 mod/photos.php:976 mod/photos.php:1347 +msgid "Permissions" +msgstr "Permisos" + +#: mod/events.php:586 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" + +#: mod/follow.php:65 +msgid "The contact could not be added." +msgstr "" + +#: mod/follow.php:105 +msgid "You already added this contact." +msgstr "Ya has añadido este contacto." + +#: mod/follow.php:115 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." + +#: mod/follow.php:123 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." + +#: mod/follow.php:128 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." + +#: mod/follow.php:161 src/Module/Notifications/Introductions.php:170 +#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:622 +msgid "Tags:" +msgstr "Etiquetas:" + +#: mod/fbrowser.php:51 mod/fbrowser.php:70 mod/photos.php:196 +#: mod/photos.php:940 mod/photos.php:1053 mod/photos.php:1070 +#: mod/photos.php:1554 mod/photos.php:1569 src/Model/Photo.php:565 +#: src/Model/Photo.php:574 +msgid "Contact Photos" +msgstr "Foto del contacto" + +#: mod/fbrowser.php:106 mod/fbrowser.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Subir" + +#: mod/fbrowser.php:130 +msgid "Files" +msgstr "Archivos" + +#: mod/notes.php:50 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Notas personales" + +#: mod/photos.php:127 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Álbum de Fotos" + +#: mod/photos.php:128 mod/photos.php:1609 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: mod/photos.php:130 mod/photos.php:1115 mod/photos.php:1611 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" + +#: mod/photos.php:148 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "todos" + +#: mod/photos.php:185 +msgid "Contact information unavailable" +msgstr "Información del contacto no disponible" + +#: mod/photos.php:207 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: mod/photos.php:265 +msgid "Album successfully deleted" +msgstr "" + +#: mod/photos.php:267 +msgid "Album was empty." +msgstr "" + +#: mod/photos.php:299 +msgid "Failed to delete the photo." +msgstr "" + +#: mod/photos.php:583 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:583 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Ver el perfil de %s [%s]" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s fue etiquetado en %2$s por %3$s" -#: mod/viewcontacts.php:114 src/Content/Nav.php:197 src/Content/Nav.php:263 -#: src/Content/Text/HTML.php:980 src/Model/Profile.php:981 -#: src/Model/Profile.php:984 src/Module/Contact.php:812 -#: src/Module/Contact.php:882 view/theme/frio/theme.php:284 -msgid "Contacts" -msgstr "Contactos" +#: mod/photos.php:684 +msgid "Image upload didn't complete, please try again" +msgstr "" -#: mod/wallmessage.php:52 mod/wallmessage.php:115 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." +#: mod/photos.php:687 +msgid "Image file is missing" +msgstr "" -#: mod/wallmessage.php:63 -msgid "Unable to check your home location." -msgstr "Imposible comprobar tu servidor de inicio." - -#: mod/wallmessage.php:89 mod/wallmessage.php:98 -msgid "No recipient." -msgstr "Sin receptor." - -#: mod/wallmessage.php:129 -#, php-format +#: mod/photos.php:692 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" -#: mod/wall_attach.php:28 mod/wall_attach.php:35 mod/wall_attach.php:90 -#: mod/wall_upload.php:41 mod/wall_upload.php:57 mod/wall_upload.php:115 -#: mod/wall_upload.php:166 mod/wall_upload.php:169 -msgid "Invalid request." -msgstr "Consulta invalida" +#: mod/photos.php:716 +msgid "Image file is empty." +msgstr "El archivo de imagen está vacío." -#: mod/wall_attach.php:108 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." +#: mod/photos.php:848 +msgid "No photos selected" +msgstr "Ninguna foto seleccionada" -#: mod/wall_attach.php:108 -msgid "Or - did you try to upload an empty file?" -msgstr "Si no - intento de subir un archivo vacío?" +#: mod/photos.php:968 +msgid "Upload Photos" +msgstr "Subir fotos" -#: mod/wall_attach.php:119 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "El archivo excede el limite de tamaño de %s" +#: mod/photos.php:972 mod/photos.php:1060 +msgid "New album name: " +msgstr "Nombre del nuevo álbum: " -#: mod/wall_attach.php:143 mod/wall_attach.php:159 -msgid "File upload failed." -msgstr "Ha fallado la subida del archivo." +#: mod/photos.php:973 +msgid "or select existing album:" +msgstr "" -#: mod/wall_upload.php:242 src/Object/Image.php:968 src/Object/Image.php:984 -#: src/Object/Image.php:992 src/Object/Image.php:1017 -msgid "Wall Photos" -msgstr "Foto del Muro" +#: mod/photos.php:974 +msgid "Do not show a status post for this upload" +msgstr "No actualizar tu estado con este envío" -#: src/App.php:787 +#: mod/photos.php:990 mod/photos.php:1355 +msgid "Show to Groups" +msgstr "Mostrar a los Grupos" + +#: mod/photos.php:991 mod/photos.php:1356 +msgid "Show to Contacts" +msgstr "Mostrar a los Contactos" + +#: mod/photos.php:1042 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" + +#: mod/photos.php:1044 mod/photos.php:1065 +msgid "Delete Album" +msgstr "Eliminar álbum" + +#: mod/photos.php:1071 +msgid "Edit Album" +msgstr "Modificar álbum" + +#: mod/photos.php:1072 +msgid "Drop Album" +msgstr "" + +#: mod/photos.php:1077 +msgid "Show Newest First" +msgstr "Mostrar más nuevos primero" + +#: mod/photos.php:1079 +msgid "Show Oldest First" +msgstr "Mostrar más antiguos primero" + +#: mod/photos.php:1100 mod/photos.php:1594 +msgid "View Photo" +msgstr "Ver foto" + +#: mod/photos.php:1137 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: mod/photos.php:1139 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: mod/photos.php:1149 +msgid "Do you really want to delete this photo?" +msgstr "¿Estás seguro de que quieres borrar esta foto?" + +#: mod/photos.php:1151 mod/photos.php:1352 +msgid "Delete Photo" +msgstr "Eliminar foto" + +#: mod/photos.php:1242 +msgid "View photo" +msgstr "Ver foto" + +#: mod/photos.php:1244 +msgid "Edit photo" +msgstr "Modificar foto" + +#: mod/photos.php:1245 +msgid "Delete photo" +msgstr "" + +#: mod/photos.php:1246 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: mod/photos.php:1253 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1259 +msgid "View Full Size" +msgstr "Ver a tamaño completo" + +#: mod/photos.php:1320 +msgid "Tags: " +msgstr "Etiquetas: " + +#: mod/photos.php:1323 +msgid "[Select tags to remove]" +msgstr "" + +#: mod/photos.php:1338 +msgid "New album name" +msgstr "Nuevo nombre del álbum" + +#: mod/photos.php:1339 +msgid "Caption" +msgstr "Título" + +#: mod/photos.php:1340 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: mod/photos.php:1340 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" + +#: mod/photos.php:1341 +msgid "Do not rotate" +msgstr "No rotar" + +#: mod/photos.php:1342 +msgid "Rotate CW (right)" +msgstr "Girar a la derecha" + +#: mod/photos.php:1343 +msgid "Rotate CCW (left)" +msgstr "Girar a la izquierda" + +#: mod/photos.php:1376 src/Object/Post.php:345 +msgid "I like this (toggle)" +msgstr "Me gusta esto (cambiar)" + +#: mod/photos.php:1377 src/Object/Post.php:346 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: mod/photos.php:1392 mod/photos.php:1439 mod/photos.php:1502 +#: src/Object/Post.php:943 src/Module/Contact.php:1069 +#: src/Module/Item/Compose.php:142 +msgid "This is you" +msgstr "Este eres tú" + +#: mod/photos.php:1394 mod/photos.php:1441 mod/photos.php:1504 +#: src/Object/Post.php:480 src/Object/Post.php:945 +msgid "Comment" +msgstr "Comentar" + +#: mod/photos.php:1530 +msgid "Map" +msgstr "Mapa" + +#: src/App/Module.php:240 +msgid "You must be logged in to use addons. " +msgstr "Tienes que estar registrado para tener acceso a los accesorios." + +#: src/App/Page.php:250 msgid "Delete this item?" msgstr "¿Eliminar este elemento?" -#: src/App.php:789 -msgid "show fewer" -msgstr "ver menos" - -#: src/App.php:831 +#: src/App/Page.php:298 msgid "toggle mobile" msgstr "Cambiar a versión móvil" -#: src/App.php:1384 -msgid "No system theme config value set." -msgstr "" +#: src/App/Authentication.php:210 src/App/Authentication.php:262 +msgid "Login failed." +msgstr "Accesso fallido." -#: src/BaseModule.php:133 +#: src/App/Authentication.php:224 src/Model/User.php:659 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." -#: src/Content/ContactSelector.php:57 -msgid "Frequently" +#: src/App/Authentication.php:224 src/Model/User.php:659 +msgid "The error message was:" +msgstr "El mensaje del error fue:" + +#: src/App/Authentication.php:273 +msgid "Login failed. Please check your credentials." msgstr "" -#: src/Content/ContactSelector.php:58 -msgid "Hourly" -msgstr "" - -#: src/Content/ContactSelector.php:59 -msgid "Twice daily" -msgstr "" - -#: src/Content/ContactSelector.php:60 -msgid "Daily" -msgstr "" - -#: src/Content/ContactSelector.php:61 -msgid "Weekly" -msgstr "" - -#: src/Content/ContactSelector.php:62 -msgid "Monthly" -msgstr "" - -#: src/Content/ContactSelector.php:81 -msgid "DFRN" -msgstr "" - -#: src/Content/ContactSelector.php:82 -msgid "OStatus" -msgstr "" - -#: src/Content/ContactSelector.php:83 -msgid "RSS/Atom" -msgstr "" - -#: src/Content/ContactSelector.php:86 -msgid "Zot!" -msgstr "" - -#: src/Content/ContactSelector.php:87 -msgid "LinkedIn" -msgstr "" - -#: src/Content/ContactSelector.php:88 -msgid "XMPP/IM" -msgstr "" - -#: src/Content/ContactSelector.php:89 -msgid "MySpace" -msgstr "" - -#: src/Content/ContactSelector.php:90 -msgid "Google+" -msgstr "" - -#: src/Content/ContactSelector.php:91 -msgid "pump.io" -msgstr "" - -#: src/Content/ContactSelector.php:92 -msgid "Twitter" -msgstr "" - -#: src/Content/ContactSelector.php:93 -msgid "Diaspora Connector" -msgstr "" - -#: src/Content/ContactSelector.php:94 -msgid "GNU Social Connector" -msgstr "" - -#: src/Content/ContactSelector.php:95 -msgid "ActivityPub" -msgstr "" - -#: src/Content/ContactSelector.php:96 -msgid "pnut" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Male" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Female" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Currently Male" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Currently Female" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Mostly Male" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Mostly Female" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Transgender" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Intersex" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Transsexual" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Hermaphrodite" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Neuter" -msgstr "" - -#: src/Content/ContactSelector.php:148 -msgid "Non-specific" -msgstr "Sin especificar" - -#: src/Content/ContactSelector.php:148 -msgid "Other" -msgstr "Otro" - -#: src/Content/ContactSelector.php:170 -msgid "Males" -msgstr "Hombres" - -#: src/Content/ContactSelector.php:170 -msgid "Females" -msgstr "Mujeres" - -#: src/Content/ContactSelector.php:170 -msgid "Gay" -msgstr "Gay" - -#: src/Content/ContactSelector.php:170 -msgid "Lesbian" -msgstr "Lesbiana" - -#: src/Content/ContactSelector.php:170 -msgid "No Preference" -msgstr "Sin preferencias" - -#: src/Content/ContactSelector.php:170 -msgid "Bisexual" -msgstr "Bisexual" - -#: src/Content/ContactSelector.php:170 -msgid "Autosexual" -msgstr "Autosexual" - -#: src/Content/ContactSelector.php:170 -msgid "Abstinent" -msgstr "Célibe" - -#: src/Content/ContactSelector.php:170 -msgid "Virgin" -msgstr "Virgen" - -#: src/Content/ContactSelector.php:170 -msgid "Deviant" -msgstr "Desviado" - -#: src/Content/ContactSelector.php:170 -msgid "Fetish" -msgstr "Fetichista" - -#: src/Content/ContactSelector.php:170 -msgid "Oodles" -msgstr "Orgiástico" - -#: src/Content/ContactSelector.php:170 -msgid "Nonsexual" -msgstr "Asexual" - -#: src/Content/ContactSelector.php:192 -msgid "Single" -msgstr "Soltero" - -#: src/Content/ContactSelector.php:192 -msgid "Lonely" -msgstr "Solitario" - -#: src/Content/ContactSelector.php:192 -msgid "Available" -msgstr "Disponible" - -#: src/Content/ContactSelector.php:192 -msgid "Unavailable" -msgstr "No disponible" - -#: src/Content/ContactSelector.php:192 -msgid "Has crush" -msgstr "Enamorado" - -#: src/Content/ContactSelector.php:192 -msgid "Infatuated" -msgstr "Loco/a por alguien" - -#: src/Content/ContactSelector.php:192 -msgid "Dating" -msgstr "De citas" - -#: src/Content/ContactSelector.php:192 -msgid "Unfaithful" -msgstr "Infiel" - -#: src/Content/ContactSelector.php:192 -msgid "Sex Addict" -msgstr "Adicto al sexo" - -#: src/Content/ContactSelector.php:192 src/Model/User.php:647 -msgid "Friends" -msgstr "Amigos" - -#: src/Content/ContactSelector.php:192 -msgid "Friends/Benefits" -msgstr "Amigos con beneficios" - -#: src/Content/ContactSelector.php:192 -msgid "Casual" -msgstr "Casual" - -#: src/Content/ContactSelector.php:192 -msgid "Engaged" -msgstr "Comprometido/a" - -#: src/Content/ContactSelector.php:192 -msgid "Married" -msgstr "Casado/a" - -#: src/Content/ContactSelector.php:192 -msgid "Imaginarily married" -msgstr "Casado imaginario" - -#: src/Content/ContactSelector.php:192 -msgid "Partners" -msgstr "Socios" - -#: src/Content/ContactSelector.php:192 -msgid "Cohabiting" -msgstr "Cohabitando" - -#: src/Content/ContactSelector.php:192 -msgid "Common law" -msgstr "Pareja de hecho" - -#: src/Content/ContactSelector.php:192 -msgid "Happy" -msgstr "Feliz" - -#: src/Content/ContactSelector.php:192 -msgid "Not looking" -msgstr "No busca relación" - -#: src/Content/ContactSelector.php:192 -msgid "Swinger" -msgstr "Swinger" - -#: src/Content/ContactSelector.php:192 -msgid "Betrayed" -msgstr "Traicionado/a" - -#: src/Content/ContactSelector.php:192 -msgid "Separated" -msgstr "Separado/a" - -#: src/Content/ContactSelector.php:192 -msgid "Unstable" -msgstr "Inestable" - -#: src/Content/ContactSelector.php:192 -msgid "Divorced" -msgstr "Divorciado/a" - -#: src/Content/ContactSelector.php:192 -msgid "Imaginarily divorced" -msgstr "Divorciado imaginario" - -#: src/Content/ContactSelector.php:192 -msgid "Widowed" -msgstr "Viudo/a" - -#: src/Content/ContactSelector.php:192 -msgid "Uncertain" -msgstr "Incierto" - -#: src/Content/ContactSelector.php:192 -msgid "It's complicated" -msgstr "Es complicado" - -#: src/Content/ContactSelector.php:192 -msgid "Don't care" -msgstr "No te importa" - -#: src/Content/ContactSelector.php:192 -msgid "Ask me" -msgstr "Pregúntame" - -#: src/Content/Feature.php:79 -msgid "General Features" -msgstr "Opciones generales" - -#: src/Content/Feature.php:81 -msgid "Multiple Profiles" -msgstr "Perfiles multiples" - -#: src/Content/Feature.php:81 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica." - -#: src/Content/Feature.php:82 -msgid "Photo Location" -msgstr "Localización foto" - -#: src/Content/Feature.php:82 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa." - -#: src/Content/Feature.php:83 -msgid "Export Public Calendar" -msgstr "Exportar Calendario Público" - -#: src/Content/Feature.php:83 -msgid "Ability for visitors to download the public calendar" -msgstr "Posibilidad de los visitantes de descargar el calendario público" - -#: src/Content/Feature.php:88 -msgid "Post Composition Features" -msgstr "Opciones de edición de publicaciones." - -#: src/Content/Feature.php:89 -msgid "Auto-mention Forums" -msgstr "Auto-mencionar foros" - -#: src/Content/Feature.php:89 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL." - -#: src/Content/Feature.php:94 -msgid "Network Sidebar" -msgstr "" - -#: src/Content/Feature.php:95 -msgid "Ability to select posts by date ranges" -msgstr "Habilidad de seleccionar publicaciones por fecha" - -#: src/Content/Feature.php:96 -msgid "Protocol Filter" -msgstr "" - -#: src/Content/Feature.php:96 -msgid "Enable widget to display Network posts only from selected protocols" -msgstr "" - -#: src/Content/Feature.php:101 -msgid "Network Tabs" -msgstr "Pestañas de redes" - -#: src/Content/Feature.php:102 -msgid "Network New Tab" -msgstr "Pestaña nuevo en la red" - -#: src/Content/Feature.php:102 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)" - -#: src/Content/Feature.php:103 -msgid "Network Shared Links Tab" -msgstr "Pestaña publicaciones con enlaces" - -#: src/Content/Feature.php:103 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Habilitar para visualizar solo publicaciones que contienen enlaces" - -#: src/Content/Feature.php:108 -msgid "Post/Comment Tools" -msgstr "Herramienta de publicaciones/respuestas" - -#: src/Content/Feature.php:109 -msgid "Post Categories" -msgstr "Categorías de publicaciones" - -#: src/Content/Feature.php:109 -msgid "Add categories to your posts" -msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." - -#: src/Content/Feature.php:114 -msgid "Advanced Profile Settings" -msgstr "Ajustes avanzados del perfil" - -#: src/Content/Feature.php:115 -msgid "List Forums" -msgstr "Listar foros" - -#: src/Content/Feature.php:115 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles." - -#: src/Content/Feature.php:116 -msgid "Tag Cloud" -msgstr "" - -#: src/Content/Feature.php:116 -msgid "Provide a personal tag cloud on your profile page" -msgstr "" - -#: src/Content/Feature.php:117 -msgid "Display Membership Date" -msgstr "" - -#: src/Content/Feature.php:117 -msgid "Display membership date in profile" -msgstr "" - -#: src/Content/ForumManager.php:126 src/Content/Nav.php:201 -#: src/Content/Text/HTML.php:983 view/theme/vier/theme.php:250 -msgid "Forums" -msgstr "Foros" - -#: src/Content/ForumManager.php:128 view/theme/vier/theme.php:252 -msgid "External link to forum" -msgstr "Enlace externo al foro" - -#: src/Content/Nav.php:69 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" - -#: src/Content/Nav.php:73 -msgid "Clear notifications" -msgstr "Limpiar notificaciones" - -#: src/Content/Nav.php:74 src/Content/Text/HTML.php:972 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, contenido" - -#: src/Content/Nav.php:147 src/Module/Login.php:318 -#: view/theme/frio/theme.php:270 -msgid "Logout" -msgstr "Salir" - -#: src/Content/Nav.php:147 view/theme/frio/theme.php:270 -msgid "End this session" -msgstr "Cerrar la sesión" - -#: src/Content/Nav.php:150 src/Model/Profile.php:902 -#: src/Module/Contact.php:655 src/Module/Contact.php:854 -#: view/theme/frio/theme.php:273 -msgid "Status" -msgstr "Estado" - -#: src/Content/Nav.php:150 src/Content/Nav.php:236 -#: view/theme/frio/theme.php:273 -msgid "Your posts and conversations" -msgstr "Tus publicaciones y conversaciones" - -#: src/Content/Nav.php:151 view/theme/frio/theme.php:274 -msgid "Your profile page" -msgstr "Tu página de perfil" - -#: src/Content/Nav.php:152 view/theme/frio/theme.php:275 -msgid "Your photos" -msgstr "Tus fotos" - -#: src/Content/Nav.php:153 src/Model/Profile.php:926 src/Model/Profile.php:929 -#: view/theme/frio/theme.php:276 -msgid "Videos" -msgstr "Videos" - -#: src/Content/Nav.php:153 view/theme/frio/theme.php:276 -msgid "Your videos" -msgstr "Tus videos" - -#: src/Content/Nav.php:154 view/theme/frio/theme.php:277 -msgid "Your events" -msgstr "Tus eventos" - -#: src/Content/Nav.php:155 -msgid "Personal notes" -msgstr "Notas personales" - -#: src/Content/Nav.php:155 -msgid "Your personal notes" -msgstr "Tus notas personales" - -#: src/Content/Nav.php:164 -msgid "Sign in" -msgstr "Date de alta" - -#: src/Content/Nav.php:174 src/Content/Nav.php:236 -#: src/Core/NotificationsManager.php:192 -msgid "Home" -msgstr "Inicio" - -#: src/Content/Nav.php:174 -msgid "Home Page" -msgstr "Página de inicio" - -#: src/Content/Nav.php:178 -msgid "Create an account" -msgstr "Crea una cuenta" - -#: src/Content/Nav.php:184 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: src/Content/Nav.php:188 -msgid "Apps" -msgstr "Aplicaciones" - -#: src/Content/Nav.php:188 -msgid "Addon applications, utilities, games" -msgstr "Aplicaciones, utilidades, juegos" - -#: src/Content/Nav.php:192 -msgid "Search site content" -msgstr " Busca contenido en la página" - -#: src/Content/Nav.php:195 src/Content/Text/HTML.php:978 -msgid "Full Text" -msgstr "Texto completo" - -#: src/Content/Nav.php:196 src/Content/Text/HTML.php:979 -#: src/Content/Widget/TagCloud.php:53 -msgid "Tags" -msgstr "Tags" - -#: src/Content/Nav.php:216 -msgid "Community" -msgstr "Comunidad" - -#: src/Content/Nav.php:216 -msgid "Conversations on this and other servers" -msgstr "" - -#: src/Content/Nav.php:220 src/Model/Profile.php:941 src/Model/Profile.php:952 -#: view/theme/frio/theme.php:281 -msgid "Events and Calendar" -msgstr "Eventos y Calendario" - -#: src/Content/Nav.php:223 -msgid "Directory" -msgstr "Directorio" - -#: src/Content/Nav.php:223 -msgid "People directory" -msgstr "Directorio de usuarios" - -#: src/Content/Nav.php:225 -msgid "Information about this friendica instance" -msgstr "Información sobre esta instancia de friendica" - -#: src/Content/Nav.php:228 -msgid "Terms of Service of this Friendica instance" -msgstr "" - -#: src/Content/Nav.php:233 view/theme/frio/theme.php:280 -msgid "Conversations from your friends" -msgstr "Conversaciones de tus amigos" - -#: src/Content/Nav.php:234 -msgid "Network Reset" -msgstr "Reseteo de la red" - -#: src/Content/Nav.php:234 -msgid "Load Network page with no filters" -msgstr "Cargar pagina de redes sin filtros" - -#: src/Content/Nav.php:240 src/Core/NotificationsManager.php:199 -msgid "Introductions" -msgstr "Presentaciones" - -#: src/Content/Nav.php:240 -msgid "Friend Requests" -msgstr "Solicitudes de amistad" - -#: src/Content/Nav.php:242 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: src/Content/Nav.php:243 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones del sistema como leídas" - -#: src/Content/Nav.php:246 view/theme/frio/theme.php:282 -msgid "Private mail" -msgstr "Correo privado" - -#: src/Content/Nav.php:247 -msgid "Inbox" -msgstr "Entrada" - -#: src/Content/Nav.php:248 -msgid "Outbox" -msgstr "Enviados" - -#: src/Content/Nav.php:252 -msgid "Manage" -msgstr "Administrar" - -#: src/Content/Nav.php:252 -msgid "Manage other pages" -msgstr "Administrar otras páginas" - -#: src/Content/Nav.php:257 view/theme/frio/theme.php:283 -msgid "Account settings" -msgstr "Configuración de tu cuenta" - -#: src/Content/Nav.php:260 -msgid "Manage/Edit Profiles" -msgstr "Manejar/editar Perfiles" - -#: src/Content/Nav.php:263 view/theme/frio/theme.php:284 -msgid "Manage/edit friends and contacts" -msgstr "Administrar/editar amigos y contactos" - -#: src/Content/Nav.php:268 -msgid "Site setup and configuration" -msgstr "Opciones y configuración del sitio" - -#: src/Content/Nav.php:271 -msgid "Navigation" -msgstr "Navegación" - -#: src/Content/Nav.php:271 -msgid "Site map" -msgstr "Mapa del sitio" - -#: src/Content/OEmbed.php:255 -msgid "Embedding disabled" -msgstr "Contenido incrustrado desabilitado" - -#: src/Content/OEmbed.php:375 -msgid "Embedded content" -msgstr "Contenido integrado" - -#: src/Content/Pager.php:166 -msgid "newer" -msgstr "más nuevo" - -#: src/Content/Pager.php:171 -msgid "older" -msgstr "más antiguo" - -#: src/Content/Pager.php:215 -msgid "prev" -msgstr "ant." - -#: src/Content/Pager.php:275 -msgid "last" -msgstr "última" - -#: src/Content/Text/BBCode.php:426 -msgid "view full size" -msgstr "Ver a tamaño completo" - -#: src/Content/Text/BBCode.php:858 src/Content/Text/BBCode.php:1583 -#: src/Content/Text/BBCode.php:1584 -msgid "Image/photo" -msgstr "Imagen/Foto" - -#: src/Content/Text/BBCode.php:961 +#: src/App/Authentication.php:389 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1510 src/Content/Text/BBCode.php:1532 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: src/Content/Text/BBCode.php:1594 src/Content/Text/BBCode.php:1595 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: src/Content/Text/BBCode.php:1702 -msgid "Invalid source protocol" -msgstr "Protocolo de fuente inválido" - -#: src/Content/Text/BBCode.php:1713 -msgid "Invalid link protocol" -msgstr "Protocolo de enlace inválido" - -#: src/Content/Text/HTML.php:799 -msgid "Loading more entries..." -msgstr "Cargar mas entradas .." - -#: src/Content/Text/HTML.php:800 -msgid "The end" -msgstr "El fin" - -#: src/Content/Text/HTML.php:840 -msgid "No contacts" -msgstr "Sin contactos" - -#: src/Content/Text/HTML.php:867 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Contacto" -msgstr[1] "%d Contactos" - -#: src/Content/Text/HTML.php:880 -msgid "View Contacts" -msgstr "Ver contactos" - -#: src/Content/Text/HTML.php:963 -msgid "Follow" +msgid "Welcome %s" msgstr "" -#: src/Content/Text/HTML.php:1018 src/Model/Item.php:3476 -#: src/Model/Item.php:3487 -msgid "Click to open/close" -msgstr "Pulsa para abrir/cerrar" - -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export" -msgstr "Exportar" - -#: src/Content/Widget/CalendarExport.php:64 -msgid "Export calendar as ical" -msgstr "Exportar calendario como ical" - -#: src/Content/Widget/CalendarExport.php:65 -msgid "Export calendar as csv" -msgstr "Exportar calendario como csv" - -#: src/Content/Widget.php:34 -msgid "Add New Contact" -msgstr "Añadir nuevo contacto" - -#: src/Content/Widget.php:35 -msgid "Enter address or web location" -msgstr "Escribe la dirección o página web" - -#: src/Content/Widget.php:36 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" - -#: src/Content/Widget.php:54 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación disponible" -msgstr[1] "%d invitaviones disponibles" - -#: src/Content/Widget.php:60 view/theme/vier/theme.php:199 -msgid "Find People" -msgstr "Buscar personas" - -#: src/Content/Widget.php:61 view/theme/vier/theme.php:200 -msgid "Enter name or interest" -msgstr "Introduzce nombre o intereses" - -#: src/Content/Widget.php:63 view/theme/vier/theme.php:202 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: Robert Morgenstein, Pesca" - -#: src/Content/Widget.php:66 view/theme/vier/theme.php:205 -msgid "Similar Interests" -msgstr "Intereses similares" - -#: src/Content/Widget.php:67 view/theme/vier/theme.php:206 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: src/Content/Widget.php:68 view/theme/vier/theme.php:207 -msgid "Invite Friends" -msgstr "Invitar amigos" - -#: src/Content/Widget.php:71 view/theme/vier/theme.php:210 -msgid "Local Directory" -msgstr "Directorio local" - -#: src/Content/Widget.php:155 -msgid "Protocols" -msgstr "" - -#: src/Content/Widget.php:158 -msgid "All Protocols" -msgstr "" - -#: src/Content/Widget.php:193 -msgid "Saved Folders" -msgstr "Directorios guardados" - -#: src/Content/Widget.php:196 src/Content/Widget.php:236 -msgid "Everything" -msgstr "Todo" - -#: src/Content/Widget.php:233 -msgid "Categories" -msgstr "Categorías" - -#: src/Content/Widget.php:300 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contacto en común" -msgstr[1] "%d contactos en común" - -#: src/Core/ACL.php:285 -msgid "Post to Email" -msgstr "Publicar mediante correo electrónico" - -#: src/Core/ACL.php:291 -msgid "Hide your profile details from unknown viewers?" -msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" - -#: src/Core/ACL.php:290 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado." - -#: src/Core/ACL.php:297 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: src/Core/ACL.php:298 view/theme/vier/config.php:116 -msgid "show" -msgstr "mostrar" - -#: src/Core/ACL.php:299 view/theme/vier/config.php:116 -msgid "don't show" -msgstr "no mostrar" - -#: src/Core/ACL.php:309 -msgid "Close" -msgstr "Cerrado" - -#: src/Core/Authentication.php:89 -msgid "Welcome " -msgstr "Bienvenido " - -#: src/Core/Authentication.php:90 +#: src/App/Authentication.php:390 msgid "Please upload a profile photo." msgstr "Por favor sube una foto para tu perfil." -#: src/Core/Authentication.php:92 -msgid "Welcome back " -msgstr "Bienvenido de nuevo " - -#: src/Core/Console/ArchiveContact.php:66 +#: src/App/Router.php:224 #, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" +msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/Core/Console/ArchiveContact.php:71 -msgid "The contact entries have been archived" +#: src/App/Router.php:226 src/Module/HTTPException/PageNotFound.php:32 +msgid "Page not found." +msgstr "Página no encontrada." + +#: src/Database/DBStructure.php:69 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Core/Console/NewPassword.php:72 -msgid "Enter new password: " -msgstr "" - -#: src/Core/Console/PostUpdate.php:50 +#: src/Database/DBStructure.php:93 #, php-format -msgid "Post update version number has been set to %s." +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nError %d ocurrido durante la actualización de la base de datos:\n%s\n" + +#: src/Database/DBStructure.php:96 +msgid "Errors encountered performing database changes: " +msgstr "Errores encontrados al realizar cambios en la base de datos: " + +#: src/Database/DBStructure.php:296 +msgid "Another database update is currently running." msgstr "" -#: src/Core/Console/PostUpdate.php:58 -msgid "Check for pending update actions." -msgstr "" - -#: src/Core/Console/PostUpdate.php:60 -msgid "Done." -msgstr "" - -#: src/Core/Console/PostUpdate.php:62 -msgid "Execute pending post updates." -msgstr "" - -#: src/Core/Console/PostUpdate.php:68 -msgid "All pending post updates are done." -msgstr "" - -#: src/Core/Installer.php:160 -msgid "" -"The database configuration file \"config/local.config.php\" could not be " -"written. Please use the enclosed text to create a configuration file in your" -" web server root." -msgstr "" - -#: src/Core/Installer.php:176 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." - -#: src/Core/Installer.php:177 src/Module/Install.php:134 -#: src/Module/Install.php:264 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." - -#: src/Core/Installer.php:239 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web." - -#: src/Core/Installer.php:240 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "" - -#: src/Core/Installer.php:244 -msgid "PHP executable path" -msgstr "Dirección al ejecutable PHP" - -#: src/Core/Installer.php:244 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." - -#: src/Core/Installer.php:249 -msgid "Command line PHP" -msgstr "Línea de comandos PHP" - -#: src/Core/Installer.php:258 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)" - -#: src/Core/Installer.php:259 -msgid "Found PHP version: " -msgstr "Versión PHP encontrada:" - -#: src/Core/Installer.php:261 -msgid "PHP cli binary" -msgstr "PHP cli binario" - -#: src/Core/Installer.php:274 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." - -#: src/Core/Installer.php:275 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la entrega de mensajes." - -#: src/Core/Installer.php:280 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: src/Core/Installer.php:312 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" - -#: src/Core/Installer.php:313 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: src/Core/Installer.php:316 -msgid "Generate encryption keys" -msgstr "Generar claves de encriptación" - -#: src/Core/Installer.php:367 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." - -#: src/Core/Installer.php:372 -msgid "Apache mod_rewrite module" -msgstr "Módulo mod_rewrite de Apache" - -#: src/Core/Installer.php:378 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Error: Módulo PDO o MySQLi PHP requerido pero no instalado." - -#: src/Core/Installer.php:383 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Error: El dispositivo MySQL para PDO no está instalado." - -#: src/Core/Installer.php:387 -msgid "PDO or MySQLi PHP module" -msgstr "Módulo PDO o MySQLi PHP" - -#: src/Core/Installer.php:395 -msgid "Error, XML PHP module required but not installed." -msgstr "Error, módulo XML PHP requerido pero no instalado." - -#: src/Core/Installer.php:399 -msgid "XML PHP module" -msgstr "Módulo XML PHP" - -#: src/Core/Installer.php:402 -msgid "libCurl PHP module" -msgstr "Módulo PHP libCurl" - -#: src/Core/Installer.php:403 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." - -#: src/Core/Installer.php:409 -msgid "GD graphics PHP module" -msgstr "Módulo PHP gráficos GD" - -#: src/Core/Installer.php:410 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." - -#: src/Core/Installer.php:416 -msgid "OpenSSL PHP module" -msgstr "Módulo PHP OpenSSL" - -#: src/Core/Installer.php:417 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." - -#: src/Core/Installer.php:423 -msgid "mb_string PHP module" -msgstr "Módulo PHP mb_string" - -#: src/Core/Installer.php:424 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." - -#: src/Core/Installer.php:430 -msgid "iconv PHP module" -msgstr "" - -#: src/Core/Installer.php:431 -msgid "Error: iconv PHP module required but not installed." -msgstr "Error: módulo iconv PHP requerido pero no instalado." - -#: src/Core/Installer.php:437 -msgid "POSIX PHP module" -msgstr "" - -#: src/Core/Installer.php:438 -msgid "Error: POSIX PHP module required but not installed." -msgstr "" - -#: src/Core/Installer.php:444 -msgid "JSON PHP module" -msgstr "" - -#: src/Core/Installer.php:445 -msgid "Error: JSON PHP module required but not installed." -msgstr "" - -#: src/Core/Installer.php:468 -msgid "" -"The web installer needs to be able to create a file called " -"\"local.config.php\" in the \"config\" folder of your web server and it is " -"unable to do so." -msgstr "" - -#: src/Core/Installer.php:469 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas." - -#: src/Core/Installer.php:470 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named local.config.php in your Friendica \"config\" folder." -msgstr "" - -#: src/Core/Installer.php:471 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones." - -#: src/Core/Installer.php:474 -msgid "config/local.config.php is writable" -msgstr "" - -#: src/Core/Installer.php:494 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar." - -#: src/Core/Installer.php:495 -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 "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." - -#: src/Core/Installer.php:496 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." - -#: src/Core/Installer.php:497 -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 "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." - -#: src/Core/Installer.php:500 -msgid "view/smarty3 is writable" -msgstr "Se puede escribir en /view/smarty3" - -#: src/Core/Installer.php:528 -msgid "" -"Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" -" to .htaccess." -msgstr "" - -#: src/Core/Installer.php:530 -msgid "Error message from Curl when fetching" -msgstr "" - -#: src/Core/Installer.php:535 -msgid "Url rewrite is working" -msgstr "Reescribiendo la dirección..." - -#: src/Core/Installer.php:564 -msgid "ImageMagick PHP extension is not installed" -msgstr "No está instalada la extensión ImageMagick PHP" - -#: src/Core/Installer.php:566 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP extension is installed" - -#: src/Core/Installer.php:568 tests/src/Core/InstallerTest.php:319 -#: tests/src/Core/InstallerTest.php:343 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporta GIF" - -#: src/Core/Installer.php:589 -msgid "Could not connect to database." -msgstr "No es posible la conexión con la base de datos." - -#: src/Core/Installer.php:596 -msgid "Database already in use." -msgstr "Base de datos ya se encuentra en uso" - -#: src/Core/L10n.php:356 src/Model/Event.php:394 -msgid "Tuesday" -msgstr "Martes" - -#: src/Core/L10n.php:356 src/Model/Event.php:395 -msgid "Wednesday" -msgstr "Miércoles" - -#: src/Core/L10n.php:356 src/Model/Event.php:396 -msgid "Thursday" -msgstr "Jueves" - -#: src/Core/L10n.php:356 src/Model/Event.php:397 -msgid "Friday" -msgstr "Viernes" - -#: src/Core/L10n.php:356 src/Model/Event.php:398 -msgid "Saturday" -msgstr "Sábado" - -#: src/Core/L10n.php:360 src/Model/Event.php:413 -msgid "January" -msgstr "Enero" - -#: src/Core/L10n.php:360 src/Model/Event.php:414 -msgid "February" -msgstr "Febrero" - -#: src/Core/L10n.php:360 src/Model/Event.php:415 -msgid "March" -msgstr "Marzo" - -#: src/Core/L10n.php:360 src/Model/Event.php:416 -msgid "April" -msgstr "Abril" - -#: src/Core/L10n.php:360 src/Core/L10n.php:379 src/Model/Event.php:404 -#: src/Model/Event.php:417 -msgid "May" -msgstr "Mayo" - -#: src/Core/L10n.php:360 src/Model/Event.php:418 -msgid "June" -msgstr "Junio" - -#: src/Core/L10n.php:360 src/Model/Event.php:419 -msgid "July" -msgstr "Julio" - -#: src/Core/L10n.php:360 src/Model/Event.php:420 -msgid "August" -msgstr "Agosto" - -#: src/Core/L10n.php:360 src/Model/Event.php:421 -msgid "September" -msgstr "Septiembre" - -#: src/Core/L10n.php:360 src/Model/Event.php:422 -msgid "October" -msgstr "Octubre" - -#: src/Core/L10n.php:360 src/Model/Event.php:423 -msgid "November" -msgstr "Noviembre" - -#: src/Core/L10n.php:360 src/Model/Event.php:424 -msgid "December" -msgstr "Diciembre" - -#: src/Core/L10n.php:375 src/Model/Event.php:385 -msgid "Mon" -msgstr "Lun" - -#: src/Core/L10n.php:375 src/Model/Event.php:386 -msgid "Tue" -msgstr "Mar" - -#: src/Core/L10n.php:375 src/Model/Event.php:387 -msgid "Wed" -msgstr "Mie" - -#: src/Core/L10n.php:375 src/Model/Event.php:388 -msgid "Thu" -msgstr "Jue" - -#: src/Core/L10n.php:375 src/Model/Event.php:389 -msgid "Fri" -msgstr "Vie" - -#: src/Core/L10n.php:375 src/Model/Event.php:390 -msgid "Sat" -msgstr "Sab" - -#: src/Core/L10n.php:375 src/Model/Event.php:384 -msgid "Sun" -msgstr "Dom" - -#: src/Core/L10n.php:379 src/Model/Event.php:400 -msgid "Jan" -msgstr "Ene" - -#: src/Core/L10n.php:379 src/Model/Event.php:401 -msgid "Feb" -msgstr "Feb" - -#: src/Core/L10n.php:379 src/Model/Event.php:402 -msgid "Mar" -msgstr "Mar" - -#: src/Core/L10n.php:379 src/Model/Event.php:403 -msgid "Apr" -msgstr "Abr" - -#: src/Core/L10n.php:379 src/Model/Event.php:406 -msgid "Jul" -msgstr "Jul" - -#: src/Core/L10n.php:379 src/Model/Event.php:407 -msgid "Aug" -msgstr "Ago" - -#: src/Core/L10n.php:379 -msgid "Sep" -msgstr "Sep" - -#: src/Core/L10n.php:379 src/Model/Event.php:409 -msgid "Oct" -msgstr "Oct" - -#: src/Core/L10n.php:379 src/Model/Event.php:410 -msgid "Nov" -msgstr "Nov" - -#: src/Core/L10n.php:379 src/Model/Event.php:411 -msgid "Dec" -msgstr "Dec" - -#: src/Core/L10n.php:397 -msgid "poke" -msgstr "tocar" - -#: src/Core/L10n.php:397 -msgid "poked" -msgstr "tocó a" - -#: src/Core/L10n.php:398 -msgid "ping" -msgstr "hacer \"ping\"" - -#: src/Core/L10n.php:398 -msgid "pinged" -msgstr "hizo \"ping\" a" - -#: src/Core/L10n.php:399 -msgid "prod" -msgstr "empujar" - -#: src/Core/L10n.php:399 -msgid "prodded" -msgstr "empujó a" - -#: src/Core/L10n.php:400 -msgid "slap" -msgstr "abofetear" - -#: src/Core/L10n.php:400 -msgid "slapped" -msgstr "abofeteó a" - -#: src/Core/L10n.php:401 -msgid "finger" -msgstr "meter dedo" - -#: src/Core/L10n.php:401 -msgid "fingered" -msgstr "le metió un dedo a" - -#: src/Core/L10n.php:402 -msgid "rebuff" -msgstr "desairar" - -#: src/Core/L10n.php:402 -msgid "rebuffed" -msgstr "desairó a" - -#: src/Core/NotificationsManager.php:171 -msgid "System" -msgstr "Sistema" - -#: src/Core/NotificationsManager.php:261 src/Core/NotificationsManager.php:273 +#: src/Database/DBStructure.php:300 #, php-format -msgid "%s commented on %s's post" -msgstr "%s comentó la publicación de %s" - -#: src/Core/NotificationsManager.php:272 -#, php-format -msgid "%s created a new post" -msgstr "%s creó una nueva publicación" - -#: src/Core/NotificationsManager.php:286 -#, php-format -msgid "%s liked %s's post" -msgstr "A %s le gusta la publicación de %s" - -#: src/Core/NotificationsManager.php:299 -#, php-format -msgid "%s disliked %s's post" -msgstr "A %s no le gusta la publicación de %s" - -#: src/Core/NotificationsManager.php:312 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s está asistiendo al evento %s's" - -#: src/Core/NotificationsManager.php:325 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s no está asistiendo al evento %s's" - -#: src/Core/NotificationsManager.php:338 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s podría asistir al evento %s's" - -#: src/Core/NotificationsManager.php:371 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s es ahora es amigo de %s" - -#: src/Core/NotificationsManager.php:637 -msgid "Friend Suggestion" -msgstr "Propuestas de amistad" - -#: src/Core/NotificationsManager.php:671 -msgid "Friend/Connect Request" -msgstr "Solicitud de Amistad/Conexión" - -#: src/Core/NotificationsManager.php:671 -msgid "New Follower" -msgstr "Nuevo seguidor" - -#: src/Core/System.php:133 -msgid "Error 400 - Bad Request" +msgid "%s: Database update" msgstr "" -#: src/Core/System.php:134 -msgid "Error 401 - Unauthorized" +#: src/Database/DBStructure.php:600 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: actualizando %s tabla." + +#: src/Database/Database.php:659 src/Database/Database.php:762 +#, php-format +msgid "Database error %d \"%s\" at \"%s\"" msgstr "" -#: src/Core/System.php:135 -msgid "Error 403 - Forbidden" -msgstr "" - -#: src/Core/System.php:136 -msgid "Error 404 - Not Found" -msgstr "" - -#: src/Core/System.php:137 -msgid "Error 500 - Internal Server Error" -msgstr "" - -#: src/Core/System.php:138 -msgid "Error 503 - Service Unavailable" -msgstr "" - -#: src/Core/System.php:146 +#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:56 msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." +"Friendica can't display this page at the moment, please contact the " +"administrator." msgstr "" -#: src/Core/System.php:147 -msgid "" -"Authentication is required and has failed or has not yet been provided." +#: src/Core/Renderer.php:143 +msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/System.php:148 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." +#: src/Core/Renderer.php:177 +msgid "template engine is not registered!" msgstr "" -#: src/Core/System.php:149 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "" - -#: src/Core/System.php:150 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "" - -#: src/Core/System.php:151 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "" - -#: src/Core/Update.php:163 +#: src/Core/Update.php:215 #, php-format msgid "Update %s failed. See error logs." msgstr "Falló la actualización de %s. Mira los registros de errores." -#: src/Core/Update.php:219 +#: src/Core/Update.php:280 #, php-format msgid "" "\n" @@ -8221,573 +3495,6308 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:286 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "El mensaje de error es\n[pre]%s[/pre]" -#: src/Core/Update.php:254 +#: src/Core/Update.php:290 src/Core/Update.php:326 +msgid "[Friendica Notify] Database update" +msgstr "" + +#: src/Core/Update.php:320 #, php-format msgid "" "\n" "\t\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Core/UserImport.php:101 +#: src/Core/ACL.php:155 +msgid "Yourself" +msgstr "" + +#: src/Core/ACL.php:184 src/Module/Profile/Contacts.php:123 +#: src/Module/PermissionTooltip.php:76 src/Module/PermissionTooltip.php:98 +#: src/Module/Contact.php:810 src/Content/Widget.php:241 +msgid "Followers" +msgstr "" + +#: src/Core/ACL.php:191 src/Module/PermissionTooltip.php:82 +#: src/Module/PermissionTooltip.php:104 +msgid "Mutuals" +msgstr "" + +#: src/Core/ACL.php:281 +msgid "Post to Email" +msgstr "Publicar mediante correo electrónico" + +#: src/Core/ACL.php:308 +msgid "Public" +msgstr "" + +#: src/Core/ACL.php:309 +msgid "" +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." +msgstr "" + +#: src/Core/ACL.php:310 +msgid "Limited/Private" +msgstr "" + +#: src/Core/ACL.php:311 +msgid "" +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." +msgstr "" + +#: src/Core/ACL.php:312 +msgid "Show to:" +msgstr "" + +#: src/Core/ACL.php:313 +msgid "Except to:" +msgstr "" + +#: src/Core/ACL.php:316 +msgid "Connectors" +msgstr "" + +#: src/Core/Installer.php:179 +msgid "" +"The database configuration file \"config/local.config.php\" could not be " +"written. Please use the enclosed text to create a configuration file in your" +" web server root." +msgstr "" + +#: src/Core/Installer.php:198 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." + +#: src/Core/Installer.php:199 src/Module/Install.php:191 +#: src/Module/Install.php:345 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." + +#: src/Core/Installer.php:260 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web." + +#: src/Core/Installer.php:261 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" +msgstr "" + +#: src/Core/Installer.php:266 +msgid "PHP executable path" +msgstr "Dirección al ejecutable PHP" + +#: src/Core/Installer.php:266 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." + +#: src/Core/Installer.php:271 +msgid "Command line PHP" +msgstr "Línea de comandos PHP" + +#: src/Core/Installer.php:280 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)" + +#: src/Core/Installer.php:281 +msgid "Found PHP version: " +msgstr "Versión PHP encontrada:" + +#: src/Core/Installer.php:283 +msgid "PHP cli binary" +msgstr "PHP cli binario" + +#: src/Core/Installer.php:296 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." + +#: src/Core/Installer.php:297 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la entrega de mensajes." + +#: src/Core/Installer.php:302 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:334 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" + +#: src/Core/Installer.php:335 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: src/Core/Installer.php:338 +msgid "Generate encryption keys" +msgstr "Generar claves de encriptación" + +#: src/Core/Installer.php:390 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." + +#: src/Core/Installer.php:395 +msgid "Apache mod_rewrite module" +msgstr "Módulo mod_rewrite de Apache" + +#: src/Core/Installer.php:401 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Error: Módulo PDO o MySQLi PHP requerido pero no instalado." + +#: src/Core/Installer.php:406 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Error: El dispositivo MySQL para PDO no está instalado." + +#: src/Core/Installer.php:410 +msgid "PDO or MySQLi PHP module" +msgstr "Módulo PDO o MySQLi PHP" + +#: src/Core/Installer.php:418 +msgid "Error, XML PHP module required but not installed." +msgstr "Error, módulo XML PHP requerido pero no instalado." + +#: src/Core/Installer.php:422 +msgid "XML PHP module" +msgstr "Módulo XML PHP" + +#: src/Core/Installer.php:425 +msgid "libCurl PHP module" +msgstr "Módulo PHP libCurl" + +#: src/Core/Installer.php:426 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." + +#: src/Core/Installer.php:432 +msgid "GD graphics PHP module" +msgstr "Módulo PHP gráficos GD" + +#: src/Core/Installer.php:433 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." + +#: src/Core/Installer.php:439 +msgid "OpenSSL PHP module" +msgstr "Módulo PHP OpenSSL" + +#: src/Core/Installer.php:440 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." + +#: src/Core/Installer.php:446 +msgid "mb_string PHP module" +msgstr "Módulo PHP mb_string" + +#: src/Core/Installer.php:447 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." + +#: src/Core/Installer.php:453 +msgid "iconv PHP module" +msgstr "" + +#: src/Core/Installer.php:454 +msgid "Error: iconv PHP module required but not installed." +msgstr "Error: módulo iconv PHP requerido pero no instalado." + +#: src/Core/Installer.php:460 +msgid "POSIX PHP module" +msgstr "" + +#: src/Core/Installer.php:461 +msgid "Error: POSIX PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:467 +msgid "JSON PHP module" +msgstr "" + +#: src/Core/Installer.php:468 +msgid "Error: JSON PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:474 +msgid "File Information PHP module" +msgstr "" + +#: src/Core/Installer.php:475 +msgid "Error: File Information PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:498 +msgid "" +"The web installer needs to be able to create a file called " +"\"local.config.php\" in the \"config\" folder of your web server and it is " +"unable to do so." +msgstr "" + +#: src/Core/Installer.php:499 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas." + +#: src/Core/Installer.php:500 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named local.config.php in your Friendica \"config\" folder." +msgstr "" + +#: src/Core/Installer.php:501 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones." + +#: src/Core/Installer.php:504 +msgid "config/local.config.php is writable" +msgstr "" + +#: src/Core/Installer.php:524 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar." + +#: src/Core/Installer.php:525 +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 "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." + +#: src/Core/Installer.php:526 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." + +#: src/Core/Installer.php:527 +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 "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." + +#: src/Core/Installer.php:530 +msgid "view/smarty3 is writable" +msgstr "Se puede escribir en /view/smarty3" + +#: src/Core/Installer.php:559 +msgid "" +"Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist" +" to .htaccess." +msgstr "" + +#: src/Core/Installer.php:561 +msgid "Error message from Curl when fetching" +msgstr "" + +#: src/Core/Installer.php:566 +msgid "Url rewrite is working" +msgstr "Reescribiendo la dirección..." + +#: src/Core/Installer.php:595 +msgid "ImageMagick PHP extension is not installed" +msgstr "No está instalada la extensión ImageMagick PHP" + +#: src/Core/Installer.php:597 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP extension is installed" + +#: src/Core/Installer.php:599 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supporta GIF" + +#: src/Core/Installer.php:621 +msgid "Database already in use." +msgstr "Base de datos ya se encuentra en uso" + +#: src/Core/Installer.php:626 +msgid "Could not connect to database." +msgstr "No es posible la conexión con la base de datos." + +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:413 +msgid "Monday" +msgstr "Lunes" + +#: src/Core/L10n.php:371 src/Model/Event.php:414 +msgid "Tuesday" +msgstr "Martes" + +#: src/Core/L10n.php:371 src/Model/Event.php:415 +msgid "Wednesday" +msgstr "Miércoles" + +#: src/Core/L10n.php:371 src/Model/Event.php:416 +msgid "Thursday" +msgstr "Jueves" + +#: src/Core/L10n.php:371 src/Model/Event.php:417 +msgid "Friday" +msgstr "Viernes" + +#: src/Core/L10n.php:371 src/Model/Event.php:418 +msgid "Saturday" +msgstr "Sábado" + +#: src/Core/L10n.php:371 src/Module/Settings/Display.php:171 +#: src/Model/Event.php:412 +msgid "Sunday" +msgstr "Domingo" + +#: src/Core/L10n.php:375 src/Model/Event.php:433 +msgid "January" +msgstr "Enero" + +#: src/Core/L10n.php:375 src/Model/Event.php:434 +msgid "February" +msgstr "Febrero" + +#: src/Core/L10n.php:375 src/Model/Event.php:435 +msgid "March" +msgstr "Marzo" + +#: src/Core/L10n.php:375 src/Model/Event.php:436 +msgid "April" +msgstr "Abril" + +#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:424 +msgid "May" +msgstr "Mayo" + +#: src/Core/L10n.php:375 src/Model/Event.php:437 +msgid "June" +msgstr "Junio" + +#: src/Core/L10n.php:375 src/Model/Event.php:438 +msgid "July" +msgstr "Julio" + +#: src/Core/L10n.php:375 src/Model/Event.php:439 +msgid "August" +msgstr "Agosto" + +#: src/Core/L10n.php:375 src/Model/Event.php:440 +msgid "September" +msgstr "Septiembre" + +#: src/Core/L10n.php:375 src/Model/Event.php:441 +msgid "October" +msgstr "Octubre" + +#: src/Core/L10n.php:375 src/Model/Event.php:442 +msgid "November" +msgstr "Noviembre" + +#: src/Core/L10n.php:375 src/Model/Event.php:443 +msgid "December" +msgstr "Diciembre" + +#: src/Core/L10n.php:391 src/Model/Event.php:405 +msgid "Mon" +msgstr "Lun" + +#: src/Core/L10n.php:391 src/Model/Event.php:406 +msgid "Tue" +msgstr "Mar" + +#: src/Core/L10n.php:391 src/Model/Event.php:407 +msgid "Wed" +msgstr "Mie" + +#: src/Core/L10n.php:391 src/Model/Event.php:408 +msgid "Thu" +msgstr "Jue" + +#: src/Core/L10n.php:391 src/Model/Event.php:409 +msgid "Fri" +msgstr "Vie" + +#: src/Core/L10n.php:391 src/Model/Event.php:410 +msgid "Sat" +msgstr "Sab" + +#: src/Core/L10n.php:391 src/Model/Event.php:404 +msgid "Sun" +msgstr "Dom" + +#: src/Core/L10n.php:395 src/Model/Event.php:420 +msgid "Jan" +msgstr "Ene" + +#: src/Core/L10n.php:395 src/Model/Event.php:421 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:395 src/Model/Event.php:422 +msgid "Mar" +msgstr "Mar" + +#: src/Core/L10n.php:395 src/Model/Event.php:423 +msgid "Apr" +msgstr "Abr" + +#: src/Core/L10n.php:395 src/Model/Event.php:425 +msgid "Jun" +msgstr "Jun" + +#: src/Core/L10n.php:395 src/Model/Event.php:426 +msgid "Jul" +msgstr "Jul" + +#: src/Core/L10n.php:395 src/Model/Event.php:427 +msgid "Aug" +msgstr "Ago" + +#: src/Core/L10n.php:395 +msgid "Sep" +msgstr "Sep" + +#: src/Core/L10n.php:395 src/Model/Event.php:429 +msgid "Oct" +msgstr "Oct" + +#: src/Core/L10n.php:395 src/Model/Event.php:430 +msgid "Nov" +msgstr "Nov" + +#: src/Core/L10n.php:395 src/Model/Event.php:431 +msgid "Dec" +msgstr "Dec" + +#: src/Core/L10n.php:414 +msgid "poke" +msgstr "tocar" + +#: src/Core/L10n.php:414 +msgid "poked" +msgstr "tocó a" + +#: src/Core/L10n.php:415 +msgid "ping" +msgstr "hacer \"ping\"" + +#: src/Core/L10n.php:415 +msgid "pinged" +msgstr "hizo \"ping\" a" + +#: src/Core/L10n.php:416 +msgid "prod" +msgstr "empujar" + +#: src/Core/L10n.php:416 +msgid "prodded" +msgstr "empujó a" + +#: src/Core/L10n.php:417 +msgid "slap" +msgstr "abofetear" + +#: src/Core/L10n.php:417 +msgid "slapped" +msgstr "abofeteó a" + +#: src/Core/L10n.php:418 +msgid "finger" +msgstr "meter dedo" + +#: src/Core/L10n.php:418 +msgid "fingered" +msgstr "le metió un dedo a" + +#: src/Core/L10n.php:419 +msgid "rebuff" +msgstr "desairar" + +#: src/Core/L10n.php:419 +msgid "rebuffed" +msgstr "desairó a" + +#: src/Core/UserImport.php:126 msgid "Error decoding account file" msgstr "Error decodificando el archivo de cuenta" -#: src/Core/UserImport.php:107 +#: src/Core/UserImport.php:132 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " -#: src/Core/UserImport.php:115 +#: src/Core/UserImport.php:140 #, php-format msgid "User '%s' already exists on this server!" msgstr "La cuenta '%s' ya existe en este servidor!" -#: src/Core/UserImport.php:151 +#: src/Core/UserImport.php:176 msgid "User creation error" msgstr "Error al crear la cuenta" -#: src/Core/UserImport.php:169 -msgid "User profile creation error" -msgstr "Error de creación del perfil de la cuenta" - -#: src/Core/UserImport.php:213 +#: src/Core/UserImport.php:221 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d contactos no encontrado" msgstr[1] "%d contactos no importado" -#: src/Core/UserImport.php:278 +#: src/Core/UserImport.php:274 +msgid "User profile creation error" +msgstr "Error de creación del perfil de la cuenta" + +#: src/Core/UserImport.php:330 msgid "Done. You can now login with your username and password" msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña." -#: src/Database/DBStructure.php:45 -msgid "There are no tables on MyISAM." -msgstr "No hay tablas en MyISAM" - -#: src/Database/DBStructure.php:69 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nError %d ocurrido durante la actualización de la base de datos:\n%s\n" - -#: src/Database/DBStructure.php:72 -msgid "Errors encountered performing database changes: " -msgstr "Errores encontrados al realizar cambios en la base de datos: " - -#: src/Database/DBStructure.php:259 -#, php-format -msgid "%s: Database update" -msgstr "" - -#: src/Database/DBStructure.php:520 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: actualizando %s tabla." - -#: src/LegacyModule.php:29 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:994 -msgid "Drop Contact" -msgstr "Eliminar contacto" +#: src/Worker/Delivery.php:551 +msgid "(no subject)" +msgstr "(sin asunto)" -#: src/Model/Contact.php:1460 -msgid "Organisation" -msgstr "Organización" - -#: src/Model/Contact.php:1464 -msgid "News" -msgstr "Noticias" - -#: src/Model/Contact.php:1468 -msgid "Forum" -msgstr "Foro" - -#: src/Model/Contact.php:1650 -msgid "Connect URL missing." -msgstr "Falta el conector URL." - -#: src/Model/Contact.php:1659 +#: src/Object/EMail/ItemCCEMail.php:39 +#, php-format msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." + +#: src/Object/EMail/ItemCCEMail.php:41 +#, php-format +msgid "You may visit them online at %s" +msgstr "Los puedes visitar en línea en %s" + +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." + +#: src/Object/EMail/ItemCCEMail.php:46 +#, php-format +msgid "%s posted an update." +msgstr "%s ha publicado una actualización." + +#: src/Object/Post.php:147 +msgid "This entry was edited" +msgstr "Esta entrada fue editada" + +#: src/Object/Post.php:174 +msgid "Private Message" +msgstr "Mensaje privado" + +#: src/Object/Post.php:213 +msgid "pinned item" msgstr "" -#: src/Model/Contact.php:1698 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." +#: src/Object/Post.php:218 +msgid "Delete locally" +msgstr "" -#: src/Model/Contact.php:1699 src/Model/Contact.php:1712 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." +#: src/Object/Post.php:221 +msgid "Delete globally" +msgstr "" -#: src/Model/Contact.php:1710 -msgid "The profile address specified does not provide adequate information." -msgstr "La dirección del perfil especificado no proporciona información adecuada." +#: src/Object/Post.php:221 +msgid "Remove locally" +msgstr "" -#: src/Model/Contact.php:1715 -msgid "An author or name was not found." -msgstr "No se ha encontrado un autor o nombre." +#: src/Object/Post.php:235 +msgid "save to folder" +msgstr "grabado en directorio" -#: src/Model/Contact.php:1718 -msgid "No browser URL could be matched to this address." -msgstr "Ninguna dirección concuerda con la suministrada." +#: src/Object/Post.php:270 +msgid "I will attend" +msgstr "Voy a estar presente" -#: src/Model/Contact.php:1721 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." +#: src/Object/Post.php:270 +msgid "I will not attend" +msgstr "No voy a estar presente" -#: src/Model/Contact.php:1722 -msgid "Use mailto: in front of address to force email check." -msgstr "Escribe mailto: al principio de la dirección para forzar el envío." +#: src/Object/Post.php:270 +msgid "I might attend" +msgstr "Puede que voy a estar presente" -#: src/Model/Contact.php:1728 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." +#: src/Object/Post.php:300 +msgid "ignore thread" +msgstr "ignorar publicación" -#: src/Model/Contact.php:1733 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." +#: src/Object/Post.php:301 +msgid "unignore thread" +msgstr "revertir ignorar publicacion" -#: src/Model/Contact.php:1784 -msgid "Unable to retrieve contact information." -msgstr "No ha sido posible recibir la información del contacto." +#: src/Object/Post.php:302 +msgid "toggle ignore status" +msgstr "cambiar estatus de observación" -#: src/Model/Event.php:59 src/Model/Event.php:76 src/Model/Event.php:433 -#: src/Model/Event.php:908 -msgid "Starts:" -msgstr "Inicio:" +#: src/Object/Post.php:314 +msgid "pin" +msgstr "" -#: src/Model/Event.php:62 src/Model/Event.php:82 src/Model/Event.php:434 -#: src/Model/Event.php:912 -msgid "Finishes:" -msgstr "Final:" +#: src/Object/Post.php:315 +msgid "unpin" +msgstr "" -#: src/Model/Event.php:382 -msgid "all-day" -msgstr "todo el día" +#: src/Object/Post.php:316 +msgid "toggle pin status" +msgstr "" -#: src/Model/Event.php:405 -msgid "Jun" -msgstr "Jun" +#: src/Object/Post.php:319 +msgid "pinned" +msgstr "" -#: src/Model/Event.php:408 -msgid "Sept" -msgstr "Sept" +#: src/Object/Post.php:326 +msgid "add star" +msgstr "Añadir estrella" -#: src/Model/Event.php:431 -msgid "No events to display" -msgstr "No hay eventos a mostrar" +#: src/Object/Post.php:327 +msgid "remove star" +msgstr "Quitar estrella" -#: src/Model/Event.php:555 -msgid "l, F j" -msgstr "l, F j" +#: src/Object/Post.php:328 +msgid "toggle star status" +msgstr "Añadir a destacados" -#: src/Model/Event.php:586 -msgid "Edit event" -msgstr "Editar evento" +#: src/Object/Post.php:331 +msgid "starred" +msgstr "marcados con estrellas" -#: src/Model/Event.php:587 -msgid "Duplicate event" -msgstr "Duplicar evento" +#: src/Object/Post.php:335 +msgid "add tag" +msgstr "añadir etiqueta" -#: src/Model/Event.php:588 -msgid "Delete event" -msgstr "Borrar evento" +#: src/Object/Post.php:345 +msgid "like" +msgstr "me gusta" -#: src/Model/Event.php:620 src/Model/Item.php:3525 src/Model/Item.php:3532 -msgid "link to source" -msgstr "Enlace al original" +#: src/Object/Post.php:346 +msgid "dislike" +msgstr "no me gusta" -#: src/Model/Event.php:841 -msgid "D g:i A" -msgstr "D g:i A" +#: src/Object/Post.php:348 +msgid "Share this" +msgstr "Compartir esto" -#: src/Model/Event.php:842 -msgid "g:i A" -msgstr "g:i A" +#: src/Object/Post.php:348 +msgid "share" +msgstr "compartir" -#: src/Model/Event.php:927 src/Model/Event.php:929 -msgid "Show map" -msgstr "Mostrar mapa" - -#: src/Model/Event.php:928 -msgid "Hide map" -msgstr "Ocultar mapa" - -#: src/Model/Event.php:1018 +#: src/Object/Post.php:400 #, php-format -msgid "%s's birthday" -msgstr "Cumpleaños de %s" +msgid "%s (Received %s)" +msgstr "" -#: src/Model/Event.php:1019 +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "" + +#: src/Object/Post.php:405 +msgid "remote comment" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pushed" +msgstr "" + +#: src/Object/Post.php:415 +msgid "Pulled" +msgstr "" + +#: src/Object/Post.php:442 +msgid "to" +msgstr "a" + +#: src/Object/Post.php:443 +msgid "via" +msgstr "vía" + +#: src/Object/Post.php:444 +msgid "Wall-to-Wall" +msgstr "Muro-A-Muro" + +#: src/Object/Post.php:445 +msgid "via Wall-To-Wall:" +msgstr "via Muro-A-Muro:" + +#: src/Object/Post.php:481 #, php-format -msgid "Happy Birthday %s" -msgstr "Feliz cumpleaños %s" +msgid "Reply to %s" +msgstr "" -#: src/Model/FileTag.php:255 -msgid "Item filed" -msgstr "Elemento archivado" +#: src/Object/Post.php:484 +msgid "More" +msgstr "" -#: src/Model/Group.php:43 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." +#: src/Object/Post.php:500 +msgid "Notifier task is pending" +msgstr "" -#: src/Model/Group.php:329 -msgid "Default privacy group for new contacts" -msgstr "Grupo por defecto para nuevos contactos" +#: src/Object/Post.php:501 +msgid "Delivery to remote servers is pending" +msgstr "" -#: src/Model/Group.php:362 -msgid "Everybody" -msgstr "Todo el mundo" +#: src/Object/Post.php:502 +msgid "Delivery to remote servers is underway" +msgstr "" -#: src/Model/Group.php:382 -msgid "edit" -msgstr "editar" +#: src/Object/Post.php:503 +msgid "Delivery to remote servers is mostly done" +msgstr "" -#: src/Model/Group.php:411 -msgid "Edit group" -msgstr "Editar grupo" +#: src/Object/Post.php:504 +msgid "Delivery to remote servers is done" +msgstr "" -#: src/Model/Group.php:414 -msgid "Create a new group" -msgstr "Crear un nuevo grupo" +#: src/Object/Post.php:524 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" -#: src/Model/Group.php:416 -msgid "Edit groups" -msgstr "Editar grupo" +#: src/Object/Post.php:525 +msgid "Show more" +msgstr "" -#: src/Model/Item.php:3263 -msgid "activity" -msgstr "Actividad" +#: src/Object/Post.php:526 +msgid "Show fewer" +msgstr "" -#: src/Model/Item.php:3265 src/Object/Post.php:441 src/Object/Post.php:453 +#: src/Object/Post.php:537 src/Model/Item.php:3336 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "Comentario" -#: src/Model/Item.php:3268 +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "No se ha encontrado ninguna entrada de contacto para esta URL (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "El contacto ha sido blockeado del nodo" + +#: src/Console/User.php:158 +msgid "Enter new password: " +msgstr "" + +#: src/Console/User.php:193 +msgid "Enter user name: " +msgstr "" + +#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 +#: src/Console/User.php:300 +msgid "Enter user nickname: " +msgstr "" + +#: src/Console/User.php:209 +msgid "Enter user email address: " +msgstr "" + +#: src/Console/User.php:217 +msgid "Enter a language (optional): " +msgstr "" + +#: src/Console/User.php:255 +msgid "User is not pending." +msgstr "" + +#: src/Console/User.php:313 +msgid "User has already been marked for deletion." +msgstr "" + +#: src/Console/User.php:318 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "" + +#: src/Console/User.php:320 +msgid "Deletion aborted." +msgstr "" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "" + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "" + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "" + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "" + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "" + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "" + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Ciudad de origen:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Preferencia sexual:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Ideas políticas:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Creencias religiosas:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Me gusta:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Título/Descrición:" + +#: src/Repository/ProfileField.php:285 src/Module/Admin/Summary.php:231 +msgid "Summary" +msgstr "Resumen" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Gustos musicales" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Libros, literatura" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Televisión" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Películas/baile/cultura/entretenimiento" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Aficiones/Intereses" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Amor/Romance" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Trabajo/ocupación" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "Escuela/estudios" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Informacioń de contacto y Redes sociales" + +#: src/App.php:310 +msgid "No system theme config value set." +msgstr "" + +#: src/Factory/Notification/Introduction.php:128 +msgid "Friend Suggestion" +msgstr "Propuestas de amistad" + +#: src/Factory/Notification/Introduction.php:158 +msgid "Friend/Connect Request" +msgstr "Solicitud de Amistad/Conexión" + +#: src/Factory/Notification/Introduction.php:158 +msgid "New Follower" +msgstr "Nuevo seguidor" + +#: src/Factory/Notification/Notification.php:103 +#, php-format +msgid "%s created a new post" +msgstr "%s creó una nueva publicación" + +#: src/Factory/Notification/Notification.php:104 +#: src/Factory/Notification/Notification.php:366 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s comentó la publicación de %s" + +#: src/Factory/Notification/Notification.php:130 +#, php-format +msgid "%s liked %s's post" +msgstr "A %s le gusta la publicación de %s" + +#: src/Factory/Notification/Notification.php:141 +#, php-format +msgid "%s disliked %s's post" +msgstr "A %s no le gusta la publicación de %s" + +#: src/Factory/Notification/Notification.php:152 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s está asistiendo al evento %s's" + +#: src/Factory/Notification/Notification.php:163 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s no está asistiendo al evento %s's" + +#: src/Factory/Notification/Notification.php:174 +#, php-format +msgid "%s may attending %s's event" +msgstr "" + +#: src/Factory/Notification/Notification.php:201 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s es ahora es amigo de %s" + +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Notificaciones de Red" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Notificaciones personales" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Notificaciones de Inicio" + +#: src/Module/Notifications/Notifications.php:133 +#: src/Module/Notifications/Introductions.php:195 +#, php-format +msgid "No more %s notifications." +msgstr "No más notificaciones de %s." + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Mostrar no leído" + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Mostrar todo" + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "" + +#: src/Module/Notifications/Introductions.php:52 +#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:267 +msgid "Notifications" +msgstr "Notificaciones" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Show Ignored Requests" +msgstr "Mostrar peticiones ignoradas" + +#: src/Module/Notifications/Introductions.php:76 +msgid "Hide Ignored Requests" +msgstr "Ocultar peticiones ignoradas" + +#: src/Module/Notifications/Introductions.php:90 +#: src/Module/Notifications/Introductions.php:157 +msgid "Notification type:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:93 +msgid "Suggested by:" +msgstr "" + +#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:604 +msgid "Hide this contact from others" +msgstr "Ocultar este contacto a los demás." + +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Admin/Users.php:251 src/Model/Contact.php:1185 +msgid "Approve" +msgstr "Aprobar" + +#: src/Module/Notifications/Introductions.php:118 +msgid "Claims to be known to you: " +msgstr "Dice conocerte: " + +#: src/Module/Notifications/Introductions.php:125 +msgid "Shall your connection be bidirectional or not?" +msgstr "¿Su conexión debe ser bidireccional o no?" + +#: src/Module/Notifications/Introductions.php:126 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." + +#: src/Module/Notifications/Introductions.php:127 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." + +#: src/Module/Notifications/Introductions.php:129 +msgid "Friend" +msgstr "Amigo" + +#: src/Module/Notifications/Introductions.php:130 +msgid "Subscriber" +msgstr "Suscriptor" + +#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:620 +#: src/Model/Profile.php:368 +msgid "About:" +msgstr "Acerca de:" + +#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:320 +#: src/Model/Profile.php:460 +msgid "Network:" +msgstr "Red:" + +#: src/Module/Notifications/Introductions.php:194 +msgid "No introductions." +msgstr "Sin presentaciones." + +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" +msgstr "" + +#: src/Module/Security/Logout.php:53 +msgid "Logged out." +msgstr "Sesión finalizada" + +#: src/Module/Security/TwoFactor/Verify.php:61 +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 +#: src/Module/Settings/TwoFactor/Index.php:105 +msgid "Two-factor authentication" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:81 +msgid "" +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:84 +#: src/Module/Security/TwoFactor/Recovery.php:85 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:85 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:86 +msgid "Verify code and complete login" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:60 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:84 +msgid "" +"

You can enter one of your one-time recovery codes in case you lost access" +" to your mobile device.

" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "" + +#: src/Module/Security/Login.php:101 +msgid "Create a New Account" +msgstr "Crear una nueva cuenta" + +#: src/Module/Security/Login.php:102 src/Module/Register.php:155 +#: src/Content/Nav.php:205 +msgid "Register" +msgstr "Registrarse" + +#: src/Module/Security/Login.php:126 +msgid "Your OpenID: " +msgstr "" + +#: src/Module/Security/Login.php:129 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "" + +#: src/Module/Security/Login.php:131 +msgid "Or login using OpenID: " +msgstr "O inicia sesión usando OpenID: " + +#: src/Module/Security/Login.php:141 src/Content/Nav.php:168 +msgid "Logout" +msgstr "Salir" + +#: src/Module/Security/Login.php:142 src/Module/Bookmarklet.php:46 +#: src/Content/Nav.php:170 +msgid "Login" +msgstr "Acceder" + +#: src/Module/Security/Login.php:145 +msgid "Password: " +msgstr "Contraseña: " + +#: src/Module/Security/Login.php:146 +msgid "Remember me" +msgstr "Recordarme" + +#: src/Module/Security/Login.php:155 +msgid "Forgot your password?" +msgstr "¿Olvidaste la contraseña?" + +#: src/Module/Security/Login.php:158 +msgid "Website Terms of Service" +msgstr "Términos de uso del sitio" + +#: src/Module/Security/Login.php:159 +msgid "terms of service" +msgstr "Términos de uso" + +#: src/Module/Security/Login.php:161 +msgid "Website Privacy Policy" +msgstr "Política de privacidad del sitio" + +#: src/Module/Security/Login.php:162 +msgid "privacy policy" +msgstr "Política de privacidad" + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "" + +#: src/Module/Security/OpenID.php:94 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "" + +#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 +#: src/Model/Event.php:862 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Conversión horária" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "Tiempo UTC: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Zona horaria actual: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Zona horaria local convertida: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Por favor, selecciona tu zona horaria:" + +#: src/Module/Debug/Babel.php:54 +msgid "Source input" +msgstr "" + +#: src/Module/Debug/Babel.php:60 +msgid "BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:66 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:71 +msgid "BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:77 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:83 +msgid "BBCode::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:89 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:93 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:99 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:105 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:113 +msgid "Item Body" +msgstr "" + +#: src/Module/Debug/Babel.php:117 +msgid "Item Tags" +msgstr "" + +#: src/Module/Debug/Babel.php:123 +msgid "PageInfo::appendToBody" +msgstr "" + +#: src/Module/Debug/Babel.php:128 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:132 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:139 +msgid "Source input (Diaspora format)" +msgstr "" + +#: src/Module/Debug/Babel.php:148 +msgid "Source input (Markdown)" +msgstr "" + +#: src/Module/Debug/Babel.php:154 +msgid "Markdown::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:159 +msgid "Markdown::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:165 +msgid "Markdown::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:172 +msgid "Raw HTML input" +msgstr "" + +#: src/Module/Debug/Babel.php:177 +msgid "HTML Input" +msgstr "" + +#: src/Module/Debug/Babel.php:183 +msgid "HTML::toBBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:189 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "" + +#: src/Module/Debug/Babel.php:194 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "" + +#: src/Module/Debug/Babel.php:200 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:206 +msgid "HTML::toMarkdown" +msgstr "" + +#: src/Module/Debug/Babel.php:212 +msgid "HTML::toPlaintext" +msgstr "" + +#: src/Module/Debug/Babel.php:218 +msgid "HTML::toPlaintext (compact)" +msgstr "" + +#: src/Module/Debug/Babel.php:228 +msgid "Decoded post" +msgstr "" + +#: src/Module/Debug/Babel.php:252 +msgid "Post array before expand entities" +msgstr "" + +#: src/Module/Debug/Babel.php:259 +msgid "Post converted" +msgstr "" + +#: src/Module/Debug/Babel.php:264 +msgid "Converted body" +msgstr "" + +#: src/Module/Debug/Babel.php:270 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "" + +#: src/Module/Debug/Babel.php:280 +msgid "Source text" +msgstr "" + +#: src/Module/Debug/Babel.php:281 +msgid "BBCode" +msgstr "" + +#: src/Module/Debug/Babel.php:282 src/Content/ContactSelector.php:103 +msgid "Diaspora" +msgstr "Diaspora*" + +#: src/Module/Debug/Babel.php:283 +msgid "Markdown" +msgstr "" + +#: src/Module/Debug/Babel.php:284 +msgid "HTML" +msgstr "" + +#: src/Module/Debug/Babel.php:286 +msgid "Twitter Source" +msgstr "" + +#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Sólo los usuarios registrados pueden realizar una exploración." + +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "" + +#: src/Module/Debug/ActivityPubConversion.php:138 +msgid "Source activity" +msgstr "" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:38 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "" + +#: src/Module/Debug/Probe.php:54 +msgid "Lookup address" +msgstr "" + +#: src/Module/Profile/Status.php:61 src/Module/Profile/Status.php:64 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Profile.php:323 +#: src/Protocol/OStatus.php:1276 src/Protocol/Feed.php:765 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Status.php:62 src/Module/Profile/Profile.php:321 +#: src/Protocol/OStatus.php:1280 src/Protocol/Feed.php:769 +#, php-format +msgid "%s's posts" +msgstr "" + +#: src/Module/Profile/Status.php:63 src/Module/Profile/Profile.php:322 +#: src/Protocol/OStatus.php:1283 src/Protocol/Feed.php:772 +#, php-format +msgid "%s's comments" +msgstr "" + +#: src/Module/Profile/Contacts.php:93 +msgid "No contacts." +msgstr "Ningún contacto." + +#: src/Module/Profile/Contacts.php:109 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Contacts.php:110 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Contacts.php:113 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Contacts.php:122 +msgid "All contacts" +msgstr "" + +#: src/Module/Profile/Contacts.php:124 src/Module/Contact.php:811 +#: src/Content/Widget.php:242 +msgid "Following" +msgstr "" + +#: src/Module/Profile/Contacts.php:125 src/Module/Contact.php:812 +#: src/Content/Widget.php:243 +msgid "Mutual friends" +msgstr "" + +#: src/Module/Profile/Profile.php:135 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "" + +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "j F, Y" + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "j F" + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Fecha de nacimiento:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Edad: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:618 +#: src/Model/Profile.php:369 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 +#: src/Model/Profile.php:367 +msgid "Homepage:" +msgstr "Página de inicio:" + +#: src/Module/Profile/Profile.php:229 +msgid "Forums:" +msgstr "Foros:" + +#: src/Module/Profile/Profile.php:240 +msgid "View profile as:" +msgstr "" + +#: src/Module/Profile/Profile.php:250 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:346 +msgid "Edit profile" +msgstr "Editar perfil" + +#: src/Module/Profile/Profile.php:257 +msgid "View as" +msgstr "" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "" + +#: src/Module/Register.php:101 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "" + +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." + +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Tu OpenID (opcional):" + +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "¿Incluir tu perfil en el directorio de miembros?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Nota para el administrador" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Sitio solo accesible mediante invitación." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "" + +#: src/Module/Register.php:139 src/Module/Admin/Site.php:588 +msgid "Registration" +msgstr "Registro" + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Nombre completo (ej. Joe Smith, real o real aparente):" + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Dejar vacío para autogenerar una contraseña" + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "" + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Escoge un apodo: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "Importar tu perfil a esta instancia de friendica" + +#: src/Module/Register.php:163 src/Module/BaseAdmin.php:102 +#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:255 +msgid "Terms of Service" +msgstr "Términos de Servicio" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: src/Module/Register.php:201 +msgid "Password doesn't match." +msgstr "" + +#: src/Module/Register.php:207 +msgid "Please enter your password." +msgstr "" + +#: src/Module/Register.php:249 +msgid "You have entered too much information." +msgstr "" + +#: src/Module/Register.php:273 +msgid "Please enter the identical mail address in the second field." +msgstr "" + +#: src/Module/Register.php:300 +msgid "The additional account was created." +msgstr "" + +#: src/Module/Register.php:325 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." + +#: src/Module/Register.php:329 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio." + +#: src/Module/Register.php:335 +msgid "Registration successful." +msgstr "Registro exitoso." + +#: src/Module/Register.php:340 src/Module/Register.php:347 +msgid "Your registration can not be processed." +msgstr "Tu registro no se puede procesar." + +#: src/Module/Register.php:346 +msgid "You have to leave a request note for the admin." +msgstr "" + +#: src/Module/Register.php:394 +msgid "Your registration is pending approval by the site owner." +msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "" + +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "No se ha encontrado" + +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "" + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "" + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "" + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "" + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "" + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "" + +#: src/Module/Special/HTTPException.php:72 src/Content/Nav.php:93 +msgid "Go back" +msgstr "" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: src/Module/AllFriends.php:72 +msgid "No friends to display." +msgstr "No hay amigos para mostrar." + +#: src/Module/FriendSuggest.php:65 +msgid "Suggested contact not found." +msgstr "" + +#: src/Module/FriendSuggest.php:84 +msgid "Friend suggestion sent." +msgstr "Solicitud de amistad enviada." + +#: src/Module/FriendSuggest.php:121 +msgid "Suggest Friends" +msgstr "Sugerencias de amistad" + +#: src/Module/FriendSuggest.php:124 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Recomienda un amigo a %s" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Creditos" + +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " + +#: src/Module/Install.php:177 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: src/Module/Install.php:188 +msgid "System check" +msgstr "Verificación del sistema" + +#: src/Module/Install.php:193 +msgid "Check again" +msgstr "Compruebalo de nuevo" + +#: src/Module/Install.php:200 src/Module/Admin/Site.php:521 +msgid "No SSL policy, links will track page SSL state" +msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página" + +#: src/Module/Install.php:201 src/Module/Admin/Site.php:522 +msgid "Force all links to use SSL" +msgstr "Forzar todos los enlaces a utilizar SSL" + +#: src/Module/Install.php:202 src/Module/Admin/Site.php:523 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" + +#: src/Module/Install.php:208 +msgid "Base settings" +msgstr "" + +#: src/Module/Install.php:210 src/Module/Admin/Site.php:611 +msgid "SSL link policy" +msgstr "Política de enlaces SSL" + +#: src/Module/Install.php:212 src/Module/Admin/Site.php:611 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL" + +#: src/Module/Install.php:215 +msgid "Host name" +msgstr "Nombre de dominio" + +#: src/Module/Install.php:217 +msgid "" +"Overwrite this field in case the determinated hostname isn't right, " +"otherweise leave it as is." +msgstr "" + +#: src/Module/Install.php:220 +msgid "Base path to installation" +msgstr "Ruta base para la instalación" + +#: src/Module/Install.php:222 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." + +#: src/Module/Install.php:225 +msgid "Sub path of the URL" +msgstr "" + +#: src/Module/Install.php:227 +msgid "" +"Overwrite this field in case the sub path determination isn't right, " +"otherwise leave it as is. Leaving this field blank means the installation is" +" at the base URL without sub path." +msgstr "" + +#: src/Module/Install.php:238 +msgid "Database connection" +msgstr "Conexión con la base de datos" + +#: src/Module/Install.php:239 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." + +#: src/Module/Install.php:240 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." + +#: src/Module/Install.php:241 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." + +#: src/Module/Install.php:248 +msgid "Database Server Name" +msgstr "Nombre del servidor de la base de datos" + +#: src/Module/Install.php:253 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" + +#: src/Module/Install.php:259 +msgid "Database Login Password" +msgstr "Contraseña de la base de datos" + +#: src/Module/Install.php:261 +msgid "For security reasons the password must not be empty" +msgstr "Por razones de seguridad la contraseña no debe estar vacía" + +#: src/Module/Install.php:264 +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: src/Module/Install.php:268 src/Module/Install.php:297 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" + +#: src/Module/Install.php:282 +msgid "Site settings" +msgstr "Configuración de la página web" + +#: src/Module/Install.php:292 +msgid "Site administrator email address" +msgstr "Dirección de correo del administrador de la web" + +#: src/Module/Install.php:294 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." + +#: src/Module/Install.php:301 +msgid "System Language:" +msgstr "Sistema de idioma:" + +#: src/Module/Install.php:303 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails." + +#: src/Module/Install.php:315 +msgid "Your Friendica site database has been installed." +msgstr "La base de datos de su sitio web de Friendica ha sido instalada." + +#: src/Module/Install.php:323 +msgid "Installation finished" +msgstr "" + +#: src/Module/Install.php:343 +msgid "

What next

" +msgstr "

¿Ahora qué?

" + +#: src/Module/Install.php:344 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "" + +#: src/Module/Install.php:347 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "" + +#: src/Module/Filer/SaveTag.php:65 +msgid "- select -" +msgstr "- seleccionar -" + +#: src/Module/Filer/RemoveTag.php:63 +msgid "Item was not removed" +msgstr "" + +#: src/Module/Filer/RemoveTag.php:66 +msgid "Item was not deleted" +msgstr "" + +#: src/Module/PermissionTooltip.php:24 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/PermissionTooltip.php:37 +msgid "Model not found" +msgstr "" + +#: src/Module/PermissionTooltip.php:59 +msgid "Remote privacy information not available." +msgstr "Privacidad de la información remota no disponible." + +#: src/Module/PermissionTooltip.php:70 +msgid "Visible to:" +msgstr "Visible para:" + +#: src/Module/Delegation.php:147 +msgid "Manage Identities and/or Pages" +msgstr "Administrar identidades y/o páginas" + +#: src/Module/Delegation.php:148 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" + +#: src/Module/Delegation.php:149 +msgid "Select an identity to manage: " +msgstr "Selecciona una identidad a gestionar:" + +#: src/Module/Conversation/Community.php:56 +msgid "Local Community" +msgstr "" + +#: src/Module/Conversation/Community.php:59 +msgid "Posts from local users on this server" +msgstr "" + +#: src/Module/Conversation/Community.php:67 +msgid "Global Community" +msgstr "" + +#: src/Module/Conversation/Community.php:70 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:179 +msgid "No results." +msgstr "Sin resultados." + +#: src/Module/Conversation/Community.php:125 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: src/Module/Conversation/Community.php:178 +msgid "Community option not available." +msgstr "" + +#: src/Module/Conversation/Community.php:194 +msgid "Not available." +msgstr "No disponible" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Bienvenido a Friendica " + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Listado de nuevos miembros" + +#: src/Module/Welcome.php:46 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Empezando" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Visita guiada a Friendica" + +#: src/Module/Welcome.php:50 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Ir a tus ajustes" + +#: src/Module/Welcome.php:54 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." + +#: src/Module/Welcome.php:55 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." + +#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 +msgid "Upload Profile Photo" +msgstr "Subir foto del Perfil" + +#: src/Module/Welcome.php:59 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "Editar tu perfil" + +#: src/Module/Welcome.php:61 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Palabras clave del perfil" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "" + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Conectando" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "Importando correos electrónicos" + +#: src/Module/Welcome.php:68 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Ir a tu página de contactos" + +#: src/Module/Welcome.php:70 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Ir al directorio de tu sitio" + +#: src/Module/Welcome.php:72 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Encontrando nueva gente" + +#: src/Module/Welcome.php:74 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." + +#: src/Module/Welcome.php:76 src/Module/Contact.php:797 +#: src/Model/Group.php:528 src/Content/Widget.php:217 +msgid "Groups" +msgstr "Grupos" + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Agrupa tus contactos" + +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "¿Por qué mis publicaciones no son públicas?" + +#: src/Module/Welcome.php:81 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Consiguiendo ayuda" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Ir a la sección de ayuda" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "" + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "La publicación fue creada" + +#: src/Module/BaseAdmin.php:79 +msgid "" +"Submanaged account can't access the administation pages. Please log back in " +"as the main account." +msgstr "" + +#: src/Module/BaseAdmin.php:92 src/Content/Nav.php:252 +msgid "Information" +msgstr "Información" + +#: src/Module/BaseAdmin.php:93 +msgid "Overview" +msgstr "Resumen" + +#: src/Module/BaseAdmin.php:94 src/Module/Admin/Federation.php:141 +msgid "Federation Statistics" +msgstr "Estadísticas de federación" + +#: src/Module/BaseAdmin.php:96 +msgid "Configuration" +msgstr "Configuración" + +#: src/Module/BaseAdmin.php:97 src/Module/Admin/Site.php:585 +msgid "Site" +msgstr "Sitio" + +#: src/Module/BaseAdmin.php:98 src/Module/Admin/Users.php:243 +#: src/Module/Admin/Users.php:260 +msgid "Users" +msgstr "Usuarios" + +#: src/Module/BaseAdmin.php:99 src/Module/Admin/Addons/Details.php:117 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "" + +#: src/Module/BaseAdmin.php:100 src/Module/Admin/Themes/Details.php:122 +#: src/Module/Admin/Themes/Index.php:112 +msgid "Themes" +msgstr "Temas" + +#: src/Module/BaseAdmin.php:101 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "Características adicionales" + +#: src/Module/BaseAdmin.php:104 +msgid "Database" +msgstr "Base de Datos" + +#: src/Module/BaseAdmin.php:105 +msgid "DB updates" +msgstr "Actualizaciones de la Base de Datos" + +#: src/Module/BaseAdmin.php:106 +msgid "Inspect Deferred Workers" +msgstr "" + +#: src/Module/BaseAdmin.php:107 +msgid "Inspect worker Queue" +msgstr "" + +#: src/Module/BaseAdmin.php:109 +msgid "Tools" +msgstr "Herramientas" + +#: src/Module/BaseAdmin.php:110 +msgid "Contact Blocklist" +msgstr "Lista de Contactos Bloqueados" + +#: src/Module/BaseAdmin.php:111 +msgid "Server Blocklist" +msgstr "Lista de bloqueo del servidor" + +#: src/Module/BaseAdmin.php:112 src/Module/Admin/Item/Delete.php:66 +msgid "Delete Item" +msgstr "Eliminar Artículo" + +#: src/Module/BaseAdmin.php:114 src/Module/BaseAdmin.php:115 +#: src/Module/Admin/Logs/Settings.php:79 +msgid "Logs" +msgstr "Registros" + +#: src/Module/BaseAdmin.php:116 src/Module/Admin/Logs/View.php:65 +msgid "View Logs" +msgstr "Ver registro de depuración" + +#: src/Module/BaseAdmin.php:118 +msgid "Diagnostics" +msgstr "Diagnósticos" + +#: src/Module/BaseAdmin.php:119 +msgid "PHP Info" +msgstr "Información PHP" + +#: src/Module/BaseAdmin.php:120 +msgid "probe address" +msgstr "probar direccion" + +#: src/Module/BaseAdmin.php:121 +msgid "check webfinger" +msgstr "Verificar webfinger" + +#: src/Module/BaseAdmin.php:122 +msgid "Item Source" +msgstr "" + +#: src/Module/BaseAdmin.php:123 +msgid "Babel" +msgstr "" + +#: src/Module/BaseAdmin.php:124 +msgid "ActivityPub Conversion" +msgstr "" + +#: src/Module/BaseAdmin.php:132 src/Content/Nav.php:288 +msgid "Admin" +msgstr "Admin" + +#: src/Module/BaseAdmin.php:133 +msgid "Addon Features" +msgstr "Funciones de los Addon" + +#: src/Module/BaseAdmin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "Registro de usuarios esperando la confirmación" + +#: src/Module/Contact.php:87 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contacto editado." +msgstr[1] "%d contacts edited." + +#: src/Module/Contact.php:114 +msgid "Could not access contact record." +msgstr "No se pudo acceder a los datos del contacto." + +#: src/Module/Contact.php:322 src/Model/Profile.php:448 +#: src/Content/Text/HTML.php:896 +msgid "Follow" +msgstr "" + +#: src/Module/Contact.php:324 src/Model/Profile.php:450 +msgid "Unfollow" +msgstr "" + +#: src/Module/Contact.php:380 src/Module/Api/Twitter/ContactEndpoint.php:65 +msgid "Contact not found" +msgstr "" + +#: src/Module/Contact.php:399 +msgid "Contact has been blocked" +msgstr "El contacto ha sido bloqueado" + +#: src/Module/Contact.php:399 +msgid "Contact has been unblocked" +msgstr "El contacto ha sido desbloqueado" + +#: src/Module/Contact.php:409 +msgid "Contact has been ignored" +msgstr "El contacto ha sido ignorado" + +#: src/Module/Contact.php:409 +msgid "Contact has been unignored" +msgstr "El contacto ya no está ignorado" + +#: src/Module/Contact.php:419 +msgid "Contact has been archived" +msgstr "El contacto ha sido archivado" + +#: src/Module/Contact.php:419 +msgid "Contact has been unarchived" +msgstr "El contacto ya no está archivado" + +#: src/Module/Contact.php:443 +msgid "Drop contact" +msgstr "Eliminar contacto" + +#: src/Module/Contact.php:446 src/Module/Contact.php:837 +msgid "Do you really want to delete this contact?" +msgstr "¿Estás seguro de que quieres eliminar este contacto?" + +#: src/Module/Contact.php:460 +msgid "Contact has been removed." +msgstr "El contacto ha sido eliminado" + +#: src/Module/Contact.php:488 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Ahora tienes una amistad mutua con %s" + +#: src/Module/Contact.php:492 +#, php-format +msgid "You are sharing with %s" +msgstr "Estás compartiendo con %s" + +#: src/Module/Contact.php:496 +#, php-format +msgid "%s is sharing with you" +msgstr "%s está compartiendo contigo" + +#: src/Module/Contact.php:520 +msgid "Private communications are not available for this contact." +msgstr "Las comunicaciones privadas no está disponibles para este contacto." + +#: src/Module/Contact.php:522 +msgid "Never" +msgstr "Nunca" + +#: src/Module/Contact.php:525 +msgid "(Update was successful)" +msgstr "(La actualización se ha completado)" + +#: src/Module/Contact.php:525 +msgid "(Update was not successful)" +msgstr "(La actualización no se ha completado)" + +#: src/Module/Contact.php:527 src/Module/Contact.php:1109 +msgid "Suggest friends" +msgstr "Sugerir amigos" + +#: src/Module/Contact.php:531 +#, php-format +msgid "Network type: %s" +msgstr "Tipo de red: %s" + +#: src/Module/Contact.php:536 +msgid "Communications lost with this contact!" +msgstr "¡Se ha perdido la comunicación con este contacto!" + +#: src/Module/Contact.php:542 +msgid "Fetch further information for feeds" +msgstr "Recaudar informacion complementaria de los feeds" + +#: src/Module/Contact.php:544 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "" + +#: src/Module/Contact.php:546 src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 +msgid "Disabled" +msgstr "Deshabilitado" + +#: src/Module/Contact.php:547 +msgid "Fetch information" +msgstr "Recaudar informacion" + +#: src/Module/Contact.php:548 +msgid "Fetch keywords" +msgstr "" + +#: src/Module/Contact.php:549 +msgid "Fetch information and keywords" +msgstr "Recaudar informacion y palabras claves" + +#: src/Module/Contact.php:563 +msgid "Contact Information / Notes" +msgstr "Información del Contacto / Notas" + +#: src/Module/Contact.php:564 +msgid "Contact Settings" +msgstr "Ajustes del contacto" + +#: src/Module/Contact.php:572 +msgid "Contact" +msgstr "Contacto" + +#: src/Module/Contact.php:576 +msgid "Their personal note" +msgstr "Su nota personal" + +#: src/Module/Contact.php:578 +msgid "Edit contact notes" +msgstr "Editar notas del contacto" + +#: src/Module/Contact.php:581 src/Module/Contact.php:1077 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Ver el perfil de %s [%s]" + +#: src/Module/Contact.php:582 +msgid "Block/Unblock contact" +msgstr "Boquear/Desbloquear contacto" + +#: src/Module/Contact.php:583 +msgid "Ignore contact" +msgstr "Ignorar contacto" + +#: src/Module/Contact.php:584 +msgid "View conversations" +msgstr "Ver conversaciones" + +#: src/Module/Contact.php:589 +msgid "Last update:" +msgstr "Última actualización:" + +#: src/Module/Contact.php:591 +msgid "Update public posts" +msgstr "Actualizar publicaciones públicas" + +#: src/Module/Contact.php:593 src/Module/Contact.php:1119 +msgid "Update now" +msgstr "Actualizar ahora" + +#: src/Module/Contact.php:595 src/Module/Contact.php:841 +#: src/Module/Contact.php:1138 src/Module/Admin/Users.php:256 +#: src/Module/Admin/Blocklist/Contact.php:85 +msgid "Unblock" +msgstr "Desbloquear" + +#: src/Module/Contact.php:596 src/Module/Contact.php:842 +#: src/Module/Contact.php:1146 +msgid "Unignore" +msgstr "Quitar de Ignorados" + +#: src/Module/Contact.php:600 +msgid "Currently blocked" +msgstr "Bloqueados" + +#: src/Module/Contact.php:601 +msgid "Currently ignored" +msgstr "Ignorados" + +#: src/Module/Contact.php:602 +msgid "Currently archived" +msgstr "Archivados" + +#: src/Module/Contact.php:603 +msgid "Awaiting connection acknowledge" +msgstr "" + +#: src/Module/Contact.php:604 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." + +#: src/Module/Contact.php:605 +msgid "Notification for new posts" +msgstr "Notificacion de nuevos temas." + +#: src/Module/Contact.php:605 +msgid "Send a notification of every new post of this contact" +msgstr "Enviar una notificacion por nuevos temas de este contacto." + +#: src/Module/Contact.php:607 +msgid "Keyword Deny List" +msgstr "" + +#: src/Module/Contact.php:607 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado" + +#: src/Module/Contact.php:623 src/Module/Settings/TwoFactor/Index.php:127 +msgid "Actions" +msgstr "Acciones" + +#: src/Module/Contact.php:749 src/Module/Group.php:292 +#: src/Content/Widget.php:250 +msgid "All Contacts" +msgstr "Todos los contactos" + +#: src/Module/Contact.php:752 +msgid "Show all contacts" +msgstr "Mostrar todos los contactos" + +#: src/Module/Contact.php:757 src/Module/Contact.php:817 +msgid "Pending" +msgstr "" + +#: src/Module/Contact.php:760 +msgid "Only show pending contacts" +msgstr "" + +#: src/Module/Contact.php:765 src/Module/Contact.php:818 +msgid "Blocked" +msgstr "Bloqueados" + +#: src/Module/Contact.php:768 +msgid "Only show blocked contacts" +msgstr "Mostrar solo contactos bloqueados" + +#: src/Module/Contact.php:773 src/Module/Contact.php:820 +msgid "Ignored" +msgstr "Ignorados" + +#: src/Module/Contact.php:776 +msgid "Only show ignored contacts" +msgstr "Mostrar solo contactos ignorados" + +#: src/Module/Contact.php:781 src/Module/Contact.php:821 +msgid "Archived" +msgstr "Archivados" + +#: src/Module/Contact.php:784 +msgid "Only show archived contacts" +msgstr "Mostrar solo contactos archivados" + +#: src/Module/Contact.php:789 src/Module/Contact.php:819 +msgid "Hidden" +msgstr "Ocultos" + +#: src/Module/Contact.php:792 +msgid "Only show hidden contacts" +msgstr "Mostrar solo contactos ocultos" + +#: src/Module/Contact.php:800 +msgid "Organize your contact groups" +msgstr "" + +#: src/Module/Contact.php:832 +msgid "Search your contacts" +msgstr "Buscar en tus contactos" + +#: src/Module/Contact.php:833 src/Module/Search/Index.php:186 +#, php-format +msgid "Results for: %s" +msgstr "Resultados para: %s" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Archive" +msgstr "Archivo" + +#: src/Module/Contact.php:843 src/Module/Contact.php:1155 +msgid "Unarchive" +msgstr "Sin archivar" + +#: src/Module/Contact.php:846 +msgid "Batch Actions" +msgstr "Accones en lote" + +#: src/Module/Contact.php:881 +msgid "Conversations started by this contact" +msgstr "" + +#: src/Module/Contact.php:886 +msgid "Posts and Comments" +msgstr "" + +#: src/Module/Contact.php:897 src/Module/BaseProfile.php:55 +msgid "Profile Details" +msgstr "Detalles del Perfil" + +#: src/Module/Contact.php:909 +msgid "View all contacts" +msgstr "Ver todos los contactos" + +#: src/Module/Contact.php:920 +msgid "View all common friends" +msgstr "Ver todos los conocidos en común " + +#: src/Module/Contact.php:930 +msgid "Advanced Contact Settings" +msgstr "Configuración avanzada" + +#: src/Module/Contact.php:1036 +msgid "Mutual Friendship" +msgstr "Amistad recíproca" + +#: src/Module/Contact.php:1040 +msgid "is a fan of yours" +msgstr "es tu fan" + +#: src/Module/Contact.php:1044 +msgid "you are a fan of" +msgstr "eres fan de" + +#: src/Module/Contact.php:1062 +msgid "Pending outgoing contact request" +msgstr "" + +#: src/Module/Contact.php:1064 +msgid "Pending incoming contact request" +msgstr "" + +#: src/Module/Contact.php:1129 src/Module/Contact/Advanced.php:138 +msgid "Refetch contact data" +msgstr "Volver a solicitar datos del contacto." + +#: src/Module/Contact.php:1140 +msgid "Toggle Blocked status" +msgstr "Cambiar bloqueados" + +#: src/Module/Contact.php:1148 +msgid "Toggle Ignored status" +msgstr "Cambiar ignorados" + +#: src/Module/Contact.php:1157 +msgid "Toggle Archive status" +msgstr "Cambiar archivados" + +#: src/Module/Contact.php:1165 +msgid "Delete contact" +msgstr "Eliminar contacto" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "" + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners and is stored there. Users can enter additional " +"private data that may be transmitted to the communication partners accounts." +msgstr "" + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "" + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "" + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Ayuda:" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "" + +#: src/Module/Api/Twitter/ContactEndpoint.php:135 +msgid "Profile not found" +msgstr "" + +#: src/Module/Invite.php:55 +msgid "Total invitation limit exceeded." +msgstr "Límite total de invitaciones excedido." + +#: src/Module/Invite.php:78 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo válida." + +#: src/Module/Invite.php:105 +msgid "Please join us on Friendica" +msgstr "Únete a nosotros en Friendica" + +#: src/Module/Invite.php:114 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." + +#: src/Module/Invite.php:118 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Ha fallado la entrega del mensaje." + +#: src/Module/Invite.php:122 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensaje enviado." +msgstr[1] "%d mensajes enviados." + +#: src/Module/Invite.php:140 +msgid "You have no more invitations available" +msgstr "No tienes más invitaciones disponibles" + +#: src/Module/Invite.php:147 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." + +#: src/Module/Invite.php:149 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." + +#: src/Module/Invite.php:150 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." + +#: src/Module/Invite.php:154 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." + +#: src/Module/Invite.php:157 +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." +msgstr "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales." + +#: src/Module/Invite.php:156 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "Para aceptar esta invitación, visite y regístrese en%s, por favor." + +#: src/Module/Invite.php:164 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: src/Module/Invite.php:165 +msgid "Enter email addresses, one per line:" +msgstr "Introduce las direcciones de correo, una por línea:" + +#: src/Module/Invite.php:169 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." + +#: src/Module/Invite.php:171 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Tienes que proporcionar el siguiente código: $invite_code" + +#: src/Module/Invite.php:171 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" + +#: src/Module/Invite.php:173 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor" + +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "Buscar perfiles - %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Búsqueda de foro - %s" + +#: src/Module/Admin/Themes/Details.php:77 +#: src/Module/Admin/Addons/Details.php:93 +msgid "Disable" +msgstr "Desactivado" + +#: src/Module/Admin/Themes/Details.php:80 +#: src/Module/Admin/Addons/Details.php:96 +msgid "Enable" +msgstr "Activado" + +#: src/Module/Admin/Themes/Details.php:88 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:92 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "" + +#: src/Module/Admin/Themes/Details.php:114 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: src/Module/Admin/Themes/Details.php:121 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Users.php:242 +#: src/Module/Admin/Queue.php:75 src/Module/Admin/Federation.php:140 +#: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Logs/Settings.php:78 +#: src/Module/Admin/Site.php:584 src/Module/Admin/Summary.php:230 +#: src/Module/Admin/Tos.php:58 src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Addons/Details.php:116 +#: src/Module/Admin/Addons/Index.php:67 +msgid "Administration" +msgstr "Administración" + +#: src/Module/Admin/Themes/Details.php:123 +#: src/Module/Admin/Addons/Details.php:118 +msgid "Toggle" +msgstr "Activar" + +#: src/Module/Admin/Themes/Details.php:132 +#: src/Module/Admin/Addons/Details.php:126 +msgid "Author: " +msgstr "Autor:" + +#: src/Module/Admin/Themes/Details.php:133 +#: src/Module/Admin/Addons/Details.php:127 +msgid "Maintainer: " +msgstr "Mantenedor: " + +#: src/Module/Admin/Themes/Embed.php:84 +msgid "Unknown theme." +msgstr "" + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Recargar interfaces de usuario activos" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "" + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Sin soporte]" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "Trancar opción %s " + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "Administrar opciones adicionales" + +#: src/Module/Admin/Users.php:61 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:68 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:76 src/Module/Admin/Users.php:126 +msgid "You can't remove yourself" +msgstr "" + +#: src/Module/Admin/Users.php:80 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuario eliminado" +msgstr[1] "%s usuarios eliminados" + +#: src/Module/Admin/Users.php:87 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:94 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Users.php:124 +#, php-format +msgid "User \"%s\" deleted" +msgstr "" + +#: src/Module/Admin/Users.php:132 +#, php-format +msgid "User \"%s\" blocked" +msgstr "" + +#: src/Module/Admin/Users.php:137 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "" + +#: src/Module/Admin/Users.php:142 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: src/Module/Admin/Users.php:147 +msgid "Registration revoked" +msgstr "" + +#: src/Module/Admin/Users.php:191 +msgid "Private Forum" +msgstr "" + +#: src/Module/Admin/Users.php:198 +msgid "Relay" +msgstr "" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:248 +#: src/Module/Admin/Users.php:262 src/Module/Admin/Users.php:280 +#: src/Content/ContactSelector.php:102 +msgid "Email" +msgstr "Correo electrónico" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Register date" +msgstr "Fecha de registro" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last login" +msgstr "Último acceso" + +#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262 +msgid "Last public item" +msgstr "" + +#: src/Module/Admin/Users.php:237 +msgid "Type" +msgstr "" + +#: src/Module/Admin/Users.php:244 +msgid "Add User" +msgstr "Agregar usuario" + +#: src/Module/Admin/Users.php:245 src/Module/Admin/Blocklist/Contact.php:82 +msgid "select all" +msgstr "seleccionar todo" + +#: src/Module/Admin/Users.php:246 +msgid "User registrations waiting for confirm" +msgstr "Registro de usuarios esperando confirmación" + +#: src/Module/Admin/Users.php:247 +msgid "User waiting for permanent deletion" +msgstr "Usuario esperando anulación permanente." + +#: src/Module/Admin/Users.php:248 +msgid "Request date" +msgstr "Solicitud de fecha" + +#: src/Module/Admin/Users.php:249 +msgid "No registrations." +msgstr "Sin registros." + +#: src/Module/Admin/Users.php:250 +msgid "Note from the user" +msgstr "Nota para el usuario" + +#: src/Module/Admin/Users.php:252 +msgid "Deny" +msgstr "Denegado" + +#: src/Module/Admin/Users.php:255 +msgid "User blocked" +msgstr "" + +#: src/Module/Admin/Users.php:257 +msgid "Site admin" +msgstr "Administrador de la web" + +#: src/Module/Admin/Users.php:258 +msgid "Account expired" +msgstr "Cuenta caducada" + +#: src/Module/Admin/Users.php:261 +msgid "New User" +msgstr "Nuevo usuario" + +#: src/Module/Admin/Users.php:262 +msgid "Permanent deletion" +msgstr "" + +#: src/Module/Admin/Users.php:267 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" + +#: src/Module/Admin/Users.php:268 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" + +#: src/Module/Admin/Users.php:278 +msgid "Name of the new user." +msgstr "Nombre del nuevo usuario" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname" +msgstr "Apodo" + +#: src/Module/Admin/Users.php:279 +msgid "Nickname of the new user." +msgstr "Apodo del nuevo perfil." + +#: src/Module/Admin/Users.php:280 +msgid "Email address of the new user." +msgstr "Dirección de correo del nuevo perfil." + +#: src/Module/Admin/Queue.php:53 +msgid "Inspect Deferred Worker Queue" +msgstr "" + +#: src/Module/Admin/Queue.php:54 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "" + +#: src/Module/Admin/Queue.php:57 +msgid "Inspect Worker Queue" +msgstr "" + +#: src/Module/Admin/Queue.php:58 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "" + +#: src/Module/Admin/Queue.php:78 +msgid "ID" +msgstr "ID" + +#: src/Module/Admin/Queue.php:79 +msgid "Job Parameters" +msgstr "" + +#: src/Module/Admin/Queue.php:80 +msgid "Created" +msgstr "Creado" + +#: src/Module/Admin/Queue.php:81 +msgid "Priority" +msgstr "" + +#: src/Module/Admin/DBSync.php:50 +msgid "Update has been marked successful" +msgstr "La actualización se ha completado con éxito" + +#: src/Module/Admin/DBSync.php:60 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Actualización de base de datos %s fue aplicada con éxito." + +#: src/Module/Admin/DBSync.php:64 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Paso %s fallo con el error: %s" + +#: src/Module/Admin/DBSync.php:83 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualización %s aplicada con éxito." + +#: src/Module/Admin/DBSync.php:86 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización %s no ha informado, se desconoce el estado." + +#: src/Module/Admin/DBSync.php:89 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "No había función adicional de actualización %s que necesitaba ser requerida." + +#: src/Module/Admin/DBSync.php:110 +msgid "No failed updates." +msgstr "Actualizaciones sin fallos." + +#: src/Module/Admin/DBSync.php:111 +msgid "Check database structure" +msgstr "Revisar estructura de la base de datos" + +#: src/Module/Admin/DBSync.php:116 +msgid "Failed Updates" +msgstr "Actualizaciones fallidas" + +#: src/Module/Admin/DBSync.php:117 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." + +#: src/Module/Admin/DBSync.php:118 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como correcta (si actualizaste manualmente)" + +#: src/Module/Admin/DBSync.php:119 +msgid "Attempt to execute this update step automatically" +msgstr "Intentando ejecutar este paso automáticamente" + +#: src/Module/Admin/Federation.php:53 +msgid "Other" +msgstr "Otro" + +#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266 +msgid "unknown" +msgstr "desconocido" + +#: src/Module/Admin/Federation.php:135 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. " + +#: src/Module/Admin/Federation.php:145 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "" + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "" + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:45 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "" + +#: src/Module/Admin/Logs/Settings.php:70 +msgid "PHP log currently enabled." +msgstr "Registro PHP actualmente disponible." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently disabled." +msgstr "Registro PHP actualmente deshabilitado." + +#: src/Module/Admin/Logs/Settings.php:81 +msgid "Clear" +msgstr "Limpiar" + +#: src/Module/Admin/Logs/Settings.php:85 +msgid "Enable Debugging" +msgstr "Habilitar debugging" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "Log file" +msgstr "Archivo de registro" + +#: src/Module/Admin/Logs/Settings.php:86 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Log level" +msgstr "Nivel de registro" + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "PHP logging" +msgstr "PHP logging" + +#: src/Module/Admin/Logs/Settings.php:90 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: src/Module/Admin/Site.php:68 +msgid "Can not parse base url. Must have at least ://" +msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos ://" + +#: src/Module/Admin/Site.php:122 +msgid "Relocation started. Could take a while to complete." +msgstr "" + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "" + +#: src/Module/Admin/Site.php:448 src/Module/Settings/Display.php:130 +msgid "No special theme for mobile devices" +msgstr "No hay tema especial para dispositivos móviles" + +#: src/Module/Admin/Site.php:465 src/Module/Settings/Display.php:140 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: src/Module/Admin/Site.php:477 +msgid "No community page for local users" +msgstr "" + +#: src/Module/Admin/Site.php:478 +msgid "No community page" +msgstr "No hay pagina de comunidad" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from users of this site" +msgstr "Temas públicos de perfiles de este sitio." + +#: src/Module/Admin/Site.php:480 +msgid "Public postings from the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:481 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: src/Module/Admin/Site.php:487 +msgid "Multi user instance" +msgstr "Sesión multi usuario" + +#: src/Module/Admin/Site.php:515 +msgid "Closed" +msgstr "Cerrado" + +#: src/Module/Admin/Site.php:516 +msgid "Requires approval" +msgstr "Requiere aprobación" + +#: src/Module/Admin/Site.php:517 +msgid "Open" +msgstr "Abierto" + +#: src/Module/Admin/Site.php:527 +msgid "Don't check" +msgstr "No verificar" + +#: src/Module/Admin/Site.php:528 +msgid "check the stable version" +msgstr "verifique la versión estable" + +#: src/Module/Admin/Site.php:529 +msgid "check the development version" +msgstr "verifica la versión de desarrollo" + +#: src/Module/Admin/Site.php:533 +msgid "none" +msgstr "" + +#: src/Module/Admin/Site.php:534 +msgid "Local contacts" +msgstr "" + +#: src/Module/Admin/Site.php:535 +msgid "Interactors" +msgstr "" + +#: src/Module/Admin/Site.php:554 +msgid "Database (legacy)" +msgstr "" + +#: src/Module/Admin/Site.php:587 +msgid "Republish users to directory" +msgstr "Volver a publicar usuarios en el directorio" + +#: src/Module/Admin/Site.php:589 +msgid "File upload" +msgstr "Subida de archivo" + +#: src/Module/Admin/Site.php:590 +msgid "Policies" +msgstr "Políticas" + +#: src/Module/Admin/Site.php:592 +msgid "Auto Discovered Contact Directory" +msgstr "Directorio de contactos descubierto automáticamente" + +#: src/Module/Admin/Site.php:593 +msgid "Performance" +msgstr "Rendimiento" + +#: src/Module/Admin/Site.php:594 +msgid "Worker" +msgstr "Trabajador (??)" + +#: src/Module/Admin/Site.php:595 +msgid "Message Relay" +msgstr "" + +#: src/Module/Admin/Site.php:596 +msgid "Relocate Instance" +msgstr "" + +#: src/Module/Admin/Site.php:597 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "" + +#: src/Module/Admin/Site.php:601 +msgid "Site name" +msgstr "Nombre del sitio" + +#: src/Module/Admin/Site.php:602 +msgid "Sender Email" +msgstr "Dirección de origen de correo electrónico" + +#: src/Module/Admin/Site.php:602 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío." + +#: src/Module/Admin/Site.php:603 +msgid "Banner/Logo" +msgstr "Imagen/Logotipo" + +#: src/Module/Admin/Site.php:604 +msgid "Email Banner/Logo" +msgstr "" + +#: src/Module/Admin/Site.php:605 +msgid "Shortcut icon" +msgstr "Icono de atajo" + +#: src/Module/Admin/Site.php:605 +msgid "Link to an icon that will be used for browsers." +msgstr "Enlace hacia un icono que sera usado para el navegador." + +#: src/Module/Admin/Site.php:606 +msgid "Touch icon" +msgstr "Icono touch" + +#: src/Module/Admin/Site.php:606 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Enlace para un icono que sera usado para tablets y moviles." + +#: src/Module/Admin/Site.php:607 +msgid "Additional Info" +msgstr "Información adicional" + +#: src/Module/Admin/Site.php:607 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "" + +#: src/Module/Admin/Site.php:608 +msgid "System language" +msgstr "Idioma" + +#: src/Module/Admin/Site.php:609 +msgid "System theme" +msgstr "Tema" + +#: src/Module/Admin/Site.php:609 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "" + +#: src/Module/Admin/Site.php:610 +msgid "Mobile system theme" +msgstr "Tema de sistema móvil" + +#: src/Module/Admin/Site.php:610 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" + +#: src/Module/Admin/Site.php:612 +msgid "Force SSL" +msgstr "Forzar SSL" + +#: src/Module/Admin/Site.php:612 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." + +#: src/Module/Admin/Site.php:613 +msgid "Hide help entry from navigation menu" +msgstr "Ocultar la ayuda en el menú de navegación" + +#: src/Module/Admin/Site.php:613 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente." + +#: src/Module/Admin/Site.php:614 +msgid "Single user instance" +msgstr "Sesión de usuario único" + +#: src/Module/Admin/Site.php:614 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" + +#: src/Module/Admin/Site.php:616 +msgid "File storage backend" +msgstr "" + +#: src/Module/Admin/Site.php:616 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "" + +#: src/Module/Admin/Site.php:618 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite." + +#: src/Module/Admin/Site.php:619 +msgid "Maximum image length" +msgstr "Largo máximo de imagen" + +#: src/Module/Admin/Site.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." + +#: src/Module/Admin/Site.php:620 +msgid "JPEG image quality" +msgstr "Calidad de imagen JPEG" + +#: src/Module/Admin/Site.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." + +#: src/Module/Admin/Site.php:622 +msgid "Register policy" +msgstr "Política de registros" + +#: src/Module/Admin/Site.php:623 +msgid "Maximum Daily Registrations" +msgstr "Registros Máximos Diarios" + +#: src/Module/Admin/Site.php:623 +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 anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." + +#: src/Module/Admin/Site.php:624 +msgid "Register text" +msgstr "Términos" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "" + +#: src/Module/Admin/Site.php:625 +msgid "Forbidden Nicknames" +msgstr "" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "" + +#: src/Module/Admin/Site.php:626 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" + +#: src/Module/Admin/Site.php:626 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." + +#: src/Module/Admin/Site.php:627 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" + +#: src/Module/Admin/Site.php:628 +msgid "Allowed email domains" +msgstr "Dominios de correo permitidos" + +#: src/Module/Admin/Site.php:628 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" + +#: src/Module/Admin/Site.php:629 +msgid "No OEmbed rich content" +msgstr "" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: src/Module/Admin/Site.php:630 +msgid "Allowed OEmbed domains" +msgstr "" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:631 +msgid "Block public" +msgstr "Bloqueo público" + +#: src/Module/Admin/Site.php:631 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." + +#: src/Module/Admin/Site.php:632 +msgid "Force publish" +msgstr "Forzar publicación" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." + +#: src/Module/Admin/Site.php:632 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "" + +#: src/Module/Admin/Site.php:633 +msgid "Global directory URL" +msgstr "URL del directorio global." + +#: src/Module/Admin/Site.php:633 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia." + +#: src/Module/Admin/Site.php:634 +msgid "Private posts by default for new users" +msgstr "Publicaciones privadas por defecto para usuarios nuevos" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público." + +#: src/Module/Admin/Site.php:635 +msgid "Don't include post content in email notifications" +msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" + +#: src/Module/Admin/Site.php:635 +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 "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." + +#: src/Module/Admin/Site.php:636 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." + +#: src/Module/Admin/Site.php:636 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." + +#: src/Module/Admin/Site.php:637 +msgid "Don't embed private images in posts" +msgstr "No agregar imágenes privados en las publicaciones" + +#: src/Module/Admin/Site.php:637 +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 "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." + +#: src/Module/Admin/Site.php:638 +msgid "Explicit Content" +msgstr "" + +#: src/Module/Admin/Site.php:638 +msgid "" +"Set this to announce that your node is used mostly for explicit content that" +" might not be suited for minors. This information will be published in the " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "" + +#: src/Module/Admin/Site.php:639 +msgid "Allow Users to set remote_self" +msgstr "Permitir a los usuarios de definir perfiles_remotos" + +#: src/Module/Admin/Site.php:639 +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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." + +#: src/Module/Admin/Site.php:640 +msgid "Block multiple registrations" +msgstr "Bloquear registros multiples" + +#: src/Module/Admin/Site.php:640 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas." + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID" +msgstr "" + +#: src/Module/Admin/Site.php:641 +msgid "Disable OpenID support for registration and logins." +msgstr "" + +#: src/Module/Admin/Site.php:642 +msgid "No Fullname check" +msgstr "" + +#: src/Module/Admin/Site.php:642 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "" + +#: src/Module/Admin/Site.php:643 +msgid "Community pages for visitors" +msgstr "" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: src/Module/Admin/Site.php:644 +msgid "Posts per user on community page" +msgstr "Publicaciones por usuario en la pagina de comunidad" + +#: src/Module/Admin/Site.php:644 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "" + +#: src/Module/Admin/Site.php:645 +msgid "Disable OStatus support" +msgstr "" + +#: src/Module/Admin/Site.php:645 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: src/Module/Admin/Site.php:646 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado." + +#: src/Module/Admin/Site.php:648 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)." + +#: src/Module/Admin/Site.php:649 +msgid "Enable Diaspora support" +msgstr "Habilitar el soporte para Diaspora*" + +#: src/Module/Admin/Site.php:649 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provee una compatibilidad con la red de Diaspora." + +#: src/Module/Admin/Site.php:650 +msgid "Only allow Friendica contacts" +msgstr "Permitir solo contactos de Friendica" + +#: src/Module/Admin/Site.php:650 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados." + +#: src/Module/Admin/Site.php:651 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: src/Module/Admin/Site.php:651 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." + +#: src/Module/Admin/Site.php:652 +msgid "Proxy user" +msgstr "Usuario proxy" + +#: src/Module/Admin/Site.php:653 +msgid "Proxy URL" +msgstr "Dirección proxy" + +#: src/Module/Admin/Site.php:654 +msgid "Network timeout" +msgstr "Tiempo de espera de red" + +#: src/Module/Admin/Site.php:654 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." + +#: src/Module/Admin/Site.php:655 +msgid "Maximum Load Average" +msgstr "Promedio de carga máxima" + +#: src/Module/Admin/Site.php:655 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum Load Average (Frontend)" +msgstr "Carga máxima promedio (frontend)" + +#: src/Module/Admin/Site.php:656 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50." + +#: src/Module/Admin/Site.php:657 +msgid "Minimal Memory" +msgstr "Memoria Mínima" + +#: src/Module/Admin/Site.php:657 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables" +msgstr "" + +#: src/Module/Admin/Site.php:658 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "Discover followers/followings from contacts" +msgstr "" + +#: src/Module/Admin/Site.php:660 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "" + +#: src/Module/Admin/Site.php:661 +msgid "None - deactivated" +msgstr "" + +#: src/Module/Admin/Site.php:662 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:663 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "Synchronize the contacts with the directory server" +msgstr "" + +#: src/Module/Admin/Site.php:665 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "" + +#: src/Module/Admin/Site.php:667 +msgid "Days between requery" +msgstr "Días entre búsquedas" + +#: src/Module/Admin/Site.php:667 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos." + +#: src/Module/Admin/Site.php:668 +msgid "Discover contacts from other servers" +msgstr "Descubrir contactos de otros servidores" + +#: src/Module/Admin/Site.php:668 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "" + +#: src/Module/Admin/Site.php:669 +msgid "Search the local directory" +msgstr "Buscar el directorio local" + +#: src/Module/Admin/Site.php:669 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida." + +#: src/Module/Admin/Site.php:671 +msgid "Publish server information" +msgstr "Publicar información del servidor" + +#: src/Module/Admin/Site.php:671 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: src/Module/Admin/Site.php:673 +msgid "Check upstream version" +msgstr "Verifique la versión ascendente" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración." + +#: src/Module/Admin/Site.php:674 +msgid "Suppress Tags" +msgstr "Suprimir tags" + +#: src/Module/Admin/Site.php:674 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Suprimir la lista de tags al final de una publicación." + +#: src/Module/Admin/Site.php:675 +msgid "Clean database" +msgstr "" + +#: src/Module/Admin/Site.php:675 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "" + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of remote items" +msgstr "" + +#: src/Module/Admin/Site.php:676 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "" + +#: src/Module/Admin/Site.php:677 +msgid "Lifespan of unclaimed items" +msgstr "" + +#: src/Module/Admin/Site.php:677 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "" + +#: src/Module/Admin/Site.php:678 +msgid "Lifespan of raw conversation data" +msgstr "" + +#: src/Module/Admin/Site.php:678 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "" + +#: src/Module/Admin/Site.php:679 +msgid "Path to item cache" +msgstr "Ruta a la caché del objeto" + +#: src/Module/Admin/Site.php:679 +msgid "The item caches buffers generated bbcode and external images." +msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. " + +#: src/Module/Admin/Site.php:680 +msgid "Cache duration in seconds" +msgstr "Duración de la caché en segundos" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1." + +#: src/Module/Admin/Site.php:681 +msgid "Maximum numbers of comments per post" +msgstr "Numero máximo de respuestas por tema" + +#: src/Module/Admin/Site.php:681 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." + +#: src/Module/Admin/Site.php:682 +msgid "Maximum numbers of comments per post on the display page" +msgstr "" + +#: src/Module/Admin/Site.php:682 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "" + +#: src/Module/Admin/Site.php:683 +msgid "Temp path" +msgstr "Ruta a los temporales" + +#: src/Module/Admin/Site.php:683 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " + +#: src/Module/Admin/Site.php:684 +msgid "Disable picture proxy" +msgstr "Deshabilitar proxy de imagen" + +#: src/Module/Admin/Site.php:684 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "" + +#: src/Module/Admin/Site.php:685 +msgid "Only search in tags" +msgstr "Solo buscar en tags" + +#: src/Module/Admin/Site.php:685 +msgid "On large systems the text search can slow down the system extremely." +msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." + +#: src/Module/Admin/Site.php:687 +msgid "New base url" +msgstr "Nueva URLbase" + +#: src/Module/Admin/Site.php:687 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Cambiar la URL base para este servidor. Envía un mensaje de reubicación a todos los contactos de Friendica y Diaspora* de todos los usuarios." + +#: src/Module/Admin/Site.php:689 +msgid "RINO Encryption" +msgstr "Encryptado RINO" + +#: src/Module/Admin/Site.php:689 +msgid "Encryption layer between nodes." +msgstr "Capa de encryptación entre nodos." + +#: src/Module/Admin/Site.php:689 +msgid "Enabled" +msgstr "" + +#: src/Module/Admin/Site.php:691 +msgid "Maximum number of parallel workers" +msgstr "Numero máximo de trabajos paralelos de fondo." + +#: src/Module/Admin/Site.php:691 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "Don't use \"proc_open\" with the worker" +msgstr "" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enable this if your system doesn't allow the use of \"proc_open\". This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "" + +#: src/Module/Admin/Site.php:693 +msgid "Enable fastlane" +msgstr "Habilitar ascenso rápido" + +#: src/Module/Admin/Site.php:693 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad." + +#: src/Module/Admin/Site.php:694 +msgid "Enable frontend worker" +msgstr "Habilitar trabajador de interfaz" + +#: src/Module/Admin/Site.php:694 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call %s/worker on a regular basis via an external cron job. You should " +"only enable this option if you cannot utilize cron/scheduled jobs on your " +"server." +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "Subscribe to relay" +msgstr "" + +#: src/Module/Admin/Site.php:696 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "" + +#: src/Module/Admin/Site.php:697 +msgid "Relay server" +msgstr "" + +#: src/Module/Admin/Site.php:697 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "" + +#: src/Module/Admin/Site.php:698 +msgid "Direct relay transfer" +msgstr "" + +#: src/Module/Admin/Site.php:698 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "Relay scope" +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "all" +msgstr "" + +#: src/Module/Admin/Site.php:699 +msgid "tags" +msgstr "" + +#: src/Module/Admin/Site.php:700 +msgid "Server tags" +msgstr "" + +#: src/Module/Admin/Site.php:700 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "" + +#: src/Module/Admin/Site.php:701 +msgid "Allow user tags" +msgstr "" + +#: src/Module/Admin/Site.php:701 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "" + +#: src/Module/Admin/Site.php:704 +msgid "Start Relocation" +msgstr "" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "" + +#: src/Module/Admin/Summary.php:71 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d (or -1 for autosizing). See here for more " +"information.
" +msgstr "" + +#: src/Module/Admin/Summary.php:80 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %2$s" + +#: src/Module/Admin/Summary.php:89 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: src/Module/Admin/Summary.php:93 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "" + +#: src/Module/Admin/Summary.php:98 +msgid "The worker was never executed. Please check your database structure!" +msgstr "El trabajador nunca fue ejecutado. ¡Revise la estructura de su base de datos, por favor!" + +#: src/Module/Admin/Summary.php:100 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "La última ejecución del trabajador estaba en %s UTC. Esto es anterior a una hora. Revise tu configuración de crontab, por favor." + +#: src/Module/Admin/Summary.php:105 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:109 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "" + +#: src/Module/Admin/Summary.php:115 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "" + +#: src/Module/Admin/Summary.php:133 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:147 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "" + +#: src/Module/Admin/Summary.php:163 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "" + +#: src/Module/Admin/Summary.php:171 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "" + +#: src/Module/Admin/Summary.php:179 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "" + +#: src/Module/Admin/Summary.php:186 +msgid "Normal Account" +msgstr "Cuenta normal" + +#: src/Module/Admin/Summary.php:187 +msgid "Automatic Follower Account" +msgstr "Cuenta de Seguimiento Automático" + +#: src/Module/Admin/Summary.php:188 +msgid "Public Forum Account" +msgstr "Cuenta del Foro Pública" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Friend Account" +msgstr "Cuenta de amistad automática" + +#: src/Module/Admin/Summary.php:190 +msgid "Blog Account" +msgstr "Cuenta de blog" + +#: src/Module/Admin/Summary.php:191 +msgid "Private Forum Account" +msgstr "Cuenta del Foro Privada" + +#: src/Module/Admin/Summary.php:211 +msgid "Message queues" +msgstr "Cola de mensajes" + +#: src/Module/Admin/Summary.php:217 +msgid "Server Settings" +msgstr "" + +#: src/Module/Admin/Summary.php:233 +msgid "Registered users" +msgstr "Usuarios registrados" + +#: src/Module/Admin/Summary.php:235 +msgid "Pending registrations" +msgstr "Pendientes de registro" + +#: src/Module/Admin/Summary.php:236 +msgid "Version" +msgstr "Versión" + +#: src/Module/Admin/Summary.php:240 +msgid "Active addons" +msgstr "" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Mostrar los Términos de Servicio" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Mostrar las Directivas de Privacidad" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Vista previa de las Directivas de Seguridad" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "Los Términos de Servicio" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior." + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:78 +msgid "Reason for the block" +msgstr "Razón para el bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Marca para eliminar esta entrada de la lista de bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Agregar nueva entrada a la lista de bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Lazón del bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "" + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Añadir Entrada" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Guardar cambios en la lista de bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Entradas actuales en la lista de bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Eliminar entrada de la lista de bloqueo" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "¿Eliminar entrada de la lista de bloqueo?" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Lista de bloqueo de contactos remotos" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. " + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Bloquear Contacto Remoto" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "deseleccionar" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "No se bloquea ningún contacto remoto de este nodo." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Contactos remotos bloqueados" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Bloquear nuevo contacto remoto" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Foto" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "" + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "" + +#: src/Module/Admin/Item/Source.php:57 +msgid "Item Guid" +msgstr "" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Artículo marcado para eliminación." + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Eliminar este artículo" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "El GUID del artículo que quiere eliminar." + +#: src/Module/Admin/Addons/Details.php:70 +msgid "Addon not found." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:81 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "" + +#: src/Module/Admin/Addons/Details.php:84 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "" + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "" + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas pueden que estén ocultas)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Buscar en este sitio" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Resultados para:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Directorio del sitio" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: src/Module/Item/Compose.php:46 +msgid "Please enter a post body." +msgstr "" + +#: src/Module/Item/Compose.php:59 +msgid "This feature is only available with the frio theme." +msgstr "" + +#: src/Module/Item/Compose.php:86 +msgid "Compose new personal note" +msgstr "" + +#: src/Module/Item/Compose.php:95 +msgid "Compose new post" +msgstr "" + +#: src/Module/Item/Compose.php:135 +msgid "Visibility" +msgstr "" + +#: src/Module/Item/Compose.php:156 +msgid "Clear the location" +msgstr "" + +#: src/Module/Item/Compose.php:157 +msgid "Location services are unavailable on your device" +msgstr "" + +#: src/Module/Item/Compose.php:158 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "" + +#: src/Module/Friendica.php:58 +msgid "Installed addons/apps:" +msgstr "" + +#: src/Module/Friendica.php:63 +msgid "No installed addons/apps" +msgstr "" + +#: src/Module/Friendica.php:68 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: src/Module/Friendica.php:75 +msgid "On this server the following remote servers are blocked." +msgstr "En este servidor los siguientes servidores remotos están bloqueados." + +#: src/Module/Friendica.php:93 +#, php-format +msgid "" +"This is Friendica, version %s that is running at the web location %s. The " +"database version is %s, the post update version is %s." +msgstr "" + +#: src/Module/Friendica.php:98 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor." + +#: src/Module/Friendica.php:99 +msgid "Bug reports and issues: please visit" +msgstr "Reporte de fallos y problemas: por favor visita" + +#: src/Module/Friendica.php:99 +msgid "the bugtracker at github" +msgstr "aviso de fallas (bugs) en github" + +#: src/Module/Friendica.php:100 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "" + +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Únicamente tú puedes ver esto" + +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Consejos para nuevos miembros" + +#: src/Module/Photo.php:87 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "" + +#: src/Module/Photo.php:102 +#, php-format +msgid "Invalid photo with id %s." +msgstr "" + +#: src/Module/RemoteFollow.php:67 +msgid "The provided profile link doesn't seem to be valid" +msgstr "" + +#: src/Module/RemoteFollow.php:105 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system, you have to subscribe to %s" +" or %s directly on your system." +msgstr "" + +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Cuenta" + +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Interfaz del usuario" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Aplicaciones conectadas" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65 +msgid "Export personal data" +msgstr "Exportación de datos personales" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Eliminar cuenta" + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Imposible crear el grupo." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "Grupo no encontrado." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "" + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "" + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "" + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "" + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "" + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "" + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "" + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "" + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "" + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Guardar grupo" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Crea un grupo de contactos/amigos." + +#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 +#: src/Model/Group.php:536 +msgid "Group Name: " +msgstr "Nombre del grupo: " + +#: src/Module/Group.php:193 src/Model/Group.php:533 +msgid "Contacts not in any group" +msgstr "Contactos sin grupo" + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "No se puede eliminar el grupo." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Borrar grupo" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Editar nombre de grupo" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Miembros" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "" + +#: src/Module/Group.php:326 +msgid "Click on a contact to add or remove." +msgstr "Pulsa en un contacto para añadirlo o eliminarlo." + +#: src/Module/Group.php:340 +msgid "Add contact to group" +msgstr "" + +#: src/Module/Search/Index.php:53 +msgid "Only logged in users are permitted to perform a search." +msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." + +#: src/Module/Search/Index.php:75 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." + +#: src/Module/Search/Index.php:98 src/Content/Nav.php:219 +#: src/Content/Text/HTML.php:902 +msgid "Search" +msgstr "Buscar" + +#: src/Module/Search/Index.php:184 +#, php-format +msgid "Items tagged with: %s" +msgstr "Objetos taggeado con: %s" + +#: src/Module/Search/Acl.php:55 src/Module/Contact/Poke.php:127 +msgid "You must be logged in to use this module." +msgstr "" + +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "" + +#: src/Module/Search/Saved.php:48 +msgid "Search term already saved." +msgstr "" + +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." +msgstr "" + +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "Nigún perfil" + +#: src/Module/Contact/Poke.php:114 +msgid "Error while sending poke, please retry." +msgstr "" + +#: src/Module/Contact/Poke.php:150 +msgid "Poke/Prod" +msgstr "Toque/Empujón" + +#: src/Module/Contact/Poke.php:151 +msgid "poke, prod or do other things to somebody" +msgstr "da un toque, empujón o similar a alguien" + +#: src/Module/Contact/Poke.php:153 +msgid "Choose what you wish to do to recipient" +msgstr "Elige qué desea hacer con el receptor" + +#: src/Module/Contact/Poke.php:154 +msgid "Make this post private" +msgstr "Hacer esta publicación privada" + +#: src/Module/Contact/Advanced.php:94 +msgid "Contact update failed." +msgstr "Error al actualizar el Contacto." + +#: src/Module/Contact/Advanced.php:111 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." + +#: src/Module/Contact/Advanced.php:112 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página." + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "No mirroring" +msgstr "No espejar" + +#: src/Module/Contact/Advanced.php:123 +msgid "Mirror as forwarded posting" +msgstr "Espejar como reenvio" + +#: src/Module/Contact/Advanced.php:123 src/Module/Contact/Advanced.php:125 +msgid "Mirror as my own posting" +msgstr "Espejar como publicación propia" + +#: src/Module/Contact/Advanced.php:136 +msgid "Return to contact editor" +msgstr "Volver al editor de contactos" + +#: src/Module/Contact/Advanced.php:141 +msgid "Remote Self" +msgstr "Perfil remoto" + +#: src/Module/Contact/Advanced.php:144 +msgid "Mirror postings from this contact" +msgstr "Espejar publicaciones de este contacto" + +#: src/Module/Contact/Advanced.php:146 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." + +#: src/Module/Contact/Advanced.php:151 +msgid "Account Nickname" +msgstr "Apodo de la cuenta" + +#: src/Module/Contact/Advanced.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" + +#: src/Module/Contact/Advanced.php:153 +msgid "Account URL" +msgstr "Dirección de la cuenta" + +#: src/Module/Contact/Advanced.php:154 +msgid "Account URL Alias" +msgstr "" + +#: src/Module/Contact/Advanced.php:155 +msgid "Friend Request URL" +msgstr "Dirección de la solicitud de amistad" + +#: src/Module/Contact/Advanced.php:156 +msgid "Friend Confirm URL" +msgstr "Dirección de confirmación de tu amigo " + +#: src/Module/Contact/Advanced.php:157 +msgid "Notification Endpoint URL" +msgstr "Dirección URL de la notificación" + +#: src/Module/Contact/Advanced.php:158 +msgid "Poll/Feed URL" +msgstr "Dirección del Sondeo/Fuentes" + +#: src/Module/Contact/Advanced.php:159 +msgid "New photo from this URL" +msgstr "Nueva foto de esta dirección" + +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "Sin aplicaciones" + +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Aplicaciones" + +#: src/Module/Settings/Profile/Index.php:85 +msgid "Profile Name is required." +msgstr "Se necesita un nombre de perfil." + +#: src/Module/Settings/Profile/Index.php:137 +msgid "Profile couldn't be updated." +msgstr "" + +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 +msgid "Label:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 +msgid "Value:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 +msgid "Field Permissions" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 +msgid "(click to open/close)" +msgstr "(pulsa para abrir/cerrar)" + +#: src/Module/Settings/Profile/Index.php:205 +msgid "Add a new profile field" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:235 +msgid "Profile Actions" +msgstr "Acciones de perfil" + +#: src/Module/Settings/Profile/Index.php:236 +msgid "Edit Profile Details" +msgstr "Editar detalles de tu perfil" + +#: src/Module/Settings/Profile/Index.php:238 +msgid "Change Profile Photo" +msgstr "Cambiar imagen del Perfil" + +#: src/Module/Settings/Profile/Index.php:243 +msgid "Profile picture" +msgstr "Imagen del perfil" + +#: src/Module/Settings/Profile/Index.php:244 +msgid "Location" +msgstr "Ubicación" + +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 +#: src/Util/Temporal.php:95 +msgid "Miscellaneous" +msgstr "Varios" + +#: src/Module/Settings/Profile/Index.php:246 +msgid "Custom Profile Fields" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:252 +msgid "Display name:" +msgstr "" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Street Address:" +msgstr "Dirección" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Locality/City:" +msgstr "Localidad/Ciudad:" + +#: src/Module/Settings/Profile/Index.php:257 +msgid "Region/State:" +msgstr "Región/Estado:" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Postal/Zip Code:" +msgstr "Código postal:" + +#: src/Module/Settings/Profile/Index.php:259 +msgid "Country:" +msgstr "País" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "XMPP (Jabber) address:" +msgstr "Dirección XMPP (Jabber):" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "La dirección XMPP será propagada entre sus contactos para que puedan seguirle." + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Homepage URL:" +msgstr "Dirección de tu página:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "Public Keywords:" +msgstr "Palabras clave públicas:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Private Keywords:" +msgstr "Palabras clave privadas:" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" + +#: src/Module/Settings/Profile/Index.php:265 +#, php-format +msgid "" +"

Custom fields appear on your profile page.

\n" +"\t\t\t\t

You can use BBCodes in the field values.

\n" +"\t\t\t\t

Reorder by dragging the field title.

\n" +"\t\t\t\t

Empty the label field to remove a custom field.

\n" +"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:102 +#: src/Module/Settings/Profile/Photo/Crop.php:118 +#: src/Module/Settings/Profile/Photo/Crop.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:103 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." + +#: src/Module/Settings/Profile/Photo/Crop.php:139 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." + +#: src/Module/Settings/Profile/Photo/Crop.php:147 +msgid "Unable to process image" +msgstr "Imposible procesar la imagen" + +#: src/Module/Settings/Profile/Photo/Crop.php:166 +msgid "Photo not found." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:190 +msgid "Profile picture successfully updated." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Crop.php:213 +#: src/Module/Settings/Profile/Photo/Crop.php:217 +msgid "Crop Image" +msgstr "Recortar imagen" + +#: src/Module/Settings/Profile/Photo/Crop.php:214 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." + +#: src/Module/Settings/Profile/Photo/Crop.php:216 +msgid "Use Image As Is" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:47 +msgid "Missing uploaded image." +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Profile Picture Settings" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Current Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload Profile Picture" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload Picture:" +msgstr "" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "or" +msgstr "o" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "skip this step" +msgstr "saltar este paso" + +#: src/Module/Settings/Profile/Photo/Index.php:138 +msgid "select a photo from your photo albums" +msgstr "elige una foto de tus álbumes" + +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "" + +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "" + +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "" + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "" + +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "" + +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "" + +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "" + +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "" + +#: src/Module/Settings/Delegation.php:163 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "" + +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "" + +#: src/Module/Settings/Delegation.php:168 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "" + +#: src/Module/Settings/Delegation.php:174 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." + +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "Delegados actuales de la página" + +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Delegados potenciales" + +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "Añadir" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "Sin entradas." + +#: src/Module/Settings/TwoFactor/Index.php:67 +msgid "Two-factor authentication successfully disabled." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:88 +msgid "Wrong Password" +msgstr "Contraseña incorrecta" + +#: src/Module/Settings/TwoFactor/Index.php:108 +msgid "" +"

Use an application on a mobile device to get two-factor authentication " +"codes when prompted on login.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:112 +msgid "Authenticator app" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:113 +msgid "Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:113 +msgid "Not Configured" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:114 +msgid "

You haven't finished configuring your authenticator app.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:115 +msgid "

Your authenticator app is correctly configured.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:118 +msgid "Remaining valid codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "" +"

These one-use codes can replace an authenticator app code in case you " +"have lost access to it.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:122 +msgid "App-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:123 +msgid "Generated app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "" +"

These randomly generated passwords allow you to authenticate on apps not " +"supporting two-factor authentication.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:128 +msgid "Current password:" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:128 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:129 +msgid "Enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "Disable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:131 +msgid "Show recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:132 +msgid "Manage app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:133 +msgid "Finish app configuration" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:56 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +msgid "Please enter your password to access this page." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:78 +msgid "Two-factor authentication successfully activated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:111 +#, php-format +msgid "" +"

Or you can submit the authentication settings manually:

\n" +"
\n" +"\t
Issuer
\n" +"\t
%s
\n" +"\t
Account Name
\n" +"\t
%s
\n" +"\t
Secret Key
\n" +"\t
%s
\n" +"\t
Type
\n" +"\t
Time-based
\n" +"\t
Number of digits
\n" +"\t
6
\n" +"\t
Hashing algorithm
\n" +"\t
SHA-1
\n" +"
" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:131 +msgid "Two-factor code verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:133 +msgid "" +"

Please scan this QR Code with your authenticator app and submit the " +"provided code.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:135 +#, php-format +msgid "" +"

Or you can open the following URL in your mobile devicde:

%s

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Verify.php:142 +msgid "Verify code and enable two-factor authentication" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:66 +msgid "New recovery codes successfully generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:92 +msgid "Two-factor recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:94 +msgid "" +"

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

App-specific passwords are randomly generated passwords used instead your" +" regular password to authenticate your account on third-party applications " +"that don't support two-factor authentication.

" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +msgid "" +"When you generate a new app-specific password, you must use it right away, " +"it will be shown to you once after you generate it." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "" + +#: src/Module/Settings/Display.php:101 +msgid "The theme you chose isn't available." +msgstr "" + +#: src/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Unsupported)" +msgstr "" + +#: src/Module/Settings/Display.php:181 +msgid "Display Settings" +msgstr "Configuración Tema/Visualización" + +#: src/Module/Settings/Display.php:183 +msgid "General Theme Settings" +msgstr "Ajustes generales de tema" + +#: src/Module/Settings/Display.php:184 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados de tema" + +#: src/Module/Settings/Display.php:185 +msgid "Content Settings" +msgstr "Ajustes de contenido" + +#: src/Module/Settings/Display.php:187 +msgid "Calendar" +msgstr "Calendario" + +#: src/Module/Settings/Display.php:193 +msgid "Display Theme:" +msgstr "Utilizar tema:" + +#: src/Module/Settings/Display.php:194 +msgid "Mobile Theme:" +msgstr "Tema móvil:" + +#: src/Module/Settings/Display.php:197 +msgid "Number of items to display per page:" +msgstr "Número de elementos a mostrar por página:" + +#: src/Module/Settings/Display.php:197 src/Module/Settings/Display.php:198 +msgid "Maximum of 100 items" +msgstr "Máximo 100 elementos" + +#: src/Module/Settings/Display.php:198 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Cantidad de objetos a visualizar cuando se usa un movil" + +#: src/Module/Settings/Display.php:199 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" + +#: src/Module/Settings/Display.php:199 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." + +#: src/Module/Settings/Display.php:200 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "" + +#: src/Module/Settings/Display.php:200 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "" + +#: src/Module/Settings/Display.php:201 +msgid "Don't show emoticons" +msgstr "No mostrar emoticones" + +#: src/Module/Settings/Display.php:201 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "" + +#: src/Module/Settings/Display.php:202 +msgid "Infinite scroll" +msgstr "pagina infinita (sroll)" + +#: src/Module/Settings/Display.php:202 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:203 +msgid "Disable Smart Threading" +msgstr "" + +#: src/Module/Settings/Display.php:203 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "" + +#: src/Module/Settings/Display.php:204 +msgid "Hide the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:204 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:206 +msgid "Beginning of week:" +msgstr "Principio de la semana:" + +#: src/Module/Settings/UserExport.php:57 +msgid "Export account" +msgstr "Exportar cuenta" + +#: src/Module/Settings/UserExport.php:57 +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 la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." + +#: src/Module/Settings/UserExport.php:58 +msgid "Export all" +msgstr "Exportar todo" + +#: src/Module/Settings/UserExport.php:58 +msgid "" +"Export your account 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 "" + +#: src/Module/Settings/UserExport.php:59 +msgid "Export Contacts to CSV" +msgstr "" + +#: src/Module/Settings/UserExport.php:59 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "" + +#: src/Module/Maintenance.php:46 +msgid "System down for maintenance" +msgstr "Servicio suspendido por mantenimiento" + +#: src/Protocol/OStatus.php:1784 +#, php-format +msgid "%s is now following %s." +msgstr "%s sigue ahora a %s." + +#: src/Protocol/OStatus.php:1785 +msgid "following" +msgstr "siguiendo" + +#: src/Protocol/OStatus.php:1788 +#, php-format +msgid "%s stopped following %s." +msgstr "%s dejó de seguir a %s." + +#: src/Protocol/OStatus.php:1789 +msgid "stopped following" +msgstr "dejó de seguir" + +#: src/Protocol/Diaspora.php:3650 +msgid "Attachments:" +msgstr "Archivos adjuntos:" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrador" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: src/Util/EMailer/NotifyMailBuilder.php:193 +#: src/Util/EMailer/NotifyMailBuilder.php:217 +#: src/Util/EMailer/SystemMailBuilder.php:101 +#: src/Util/EMailer/SystemMailBuilder.php:118 +msgid "thanks" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:212 +msgid "Friendica Notification" +msgstr "Notificación de Friendica" + +#: src/Util/Temporal.php:167 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: src/Util/Temporal.php:314 +msgid "never" +msgstr "nunca" + +#: src/Util/Temporal.php:321 +msgid "less than a second ago" +msgstr "hace menos de un segundo" + +#: src/Util/Temporal.php:329 +msgid "year" +msgstr "año" + +#: src/Util/Temporal.php:329 +msgid "years" +msgstr "años" + +#: src/Util/Temporal.php:330 +msgid "months" +msgstr "meses" + +#: src/Util/Temporal.php:331 +msgid "weeks" +msgstr "semanas" + +#: src/Util/Temporal.php:332 +msgid "days" +msgstr "días" + +#: src/Util/Temporal.php:333 +msgid "hour" +msgstr "hora" + +#: src/Util/Temporal.php:333 +msgid "hours" +msgstr "horas" + +#: src/Util/Temporal.php:334 +msgid "minute" +msgstr "minuto" + +#: src/Util/Temporal.php:334 +msgid "minutes" +msgstr "minutos" + +#: src/Util/Temporal.php:335 +msgid "second" +msgstr "segundo" + +#: src/Util/Temporal.php:335 +msgid "seconds" +msgstr "segundos" + +#: src/Util/Temporal.php:345 +#, php-format +msgid "in %1$d %2$s" +msgstr "" + +#: src/Util/Temporal.php:348 +#, php-format +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: src/Model/Storage/Database.php:74 +#, php-format +msgid "Database storage failed to update %s" +msgstr "" + +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "" + +#: src/Model/Storage/Filesystem.php:100 +#, php-format +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "" + +#: src/Model/Storage/Filesystem.php:148 +#, php-format +msgid "" +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "" + +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "" + +#: src/Model/Storage/Filesystem.php:178 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "" + +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "" + +#: src/Model/Item.php:3334 +msgid "activity" +msgstr "Actividad" + +#: src/Model/Item.php:3339 msgid "post" msgstr "Publicación" -#: src/Model/Item.php:3364 +#: src/Model/Item.php:3462 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3539 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3519 +#: src/Model/Item.php:3584 msgid "View on separate page" msgstr "Ver en pagina aparte" -#: src/Model/Item.php:3520 +#: src/Model/Item.php:3585 msgid "view on separate page" msgstr "ver en pagina aparte" -#: src/Model/Mail.php:38 src/Model/Mail.php:170 +#: src/Model/Item.php:3590 src/Model/Item.php:3596 +#: src/Content/Text/BBCode.php:1071 +msgid "link to source" +msgstr "Enlace al original" + +#: src/Model/Mail.php:128 src/Model/Mail.php:263 msgid "[no subject]" msgstr "[sin asunto]" -#: src/Model/Profile.php:112 -msgid "Requested account is not available." -msgstr "La cuenta solicitada no está disponible." - -#: src/Model/Profile.php:130 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." - -#: src/Model/Profile.php:178 src/Model/Profile.php:419 -#: src/Model/Profile.php:873 -msgid "Edit profile" -msgstr "Editar perfil" - -#: src/Model/Profile.php:353 -msgid "Atom feed" -msgstr "Atom feed" - -#: src/Model/Profile.php:392 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" - -#: src/Model/Profile.php:444 src/Module/Contact.php:648 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:568 src/Model/Profile.php:666 -msgid "g A l F d" -msgstr "g A l F d" - -#: src/Model/Profile.php:569 -msgid "F d" -msgstr "F d" - -#: src/Model/Profile.php:631 src/Model/Profile.php:717 -msgid "[today]" -msgstr "[hoy]" - -#: src/Model/Profile.php:642 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: src/Model/Profile.php:643 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: src/Model/Profile.php:704 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: src/Model/Profile.php:731 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: src/Model/Profile.php:732 -msgid "Upcoming events the next 7 days:" +#: src/Model/Contact.php:1166 src/Model/Contact.php:1179 +msgid "UnFollow" msgstr "" -#: src/Model/Profile.php:755 -msgid "Member since:" +#: src/Model/Contact.php:1175 +msgid "Drop Contact" +msgstr "Eliminar contacto" + +#: src/Model/Contact.php:1727 +msgid "Organisation" +msgstr "Organización" + +#: src/Model/Contact.php:1731 +msgid "News" +msgstr "Noticias" + +#: src/Model/Contact.php:1735 +msgid "Forum" +msgstr "Foro" + +#: src/Model/Contact.php:2298 +msgid "Connect URL missing." +msgstr "Falta el conector URL." + +#: src/Model/Contact.php:2307 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Profile.php:763 -msgid "j F, Y" -msgstr "j F, Y" +#: src/Model/Contact.php:2348 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." -#: src/Model/Profile.php:764 -msgid "j F" -msgstr "j F" +#: src/Model/Contact.php:2349 src/Model/Contact.php:2362 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." -#: src/Model/Profile.php:772 src/Util/Temporal.php:146 -msgid "Birthday:" -msgstr "Fecha de nacimiento:" +#: src/Model/Contact.php:2360 +msgid "The profile address specified does not provide adequate information." +msgstr "La dirección del perfil especificado no proporciona información adecuada." -#: src/Model/Profile.php:779 -msgid "Age:" -msgstr "Edad:" +#: src/Model/Contact.php:2365 +msgid "An author or name was not found." +msgstr "No se ha encontrado un autor o nombre." -#: src/Model/Profile.php:792 +#: src/Model/Contact.php:2368 +msgid "No browser URL could be matched to this address." +msgstr "Ninguna dirección concuerda con la suministrada." + +#: src/Model/Contact.php:2371 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." + +#: src/Model/Contact.php:2372 +msgid "Use mailto: in front of address to force email check." +msgstr "Escribe mailto: al principio de la dirección para forzar el envío." + +#: src/Model/Contact.php:2378 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." + +#: src/Model/Contact.php:2383 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." + +#: src/Model/Contact.php:2445 +msgid "Unable to retrieve contact information." +msgstr "No ha sido posible recibir la información del contacto." + +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:452 +#: src/Model/Event.php:930 +msgid "Starts:" +msgstr "Inicio:" + +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:453 +#: src/Model/Event.php:934 +msgid "Finishes:" +msgstr "Final:" + +#: src/Model/Event.php:402 +msgid "all-day" +msgstr "todo el día" + +#: src/Model/Event.php:428 +msgid "Sept" +msgstr "Sept" + +#: src/Model/Event.php:450 +msgid "No events to display" +msgstr "No hay eventos a mostrar" + +#: src/Model/Event.php:578 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:609 +msgid "Edit event" +msgstr "Editar evento" + +#: src/Model/Event.php:610 +msgid "Duplicate event" +msgstr "Duplicar evento" + +#: src/Model/Event.php:611 +msgid "Delete event" +msgstr "Borrar evento" + +#: src/Model/Event.php:863 +msgid "D g:i A" +msgstr "D g:i A" + +#: src/Model/Event.php:864 +msgid "g:i A" +msgstr "g:i A" + +#: src/Model/Event.php:949 src/Model/Event.php:951 +msgid "Show map" +msgstr "Mostrar mapa" + +#: src/Model/Event.php:950 +msgid "Hide map" +msgstr "Ocultar mapa" + +#: src/Model/Event.php:1042 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +msgid "%s's birthday" +msgstr "Cumpleaños de %s" -#: src/Model/Profile.php:816 -msgid "Religion:" -msgstr "Religión:" - -#: src/Model/Profile.php:824 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" - -#: src/Model/Profile.php:836 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y Redes sociales:" - -#: src/Model/Profile.php:840 -msgid "Musical interests:" -msgstr "Intereses musicales:" - -#: src/Model/Profile.php:844 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: src/Model/Profile.php:848 -msgid "Television:" -msgstr "Televisión:" - -#: src/Model/Profile.php:852 -msgid "Film/dance/culture/entertainment:" -msgstr "Películas/baile/cultura/entretenimiento:" - -#: src/Model/Profile.php:856 -msgid "Love/Romance:" -msgstr "Amor/Romance:" - -#: src/Model/Profile.php:860 -msgid "Work/employment:" -msgstr "Trabajo/ocupación:" - -#: src/Model/Profile.php:864 -msgid "School/education:" -msgstr "Escuela/estudios:" - -#: src/Model/Profile.php:869 -msgid "Forums:" -msgstr "Foros:" - -#: src/Model/Profile.php:913 src/Module/Contact.php:873 -msgid "Profile Details" -msgstr "Detalles del Perfil" - -#: src/Model/Profile.php:963 -msgid "Only You Can See This" -msgstr "Únicamente tú puedes ver esto" - -#: src/Model/Profile.php:971 src/Model/Profile.php:974 -msgid "Tips for New Members" -msgstr "Consejos para nuevos miembros" - -#: src/Model/Profile.php:1147 +#: src/Model/Event.php:1043 #, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" +msgid "Happy Birthday %s" +msgstr "Feliz cumpleaños %s" -#: src/Model/User.php:216 +#: src/Model/User.php:374 msgid "Login failed" msgstr "" -#: src/Model/User.php:247 +#: src/Model/User.php:406 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:325 +#: src/Model/User.php:500 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:344 +#: src/Model/User.php:519 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:348 +#: src/Model/User.php:523 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:354 +#: src/Model/User.php:529 msgid "" "The password can't contain accentuated letters, white spaces or colons (:)" msgstr "" -#: src/Model/User.php:452 +#: src/Model/User.php:627 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." -#: src/Model/User.php:459 +#: src/Model/User.php:634 msgid "An invitation is required." msgstr "Se necesita invitación." -#: src/Model/User.php:463 +#: src/Model/User.php:638 msgid "Invitation could not be verified." msgstr "No se puede verificar la invitación." -#: src/Model/User.php:470 +#: src/Model/User.php:646 msgid "Invalid OpenID url" msgstr "Dirección OpenID no válida" -#: src/Model/User.php:483 src/Module/Login.php:105 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." - -#: src/Model/User.php:483 src/Module/Login.php:105 -msgid "The error message was:" -msgstr "El mensaje del error fue:" - -#: src/Model/User.php:489 +#: src/Model/User.php:665 msgid "Please enter the required information." msgstr "Por favor, introduce la información necesaria." -#: src/Model/User.php:505 +#: src/Model/User.php:679 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "" -#: src/Model/User.php:512 +#: src/Model/User.php:686 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:516 +#: src/Model/User.php:690 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:524 +#: src/Model/User.php:698 msgid "That doesn't appear to be your full (First Last) name." msgstr "No parece que ese sea tu nombre completo." -#: src/Model/User.php:529 +#: src/Model/User.php:703 msgid "Your email domain is not among those allowed on this site." msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." -#: src/Model/User.php:533 +#: src/Model/User.php:707 msgid "Not a valid email address." msgstr "No es una dirección de correo electrónico válida." -#: src/Model/User.php:536 +#: src/Model/User.php:710 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:540 src/Model/User.php:548 +#: src/Model/User.php:714 src/Model/User.php:722 msgid "Cannot use that email." msgstr "No se puede utilizar este correo electrónico." -#: src/Model/User.php:555 +#: src/Model/User.php:729 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:562 src/Model/User.php:619 +#: src/Model/User.php:737 src/Model/User.php:794 msgid "Nickname is already registered. Please choose another." msgstr "Apodo ya registrado. Por favor, elije otro." -#: src/Model/User.php:572 +#: src/Model/User.php:747 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." -#: src/Model/User.php:606 src/Model/User.php:610 +#: src/Model/User.php:781 src/Model/User.php:785 msgid "An error occurred during registration. Please try again." msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." -#: src/Model/User.php:630 view/theme/duepuntozero/config.php:55 -msgid "default" -msgstr "predeterminado" - -#: src/Model/User.php:635 +#: src/Model/User.php:808 msgid "An error occurred creating your default profile. Please try again." msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." -#: src/Model/User.php:642 +#: src/Model/User.php:815 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:651 +#: src/Model/User.php:820 +msgid "Friends" +msgstr "Amigos" + +#: src/Model/User.php:824 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "" -#: src/Model/User.php:726 +#: src/Model/User.php:1012 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: src/Model/User.php:1015 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "" + +#: src/Model/User.php:1048 src/Model/User.php:1155 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles de registro para %s" + +#: src/Model/User.php:1068 #, php-format msgid "" "\n" @@ -8802,21 +9811,21 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:743 +#: src/Model/User.php:1087 #, php-format msgid "Registration at %s" msgstr "Registro en %s" -#: src/Model/User.php:761 +#: src/Model/User.php:1111 #, php-format msgid "" "\n" -"\t\t\tDear %1$s,\n" +"\t\t\t\tDear %1$s,\n" "\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t" +"\t\t\t" msgstr "" -#: src/Model/User.php:767 +#: src/Model/User.php:1119 #, php-format msgid "" "\n" @@ -8848,943 +9857,567 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Module/Contact.php:167 +#: src/Model/Group.php:92 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Grupo por defecto para nuevos contactos" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Todo el mundo" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "editar" + +#: src/Model/Group.php:527 +msgid "add" +msgstr "añadir" + +#: src/Model/Group.php:532 +msgid "Edit group" +msgstr "Editar grupo" + +#: src/Model/Group.php:535 +msgid "Create a new group" +msgstr "Crear un nuevo grupo" + +#: src/Model/Group.php:537 +msgid "Edit groups" +msgstr "Editar grupo" + +#: src/Model/Profile.php:348 +msgid "Change profile photo" +msgstr "Cambiar foto del perfil" + +#: src/Model/Profile.php:452 +msgid "Atom feed" +msgstr "Atom feed" + +#: src/Model/Profile.php:490 src/Model/Profile.php:587 +msgid "g A l F d" +msgstr "g A l F d" + +#: src/Model/Profile.php:491 +msgid "F d" +msgstr "F d" + +#: src/Model/Profile.php:553 src/Model/Profile.php:638 +msgid "[today]" +msgstr "[hoy]" + +#: src/Model/Profile.php:563 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: src/Model/Profile.php:564 +msgid "Birthdays this week:" +msgstr "Cumpleaños esta semana:" + +#: src/Model/Profile.php:625 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: src/Model/Profile.php:651 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: src/Model/Profile.php:652 +msgid "Upcoming events the next 7 days:" +msgstr "" + +#: src/Model/Profile.php:827 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contacto editado." -msgstr[1] "%d contacts edited." +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" -#: src/Module/Contact.php:192 src/Module/Contact.php:375 -msgid "Could not access contact record." -msgstr "No se pudo acceder a los datos del contacto." +#: src/Content/Widget.php:52 +msgid "Add New Contact" +msgstr "Añadir nuevo contacto" -#: src/Module/Contact.php:202 -msgid "Could not locate selected profile." -msgstr "No se pudo encontrar el perfil seleccionado." +#: src/Content/Widget.php:53 +msgid "Enter address or web location" +msgstr "Escribe la dirección o página web" -#: src/Module/Contact.php:234 -msgid "Contact updated." -msgstr "Contacto actualizado." +#: src/Content/Widget.php:54 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" -#: src/Module/Contact.php:396 -msgid "Contact has been blocked" -msgstr "El contacto ha sido bloqueado" +#: src/Content/Widget.php:56 +msgid "Connect" +msgstr "Conectar" -#: src/Module/Contact.php:396 -msgid "Contact has been unblocked" -msgstr "El contacto ha sido desbloqueado" - -#: src/Module/Contact.php:406 -msgid "Contact has been ignored" -msgstr "El contacto ha sido ignorado" - -#: src/Module/Contact.php:406 -msgid "Contact has been unignored" -msgstr "El contacto ya no está ignorado" - -#: src/Module/Contact.php:416 -msgid "Contact has been archived" -msgstr "El contacto ha sido archivado" - -#: src/Module/Contact.php:416 -msgid "Contact has been unarchived" -msgstr "El contacto ya no está archivado" - -#: src/Module/Contact.php:440 -msgid "Drop contact" -msgstr "Eliminar contacto" - -#: src/Module/Contact.php:443 src/Module/Contact.php:821 -msgid "Do you really want to delete this contact?" -msgstr "¿Estás seguro de que quieres eliminar este contacto?" - -#: src/Module/Contact.php:457 -msgid "Contact has been removed." -msgstr "El contacto ha sido eliminado" - -#: src/Module/Contact.php:488 +#: src/Content/Widget.php:71 #, php-format -msgid "You are mutual friends with %s" -msgstr "Ahora tienes una amistad mutua con %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación disponible" +msgstr[1] "%d invitaviones disponibles" -#: src/Module/Contact.php:493 +#: src/Content/Widget.php:219 +msgid "Everyone" +msgstr "" + +#: src/Content/Widget.php:248 +msgid "Relationships" +msgstr "" + +#: src/Content/Widget.php:289 +msgid "Protocols" +msgstr "" + +#: src/Content/Widget.php:291 +msgid "All Protocols" +msgstr "" + +#: src/Content/Widget.php:328 +msgid "Saved Folders" +msgstr "Directorios guardados" + +#: src/Content/Widget.php:330 src/Content/Widget.php:369 +msgid "Everything" +msgstr "Todo" + +#: src/Content/Widget.php:367 +msgid "Categories" +msgstr "Categorías" + +#: src/Content/Widget.php:445 #, php-format -msgid "You are sharing with %s" -msgstr "Estás compartiendo con %s" +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contacto en común" +msgstr[1] "%d contactos en común" -#: src/Module/Contact.php:498 +#: src/Content/Widget.php:539 +msgid "Archives" +msgstr "Archivos" + +#: src/Content/ContactSelector.php:48 +msgid "Frequently" +msgstr "" + +#: src/Content/ContactSelector.php:49 +msgid "Hourly" +msgstr "" + +#: src/Content/ContactSelector.php:50 +msgid "Twice daily" +msgstr "" + +#: src/Content/ContactSelector.php:51 +msgid "Daily" +msgstr "" + +#: src/Content/ContactSelector.php:52 +msgid "Weekly" +msgstr "" + +#: src/Content/ContactSelector.php:53 +msgid "Monthly" +msgstr "" + +#: src/Content/ContactSelector.php:99 +msgid "DFRN" +msgstr "" + +#: src/Content/ContactSelector.php:100 +msgid "OStatus" +msgstr "" + +#: src/Content/ContactSelector.php:101 +msgid "RSS/Atom" +msgstr "" + +#: src/Content/ContactSelector.php:104 +msgid "Zot!" +msgstr "" + +#: src/Content/ContactSelector.php:105 +msgid "LinkedIn" +msgstr "" + +#: src/Content/ContactSelector.php:106 +msgid "XMPP/IM" +msgstr "" + +#: src/Content/ContactSelector.php:107 +msgid "MySpace" +msgstr "" + +#: src/Content/ContactSelector.php:108 +msgid "Google+" +msgstr "" + +#: src/Content/ContactSelector.php:109 +msgid "pump.io" +msgstr "" + +#: src/Content/ContactSelector.php:110 +msgid "Twitter" +msgstr "" + +#: src/Content/ContactSelector.php:111 +msgid "Discourse" +msgstr "" + +#: src/Content/ContactSelector.php:112 +msgid "Diaspora Connector" +msgstr "" + +#: src/Content/ContactSelector.php:113 +msgid "GNU Social Connector" +msgstr "" + +#: src/Content/ContactSelector.php:114 +msgid "ActivityPub" +msgstr "" + +#: src/Content/ContactSelector.php:115 +msgid "pnut" +msgstr "" + +#: src/Content/ContactSelector.php:149 #, php-format -msgid "%s is sharing with you" -msgstr "%s está compartiendo contigo" +msgid "%s (via %s)" +msgstr "" -#: src/Module/Contact.php:522 -msgid "Private communications are not available for this contact." -msgstr "Las comunicaciones privadas no está disponibles para este contacto." +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Opciones generales" -#: src/Module/Contact.php:524 -msgid "Never" -msgstr "Nunca" +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Localización foto" -#: src/Module/Contact.php:527 -msgid "(Update was successful)" -msgstr "(La actualización se ha completado)" +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa." -#: src/Module/Contact.php:527 -msgid "(Update was not successful)" -msgstr "(La actualización no se ha completado)" +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "" -#: src/Module/Contact.php:529 src/Module/Contact.php:1059 -msgid "Suggest friends" -msgstr "Sugerir amigos" +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "" -#: src/Module/Contact.php:533 +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Opciones de edición de publicaciones." + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Auto-mencionar foros" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "" + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Herramienta de publicaciones/respuestas" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Categorías de publicaciones" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Ajustes avanzados del perfil" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "Listar foros" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles." + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "" + +#: src/Content/Nav.php:89 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" + +#: src/Content/Nav.php:94 +msgid "Clear notifications" +msgstr "Limpiar notificaciones" + +#: src/Content/Nav.php:95 src/Content/Text/HTML.php:904 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, contenido" + +#: src/Content/Nav.php:168 +msgid "End this session" +msgstr "Cerrar la sesión" + +#: src/Content/Nav.php:170 +msgid "Sign in" +msgstr "Date de alta" + +#: src/Content/Nav.php:181 +msgid "Personal notes" +msgstr "Notas personales" + +#: src/Content/Nav.php:181 +msgid "Your personal notes" +msgstr "Tus notas personales" + +#: src/Content/Nav.php:201 src/Content/Nav.php:262 +msgid "Home" +msgstr "Inicio" + +#: src/Content/Nav.php:201 +msgid "Home Page" +msgstr "Página de inicio" + +#: src/Content/Nav.php:205 +msgid "Create an account" +msgstr "Crea una cuenta" + +#: src/Content/Nav.php:211 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: src/Content/Nav.php:215 +msgid "Apps" +msgstr "Aplicaciones" + +#: src/Content/Nav.php:215 +msgid "Addon applications, utilities, games" +msgstr "Aplicaciones, utilidades, juegos" + +#: src/Content/Nav.php:219 +msgid "Search site content" +msgstr " Busca contenido en la página" + +#: src/Content/Nav.php:222 src/Content/Text/HTML.php:911 +msgid "Full Text" +msgstr "Texto completo" + +#: src/Content/Nav.php:223 src/Content/Widget/TagCloud.php:68 +#: src/Content/Text/HTML.php:912 +msgid "Tags" +msgstr "Tags" + +#: src/Content/Nav.php:243 +msgid "Community" +msgstr "Comunidad" + +#: src/Content/Nav.php:243 +msgid "Conversations on this and other servers" +msgstr "" + +#: src/Content/Nav.php:250 +msgid "Directory" +msgstr "Directorio" + +#: src/Content/Nav.php:250 +msgid "People directory" +msgstr "Directorio de usuarios" + +#: src/Content/Nav.php:252 +msgid "Information about this friendica instance" +msgstr "Información sobre esta instancia de friendica" + +#: src/Content/Nav.php:255 +msgid "Terms of Service of this Friendica instance" +msgstr "" + +#: src/Content/Nav.php:266 +msgid "Introductions" +msgstr "Presentaciones" + +#: src/Content/Nav.php:266 +msgid "Friend Requests" +msgstr "Solicitudes de amistad" + +#: src/Content/Nav.php:268 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: src/Content/Nav.php:269 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones del sistema como leídas" + +#: src/Content/Nav.php:273 +msgid "Inbox" +msgstr "Entrada" + +#: src/Content/Nav.php:274 +msgid "Outbox" +msgstr "Enviados" + +#: src/Content/Nav.php:278 +msgid "Accounts" +msgstr "" + +#: src/Content/Nav.php:278 +msgid "Manage other pages" +msgstr "Administrar otras páginas" + +#: src/Content/Nav.php:288 +msgid "Site setup and configuration" +msgstr "Opciones y configuración del sitio" + +#: src/Content/Nav.php:291 +msgid "Navigation" +msgstr "Navegación" + +#: src/Content/Nav.php:291 +msgid "Site map" +msgstr "Mapa del sitio" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Eliminar término" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export" +msgstr "Exportar" + +#: src/Content/Widget/CalendarExport.php:64 +msgid "Export calendar as ical" +msgstr "Exportar calendario como ical" + +#: src/Content/Widget/CalendarExport.php:65 +msgid "Export calendar as csv" +msgstr "Exportar calendario como csv" + +#: src/Content/Widget/TrendingTags.php:51 #, php-format -msgid "Network type: %s" -msgstr "Tipo de red: %s" +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "" +msgstr[1] "" -#: src/Module/Contact.php:538 -msgid "Communications lost with this contact!" -msgstr "¡Se ha perdido la comunicación con este contacto!" - -#: src/Module/Contact.php:544 -msgid "Fetch further information for feeds" -msgstr "Recaudar informacion complementaria de los feeds" - -#: src/Module/Contact.php:546 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" msgstr "" -#: src/Module/Contact.php:549 -msgid "Fetch information" -msgstr "Recaudar informacion" +#: src/Content/Widget/ContactBlock.php:72 +msgid "No contacts" +msgstr "Sin contactos" -#: src/Module/Contact.php:550 -msgid "Fetch keywords" -msgstr "" - -#: src/Module/Contact.php:551 -msgid "Fetch information and keywords" -msgstr "Recaudar informacion y palabras claves" - -#: src/Module/Contact.php:583 -msgid "Profile Visibility" -msgstr "Visibilidad del Perfil" - -#: src/Module/Contact.php:584 -msgid "Contact Information / Notes" -msgstr "Información del Contacto / Notas" - -#: src/Module/Contact.php:585 -msgid "Contact Settings" -msgstr "Ajustes del contacto" - -#: src/Module/Contact.php:594 -msgid "Contact" -msgstr "Contacto" - -#: src/Module/Contact.php:598 +#: src/Content/Widget/ContactBlock.php:104 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura." +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Contacto" +msgstr[1] "%d Contactos" -#: src/Module/Contact.php:600 -msgid "Their personal note" -msgstr "Su nota personal" +#: src/Content/Widget/ContactBlock.php:123 +msgid "View Contacts" +msgstr "Ver contactos" -#: src/Module/Contact.php:602 -msgid "Edit contact notes" -msgstr "Editar notas del contacto" +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "más nuevo" -#: src/Module/Contact.php:606 -msgid "Block/Unblock contact" -msgstr "Boquear/Desbloquear contacto" +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "más antiguo" -#: src/Module/Contact.php:607 -msgid "Ignore contact" -msgstr "Ignorar contacto" +#: src/Content/OEmbed.php:266 +msgid "Embedding disabled" +msgstr "Contenido incrustrado desabilitado" -#: src/Module/Contact.php:608 -msgid "Repair URL settings" -msgstr "Configuración de reparación de la dirección" +#: src/Content/OEmbed.php:388 +msgid "Embedded content" +msgstr "Contenido integrado" -#: src/Module/Contact.php:609 -msgid "View conversations" -msgstr "Ver conversaciones" +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "ant." -#: src/Module/Contact.php:614 -msgid "Last update:" -msgstr "Última actualización:" +#: src/Content/Pager.php:281 +msgid "last" +msgstr "última" -#: src/Module/Contact.php:616 -msgid "Update public posts" -msgstr "Actualizar publicaciones públicas" +#: src/Content/Text/HTML.php:802 +msgid "Loading more entries..." +msgstr "Cargar mas entradas .." -#: src/Module/Contact.php:618 src/Module/Contact.php:1069 -msgid "Update now" -msgstr "Actualizar ahora" +#: src/Content/Text/HTML.php:803 +msgid "The end" +msgstr "El fin" -#: src/Module/Contact.php:624 src/Module/Contact.php:826 -#: src/Module/Contact.php:1086 -msgid "Unignore" -msgstr "Quitar de Ignorados" +#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523 +msgid "Click to open/close" +msgstr "Pulsa para abrir/cerrar" -#: src/Module/Contact.php:628 -msgid "Currently blocked" -msgstr "Bloqueados" +#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605 +#: src/Content/Text/BBCode.php:1606 +msgid "Image/photo" +msgstr "Imagen/Foto" -#: src/Module/Contact.php:629 -msgid "Currently ignored" -msgstr "Ignorados" - -#: src/Module/Contact.php:630 -msgid "Currently archived" -msgstr "Archivados" - -#: src/Module/Contact.php:631 -msgid "Awaiting connection acknowledge" -msgstr "" - -#: src/Module/Contact.php:632 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." - -#: src/Module/Contact.php:633 -msgid "Notification for new posts" -msgstr "Notificacion de nuevos temas." - -#: src/Module/Contact.php:633 -msgid "Send a notification of every new post of this contact" -msgstr "Enviar una notificacion por nuevos temas de este contacto." - -#: src/Module/Contact.php:636 -msgid "Blacklisted keywords" -msgstr "Lista negra de palabras" - -#: src/Module/Contact.php:636 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado" - -#: src/Module/Contact.php:653 -msgid "Actions" -msgstr "Acciones" - -#: src/Module/Contact.php:699 -msgid "Suggestions" -msgstr "Sugerencias" - -#: src/Module/Contact.php:702 -msgid "Suggest potential friends" -msgstr "Amistades potenciales sugeridas" - -#: src/Module/Contact.php:710 -msgid "Show all contacts" -msgstr "Mostrar todos los contactos" - -#: src/Module/Contact.php:715 -msgid "Unblocked" -msgstr "Desbloqueados" - -#: src/Module/Contact.php:718 -msgid "Only show unblocked contacts" -msgstr "Mostrar solo contactos sin bloquear" - -#: src/Module/Contact.php:723 -msgid "Blocked" -msgstr "Bloqueados" - -#: src/Module/Contact.php:726 -msgid "Only show blocked contacts" -msgstr "Mostrar solo contactos bloqueados" - -#: src/Module/Contact.php:731 -msgid "Ignored" -msgstr "Ignorados" - -#: src/Module/Contact.php:734 -msgid "Only show ignored contacts" -msgstr "Mostrar solo contactos ignorados" - -#: src/Module/Contact.php:739 -msgid "Archived" -msgstr "Archivados" - -#: src/Module/Contact.php:742 -msgid "Only show archived contacts" -msgstr "Mostrar solo contactos archivados" - -#: src/Module/Contact.php:747 -msgid "Hidden" -msgstr "Ocultos" - -#: src/Module/Contact.php:750 -msgid "Only show hidden contacts" -msgstr "Mostrar solo contactos ocultos" - -#: src/Module/Contact.php:758 -msgid "Organize your contact groups" -msgstr "" - -#: src/Module/Contact.php:816 -msgid "Search your contacts" -msgstr "Buscar en tus contactos" - -#: src/Module/Contact.php:827 src/Module/Contact.php:1095 -msgid "Archive" -msgstr "Archivo" - -#: src/Module/Contact.php:827 src/Module/Contact.php:1095 -msgid "Unarchive" -msgstr "Sin archivar" - -#: src/Module/Contact.php:830 -msgid "Batch Actions" -msgstr "Accones en lote" - -#: src/Module/Contact.php:857 -msgid "Conversations started by this contact" -msgstr "" - -#: src/Module/Contact.php:862 -msgid "Posts and Comments" -msgstr "" - -#: src/Module/Contact.php:885 -msgid "View all contacts" -msgstr "Ver todos los contactos" - -#: src/Module/Contact.php:896 -msgid "View all common friends" -msgstr "Ver todos los conocidos en común " - -#: src/Module/Contact.php:906 -msgid "Advanced Contact Settings" -msgstr "Configuración avanzada" - -#: src/Module/Contact.php:992 -msgid "Mutual Friendship" -msgstr "Amistad recíproca" - -#: src/Module/Contact.php:997 -msgid "is a fan of yours" -msgstr "es tu fan" - -#: src/Module/Contact.php:1002 -msgid "you are a fan of" -msgstr "eres fan de" - -#: src/Module/Contact.php:1026 -msgid "Edit contact" -msgstr "Modificar contacto" - -#: src/Module/Contact.php:1080 -msgid "Toggle Blocked status" -msgstr "Cambiar bloqueados" - -#: src/Module/Contact.php:1088 -msgid "Toggle Ignored status" -msgstr "Cambiar ignorados" - -#: src/Module/Contact.php:1097 -msgid "Toggle Archive status" -msgstr "Cambiar archivados" - -#: src/Module/Contact.php:1105 -msgid "Delete contact" -msgstr "Eliminar contacto" - -#: src/Module/Install.php:120 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: src/Module/Install.php:131 -msgid "System check" -msgstr "Verificación del sistema" - -#: src/Module/Install.php:136 -msgid "Check again" -msgstr "Compruebalo de nuevo" - -#: src/Module/Install.php:153 -msgid "Database connection" -msgstr "Conexión con la base de datos" - -#: src/Module/Install.php:154 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." - -#: src/Module/Install.php:155 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." - -#: src/Module/Install.php:156 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." - -#: src/Module/Install.php:159 -msgid "Database Server Name" -msgstr "Nombre del servidor de la base de datos" - -#: src/Module/Install.php:164 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" - -#: src/Module/Install.php:170 -msgid "Database Login Password" -msgstr "Contraseña de la base de datos" - -#: src/Module/Install.php:172 -msgid "For security reasons the password must not be empty" -msgstr "Por razones de seguridad la contraseña no debe estar vacía" - -#: src/Module/Install.php:175 -msgid "Database Name" -msgstr "Nombre de la base de datos" - -#: src/Module/Install.php:180 src/Module/Install.php:216 -msgid "Site administrator email address" -msgstr "Dirección de correo del administrador de la web" - -#: src/Module/Install.php:182 src/Module/Install.php:216 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." - -#: src/Module/Install.php:186 src/Module/Install.php:217 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" - -#: src/Module/Install.php:210 -msgid "Site settings" -msgstr "Configuración de la página web" - -#: src/Module/Install.php:219 -msgid "System Language:" -msgstr "Sistema de idioma:" - -#: src/Module/Install.php:221 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails." - -#: src/Module/Install.php:233 -msgid "Your Friendica site database has been installed." -msgstr "La base de datos de su sitio web de Friendica ha sido instalada." - -#: src/Module/Install.php:241 -msgid "Installation finished" -msgstr "" - -#: src/Module/Install.php:262 -msgid "

What next

" -msgstr "

¿Ahora qué?

" - -#: src/Module/Install.php:263 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "" - -#: src/Module/Install.php:266 +#: src/Content/Text/BBCode.php:1046 #, php-format +msgid "%2$s %3$s" +msgstr "" + +#: src/Content/Text/BBCode.php:1554 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: src/Content/Text/BBCode.php:1831 +msgid "Invalid source protocol" +msgstr "Protocolo de fuente inválido" + +#: src/Content/Text/BBCode.php:1846 +msgid "Invalid link protocol" +msgstr "Protocolo de enlace inválido" + +#: src/BaseModule.php:150 msgid "" -"Go to your new Friendica node registration page " -"and register as new user. Remember to use the same email you have entered as" -" administrator email. This will allow you to enter the site admin panel." -msgstr "" - -#: src/Module/Itemsource.php:33 -msgid "Item Guid" -msgstr "" - -#: src/Module/Login.php:289 -msgid "Create a New Account" -msgstr "Crear una nueva cuenta" - -#: src/Module/Login.php:322 -msgid "Password: " -msgstr "Contraseña: " - -#: src/Module/Login.php:323 -msgid "Remember me" -msgstr "Recordarme" - -#: src/Module/Login.php:326 -msgid "Or login using OpenID: " -msgstr "O inicia sesión usando OpenID: " - -#: src/Module/Login.php:332 -msgid "Forgot your password?" -msgstr "¿Olvidaste la contraseña?" - -#: src/Module/Login.php:335 -msgid "Website Terms of Service" -msgstr "Términos de uso del sitio" - -#: src/Module/Login.php:336 -msgid "terms of service" -msgstr "Términos de uso" - -#: src/Module/Login.php:338 -msgid "Website Privacy Policy" -msgstr "Política de privacidad del sitio" - -#: src/Module/Login.php:339 -msgid "privacy policy" -msgstr "Política de privacidad" - -#: src/Module/Logout.php:27 -msgid "Logged out." -msgstr "Sesión finalizada" - -#: src/Module/Proxy.php:136 -msgid "Bad Request." -msgstr "" - -#: src/Module/Tos.php:35 src/Module/Tos.php:75 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "" - -#: src/Module/Tos.php:36 src/Module/Tos.php:76 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners and is stored there. Users can enter additional " -"private data that may be transmitted to the communication partners accounts." -msgstr "" - -#: src/Module/Tos.php:37 src/Module/Tos.php:77 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user wants " -"to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "" - -#: src/Module/Tos.php:40 src/Module/Tos.php:74 -msgid "Privacy Statement" -msgstr "" - -#: src/Object/Post.php:129 -msgid "This entry was edited" -msgstr "Esta entrada fue editada" - -#: src/Object/Post.php:192 -msgid "Delete locally" -msgstr "" - -#: src/Object/Post.php:195 -msgid "Delete globally" -msgstr "" - -#: src/Object/Post.php:195 -msgid "Remove locally" -msgstr "" - -#: src/Object/Post.php:209 -msgid "save to folder" -msgstr "grabado en directorio" - -#: src/Object/Post.php:244 -msgid "I will attend" -msgstr "Voy a estar presente" - -#: src/Object/Post.php:244 -msgid "I will not attend" -msgstr "No voy a estar presente" - -#: src/Object/Post.php:244 -msgid "I might attend" -msgstr "Puede que voy a estar presente" - -#: src/Object/Post.php:272 -msgid "ignore thread" -msgstr "ignorar publicación" - -#: src/Object/Post.php:273 -msgid "unignore thread" -msgstr "revertir ignorar publicacion" - -#: src/Object/Post.php:274 -msgid "toggle ignore status" -msgstr "cambiar estatus de observación" - -#: src/Object/Post.php:285 -msgid "add star" -msgstr "Añadir estrella" - -#: src/Object/Post.php:286 -msgid "remove star" -msgstr "Quitar estrella" - -#: src/Object/Post.php:287 -msgid "toggle star status" -msgstr "Añadir a destacados" - -#: src/Object/Post.php:290 -msgid "starred" -msgstr "marcados con estrellas" - -#: src/Object/Post.php:294 -msgid "add tag" -msgstr "añadir etiqueta" - -#: src/Object/Post.php:305 -msgid "like" -msgstr "me gusta" - -#: src/Object/Post.php:306 -msgid "dislike" -msgstr "no me gusta" - -#: src/Object/Post.php:309 -msgid "Share this" -msgstr "Compartir esto" - -#: src/Object/Post.php:309 -msgid "share" -msgstr "compartir" - -#: src/Object/Post.php:376 -msgid "to" -msgstr "a" - -#: src/Object/Post.php:377 -msgid "via" -msgstr "vía" - -#: src/Object/Post.php:378 -msgid "Wall-to-Wall" -msgstr "Muro-A-Muro" - -#: src/Object/Post.php:379 -msgid "via Wall-To-Wall:" -msgstr "via Muro-A-Muro:" - -#: src/Object/Post.php:439 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" - -#: src/Protocol/Diaspora.php:2449 -msgid "Sharing notification from Diaspora network" -msgstr "Compartir notificaciones con la red Diaspora*" - -#: src/Protocol/Diaspora.php:3543 -msgid "Attachments:" -msgstr "Archivos adjuntos:" - -#: src/Protocol/OStatus.php:1838 -#, php-format -msgid "%s is now following %s." -msgstr "%s sigue ahora a %s." - -#: src/Protocol/OStatus.php:1839 -msgid "following" -msgstr "siguiendo" - -#: src/Protocol/OStatus.php:1842 -#, php-format -msgid "%s stopped following %s." -msgstr "%s dejó de seguir a %s." - -#: src/Protocol/OStatus.php:1843 -msgid "stopped following" -msgstr "dejó de seguir" - -#: src/Util/Temporal.php:150 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: src/Util/Temporal.php:293 -msgid "never" -msgstr "nunca" - -#: src/Util/Temporal.php:300 -msgid "less than a second ago" -msgstr "hace menos de un segundo" - -#: src/Util/Temporal.php:308 -msgid "year" -msgstr "año" - -#: src/Util/Temporal.php:308 -msgid "years" -msgstr "años" - -#: src/Util/Temporal.php:309 -msgid "months" -msgstr "meses" - -#: src/Util/Temporal.php:310 -msgid "weeks" -msgstr "semanas" - -#: src/Util/Temporal.php:311 -msgid "days" -msgstr "días" - -#: src/Util/Temporal.php:312 -msgid "hour" -msgstr "hora" - -#: src/Util/Temporal.php:312 -msgid "hours" -msgstr "horas" - -#: src/Util/Temporal.php:313 -msgid "minute" -msgstr "minuto" - -#: src/Util/Temporal.php:313 -msgid "minutes" -msgstr "minutos" - -#: src/Util/Temporal.php:314 -msgid "second" -msgstr "segundo" - -#: src/Util/Temporal.php:314 -msgid "seconds" -msgstr "segundos" - -#: src/Util/Temporal.php:324 -#, php-format -msgid "in %1$d %2$s" -msgstr "" - -#: src/Util/Temporal.php:327 -#, php-format -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" - -#: src/Worker/Delivery.php:431 -msgid "(no subject)" -msgstr "(sin asunto)" - -#: update.php:193 -#, php-format -msgid "%s: Updating author-id and owner-id in item and thread table. " -msgstr "" - -#: update.php:239 -#, php-format -msgid "%s: Updating post-type." -msgstr "" - -#: view/theme/duepuntozero/config.php:56 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:57 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:58 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:59 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:60 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:61 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:75 -msgid "Variations" -msgstr "Variaciones" - -#: view/theme/frio/config.php:103 -msgid "Custom" -msgstr "" - -#: view/theme/frio/config.php:115 -msgid "Note" -msgstr "Nota" - -#: view/theme/frio/config.php:115 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "" - -#: view/theme/frio/config.php:122 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:123 -msgid "Navigation bar background color" -msgstr "Color de fondo de la barra de navegación" - -#: view/theme/frio/config.php:124 -msgid "Navigation bar icon color " -msgstr "Color de icono de la barra de navegación" - -#: view/theme/frio/config.php:125 -msgid "Link color" -msgstr "Color de enlace" - -#: view/theme/frio/config.php:126 -msgid "Set the background color" -msgstr "Seleccionar el color de fondo" - -#: view/theme/frio/config.php:127 -msgid "Content background opacity" -msgstr "" - -#: view/theme/frio/config.php:128 -msgid "Set the background image" -msgstr "Seleccionar la imagen de fondo" - -#: view/theme/frio/config.php:129 -msgid "Background image style" -msgstr "" - -#: view/theme/frio/config.php:134 -msgid "Login page background image" -msgstr "" - -#: view/theme/frio/config.php:138 -msgid "Login page background color" -msgstr "" - -#: view/theme/frio/config.php:138 -msgid "Leave background image and color empty for theme defaults" -msgstr "" - -#: view/theme/frio/php/Image.php:24 -msgid "Top Banner" -msgstr "" - -#: view/theme/frio/php/Image.php:24 -msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "" - -#: view/theme/frio/php/Image.php:25 -msgid "Full screen" -msgstr "" - -#: view/theme/frio/php/Image.php:25 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "" - -#: view/theme/frio/php/Image.php:26 -msgid "Single row mosaic" -msgstr "" - -#: view/theme/frio/php/Image.php:26 -msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Mosaic" -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Repeat image to fill the screen." -msgstr "" - -#: view/theme/frio/theme.php:252 -msgid "Guest" -msgstr "Invitado" - -#: view/theme/frio/theme.php:257 -msgid "Visitor" -msgstr "Visitante" - -#: view/theme/quattro/config.php:77 -msgid "Alignment" -msgstr "Alineación" - -#: view/theme/quattro/config.php:77 -msgid "Left" -msgstr "Izquierda" - -#: view/theme/quattro/config.php:77 -msgid "Center" -msgstr "Centrado" - -#: view/theme/quattro/config.php:78 -msgid "Color scheme" -msgstr "Esquema de color" - -#: view/theme/quattro/config.php:79 -msgid "Posts font size" -msgstr "Tamaño de letra del titulo de las publicaciones" - -#: view/theme/quattro/config.php:80 -msgid "Textareas font size" -msgstr "Tamaño de letra del área de texto" - -#: view/theme/vier/config.php:76 -msgid "Comma separated list of helper forums" -msgstr "Lista separada por comas de foros de ayuda." - -#: view/theme/vier/config.php:123 -msgid "Set style" -msgstr "Definir estilo" - -#: view/theme/vier/config.php:124 -msgid "Community Pages" -msgstr "Páginas de Comunidad" - -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:151 -msgid "Community Profiles" -msgstr "Perfiles de la Comunidad" - -#: view/theme/vier/config.php:126 -msgid "Help or @NewHere ?" -msgstr "¿Ayuda o @NuevoAquí?" - -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:385 -msgid "Connect Services" -msgstr "Servicios conectados" - -#: view/theme/vier/config.php:128 -msgid "Find Friends" -msgstr "Buscar amigos" - -#: view/theme/vier/config.php:129 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "Últimos usuarios" - -#: view/theme/vier/theme.php:288 -msgid "Quick Start" -msgstr "Inicio rápido" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index 96989b3f56..6cb991e997 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -6,37 +6,102 @@ function string_plural_select_es($n){ return ($n != 1);; }} ; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "", - 1 => "", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "", - 1 => "", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = ""; -$a->strings["Profile Photos"] = "Foto del perfil"; +$a->strings["default"] = "predeterminado"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Submit"] = "Envíar"; +$a->strings["Theme settings"] = "Configuración del Tema"; +$a->strings["Variations"] = "Variaciones"; +$a->strings["Alignment"] = "Alineación"; +$a->strings["Left"] = "Izquierda"; +$a->strings["Center"] = "Centrado"; +$a->strings["Color scheme"] = "Esquema de color"; +$a->strings["Posts font size"] = "Tamaño de letra del titulo de las publicaciones"; +$a->strings["Textareas font size"] = "Tamaño de letra del área de texto"; +$a->strings["Comma separated list of helper forums"] = "Lista separada por comas de foros de ayuda."; +$a->strings["don't show"] = "no mostrar"; +$a->strings["show"] = "mostrar"; +$a->strings["Set style"] = "Definir estilo"; +$a->strings["Community Pages"] = "Páginas de Comunidad"; +$a->strings["Community Profiles"] = "Perfiles de la Comunidad"; +$a->strings["Help or @NewHere ?"] = "¿Ayuda o @NuevoAquí?"; +$a->strings["Connect Services"] = "Servicios conectados"; +$a->strings["Find Friends"] = "Buscar amigos"; +$a->strings["Last users"] = "Últimos usuarios"; +$a->strings["Find People"] = "Buscar personas"; +$a->strings["Enter name or interest"] = "Introduzce nombre o intereses"; +$a->strings["Connect/Follow"] = "Conectar/Seguir"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: Robert Morgenstein, Pesca"; +$a->strings["Find"] = "Buscar"; +$a->strings["Friend Suggestions"] = "Sugerencias de amigos"; +$a->strings["Similar Interests"] = "Intereses similares"; +$a->strings["Random Profile"] = "Perfil aleatorio"; +$a->strings["Invite Friends"] = "Invitar amigos"; +$a->strings["Global Directory"] = "Directorio global"; +$a->strings["Local Directory"] = "Directorio local"; +$a->strings["Forums"] = "Foros"; +$a->strings["External link to forum"] = "Enlace externo al foro"; +$a->strings["show more"] = "ver más"; +$a->strings["Quick Start"] = "Inicio rápido"; +$a->strings["Help"] = "Ayuda"; +$a->strings["Custom"] = ""; +$a->strings["Note"] = "Nota"; +$a->strings["Check image permissions if all users are allowed to see the image"] = ""; +$a->strings["Select color scheme"] = ""; +$a->strings["Copy or paste schemestring"] = ""; +$a->strings["You can copy this string to share your theme with others. Pasting here applies the schemestring"] = ""; +$a->strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; +$a->strings["Navigation bar icon color "] = "Color de icono de la barra de navegación"; +$a->strings["Link color"] = "Color de enlace"; +$a->strings["Set the background color"] = "Seleccionar el color de fondo"; +$a->strings["Content background opacity"] = ""; +$a->strings["Set the background image"] = "Seleccionar la imagen de fondo"; +$a->strings["Background image style"] = ""; +$a->strings["Login page background image"] = ""; +$a->strings["Login page background color"] = ""; +$a->strings["Leave background image and color empty for theme defaults"] = ""; +$a->strings["Guest"] = "Invitado"; +$a->strings["Visitor"] = "Visitante"; +$a->strings["Status"] = "Estado"; +$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Your profile page"] = "Tu página de perfil"; +$a->strings["Photos"] = "Fotografías"; +$a->strings["Your photos"] = "Tus fotos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "Tus videos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Your events"] = "Tus eventos"; +$a->strings["Network"] = "Red"; +$a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; +$a->strings["Events and Calendar"] = "Eventos y Calendario"; +$a->strings["Messages"] = "Mensajes"; +$a->strings["Private mail"] = "Correo privado"; +$a->strings["Settings"] = "Configuración"; +$a->strings["Account settings"] = "Configuración de tu cuenta"; +$a->strings["Contacts"] = "Contactos"; +$a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; +$a->strings["Follow Thread"] = "Seguir publicacion"; +$a->strings["Skip to main content"] = ""; +$a->strings["Top Banner"] = ""; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = ""; +$a->strings["Full screen"] = ""; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = ""; +$a->strings["Single row mosaic"] = ""; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = ""; +$a->strings["Mosaic"] = ""; +$a->strings["Repeat image to fill the screen."] = ""; +$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; +$a->strings["%s: Updating post-type."] = ""; +$a->strings["%1\$s poked %2\$s"] = "%1\$s le dio un toque a %2\$s"; $a->strings["event"] = "evento"; $a->strings["status"] = "estado"; $a->strings["photo"] = "foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s"; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s"; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s atenderá quizás %2\$s's %3\$s"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ahora es amigo de %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s le dio un toque a %2\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el %3\$s de %2\$s con %4\$s"; -$a->strings["post/item"] = "publicación/tema"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha marcado %3\$s de %2\$s como Favorito"; -$a->strings["Likes"] = "Me gusta"; -$a->strings["Dislikes"] = "No me gusta"; -$a->strings["Attending"] = [ - 0 => "Atendiendo", - 1 => "Atendiendo", -]; -$a->strings["Not attending"] = "No atendiendo"; -$a->strings["Might attend"] = "Puede que atienda"; $a->strings["Select"] = "Seleccionar"; $a->strings["Delete"] = "Eliminar"; $a->strings["View %s's profile @ %s"] = "Ver perfil de %s @ %s"; @@ -47,20 +112,21 @@ $a->strings["View in context"] = "Verlo en contexto"; $a->strings["Please wait"] = "Por favor, espera"; $a->strings["remove"] = "eliminar"; $a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado"; -$a->strings["Follow Thread"] = "Seguir publicacion"; $a->strings["View Status"] = "Ver estado"; $a->strings["View Profile"] = "Ver perfil"; $a->strings["View Photos"] = "Ver fotos"; $a->strings["Network Posts"] = "Publicaciones en la red"; $a->strings["View Contact"] = "Ver contacto"; $a->strings["Send PM"] = "Enviar mensaje privado"; +$a->strings["Block"] = "Bloquear"; +$a->strings["Ignore"] = "Ignorar"; $a->strings["Poke"] = "Toque"; -$a->strings["Connect/Follow"] = "Conectar/Seguir"; $a->strings["%s likes this."] = "A %s le gusta esto."; $a->strings["%s doesn't like this."] = "A %s no le gusta esto."; $a->strings["%s attends."] = "%s atiende."; $a->strings["%s doesn't attend."] = "%s no atenderá."; $a->strings["%s attends maybe."] = "%s quizás atenderá"; +$a->strings["%s reshared this."] = "%scompartió esto."; $a->strings["and"] = "y"; $a->strings["and %d other people"] = " y a otras %d personas"; $a->strings["%2\$d people like this"] = "%2\$d personas les gusta esto"; @@ -73,6 +139,7 @@ $a->strings["%2\$d people don't attend"] = "%2\ $a->strings["%s don't attend."] = "%s no atiende."; $a->strings["%2\$d people attend maybe"] = "%2\$d personas quizá asistan."; $a->strings["%s attend maybe."] = "%s quizás atenderá."; +$a->strings["%2\$d people reshared this"] = "%2\$d personas compartieron esto."; $a->strings["Visible to everybody"] = "Visible para cualquiera"; $a->strings["Please enter a image/video/audio/webpage URL:"] = "Por favor agregue la URL de una imagen, video, audio o sitio web."; $a->strings["Tag term:"] = "Etiquetar:"; @@ -81,6 +148,7 @@ $a->strings["Where are you right now?"] = "¿Dónde estás ahora?"; $a->strings["Delete item(s)?"] = "¿Borrar objeto(s)?"; $a->strings["New Post"] = "Nueva publicación"; $a->strings["Share"] = "Compartir"; +$a->strings["Loading..."] = "Cargando..."; $a->strings["Upload photo"] = "Subir foto"; $a->strings["upload photo"] = "subir imagen"; $a->strings["Attach file"] = "Adjuntar archivo"; @@ -109,69 +177,55 @@ $a->strings["Post to Contacts"] = "Publicar hacia contactos"; $a->strings["Private post"] = "Publicación privada"; $a->strings["Message"] = "Mensaje"; $a->strings["Browser"] = "Navegador"; -$a->strings["View all"] = "Ver todos los contactos"; -$a->strings["Like"] = [ - 0 => "Me gusta", - 1 => "Me gusta", -]; -$a->strings["Dislike"] = [ - 0 => "No me gusta", - 1 => "No me gusta", -]; -$a->strings["Not Attending"] = [ - 0 => "No atendiendo", - 1 => "No atendiendo", -]; -$a->strings["Undecided"] = [ - 0 => "Indeciso", - 1 => "Indeciso", -]; -$a->strings["Friendica Notification"] = "Notificación de Friendica"; -$a->strings["Thank You,"] = "Gracias,"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; -$a->strings["%s Administrator"] = "%s Administrador"; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s"; +$a->strings["Open Compose page"] = "Abrir página de publicación"; +$a->strings["[Friendica:Notify]"] = ""; +$a->strings["%s New mail received at %s"] = ""; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s."; $a->strings["a private message"] = "un mensaje privado"; $a->strings["%1\$s sent you %2\$s."] = "%1\$s te ha enviado %2\$s."; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visita %s para ver y/o responder a tus mensajes privados."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentó en [url=%2\$s] %4\$s de %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s] tu %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificación] Comentario en la conversación de #%1\$d por %2\$s"; +$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = ""; +$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = ""; +$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = ""; +$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = ""; +$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = ""; +$a->strings["%1\$s commented on your %2\$s %3\$s"] = ""; +$a->strings["%1\$s replied to you on their %2\$s %3\$s"] = ""; +$a->strings["%1\$s tagged you on their %2\$s %3\$s"] = ""; +$a->strings["%1\$s commented on their %2\$s %3\$s"] = ""; +$a->strings["%s %s tagged you"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s te ha etiquetado en %2\$s"; +$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = ""; $a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentado en una conversación/elemento que sigues."; $a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visita %s para ver y/o responder a la conversación."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificación] %s publicó en tu muro"; +$a->strings["%s %s posted to your profile wall"] = ""; $a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicó en tu muro de %2\$s"; $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [url=%2\$s]tu muro[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificación] %s te ha etiquetado"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s te ha etiquetado en %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]te etiquetó[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Notificacion Friendica] %s compartió una nueva publicación"; +$a->strings["%s %s shared a new post"] = ""; $a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartió un nuevo tema en %2\$s"; $a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartió una publicación[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s te dio un toque"; +$a->strings["%1\$s %2\$s poked you"] = ""; $a->strings["%1\$s poked you at %2\$s"] = "%1\$s te dio un toque en %2\$s"; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]te dio un toque[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificación] %s ha etiquetado tu publicación"; +$a->strings["%s %s tagged your post"] = ""; $a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetado tu publicación en %2\$s"; $a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha etiquetado [url=%2\$s]tu publicación[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificación] Sugerencia de amistad recibida"; +$a->strings["%s Introduction received"] = ""; $a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has recibido una sugerencia de amistad de '%1\$s' en %2\$s"; $a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Has recibido [url=%1\$s]una sugerencia de amistad de [/url] de %2\$s."; $a->strings["You may visit their profile at %s"] = "Puedes visitar su perfil en %s"; $a->strings["Please visit %s to approve or reject the introduction."] = " Por favor visita %s para aceptar o rechazar la sugerencia de amistad"; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notificación:Friendica] Un nuevo contacto comparte contigo"; +$a->strings["%s A new person is sharing with you"] = ""; $a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s comparte contigo en %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Notificación:Friendica] Tienes un nuevo seguidor"; +$a->strings["%s You have a new follower"] = ""; $a->strings["You have a new follower at %2\$s : %1\$s"] = "Tienes un nuevo seguidor en %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificación] Sugerencia de amistad recibida"; +$a->strings["%s Friend suggestion received"] = ""; $a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has recibido una sugerencia de amigo de '%1\$s' en %2\$s"; $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Has recibido [url=%1\$s]una sugerencia de amigo[/url] en %2\$s de %3\$s."; $a->strings["Name:"] = "Nombre: "; $a->strings["Photo:"] = "Foto: "; $a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s para aceptar o rechazar la sugerencia por favor."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Notificación:Friendica] Conexión aceptada"; +$a->strings["%s Connection accepted"] = ""; $a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' acepto tu consulta de conexión %2\$s"; $a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hacepto tu [url=%1\$s]consulta de conexión[/url]."; $a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción."; @@ -185,15 +239,1058 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "R $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Recibiste una [url=%1\$s]consulta de registro[/url] from %2\$s."; $a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Nombre Completo:\t%s\nDireccion del sitio:\t%s\nNombre de usuario:\t%s (%s)"; $a->strings["Please visit %s to approve or reject the request."] = "Por favor visita %s para aprobar o negar la solicitud."; +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "Limite diario de %d publicación alcanzado. La publicación fue rechazada.", + 1 => "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada.", +]; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "Limite semanal de %d publicación alcanzado. La publicación fue rechazada.", + 1 => "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Limite mensual de %d publicaciones alcanzado. La publicación fue rechazada."; +$a->strings["Profile Photos"] = "Fotos del perfil"; +$a->strings["Access denied."] = "Acceso denegado."; +$a->strings["Bad Request."] = ""; +$a->strings["Contact not found."] = "Contacto no encontrado."; +$a->strings["Permission denied."] = "Permiso denegado."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; +$a->strings["No recipient selected."] = "Ningún destinatario seleccionado"; +$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; +$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado."; +$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes."; +$a->strings["No recipient."] = "Sin receptor."; +$a->strings["Please enter a link URL:"] = "Introduce la dirección del enlace:"; +$a->strings["Send Private Message"] = "Enviar mensaje privado"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Asunto:"; +$a->strings["Your message:"] = "Tu mensaje:"; +$a->strings["Insert web link"] = "Insertar enlace"; +$a->strings["Profile not found."] = "Perfil no encontrado."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada."; +$a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida."; +$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: "; +$a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito."; +$a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo."; +$a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada."; +$a->strings["Remote site reported: "] = "El sito remoto informó: "; +$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla."; +$a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos."; +$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo."; +$a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema"; +$a->strings["[Name Withheld]"] = "[Nombre oculto]"; +$a->strings["Public access denied."] = "Acceso público denegado."; +$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; +$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +$a->strings["View Video"] = "Ver vídeo"; +$a->strings["View Album"] = "Ver Álbum"; +$a->strings["Recent Videos"] = "Vídeos recientes"; +$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; +$a->strings["No keywords to match. Please add keywords to your profile."] = ""; +$a->strings["first"] = "primera"; +$a->strings["next"] = "sig."; +$a->strings["No matches"] = "Sin conincidencias"; +$a->strings["Profile Match"] = "Coincidencias de Perfil"; +$a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; +$a->strings["Update"] = "Actualizar"; +$a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; +$a->strings["Contact CSV file upload error"] = ""; +$a->strings["Importing Contacts done"] = ""; +$a->strings["Relocate message has been send to your contacts"] = "Mensaje de reubicación ha sido enviado a sus contactos."; +$a->strings["Passwords do not match."] = ""; +$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; +$a->strings["Password changed."] = "Contraseña modificada."; +$a->strings["Password unchanged."] = ""; +$a->strings["Please use a shorter name."] = ""; +$a->strings["Name too short."] = ""; +$a->strings["Wrong Password."] = ""; +$a->strings["Invalid email."] = ""; +$a->strings["Cannot change to that email."] = ""; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad."; +$a->strings["Settings were not updated."] = ""; +$a->strings["Add application"] = "Agregar aplicación"; +$a->strings["Save Settings"] = "Guardar configuración"; +$a->strings["Name"] = "Nombre"; +$a->strings["Consumer Key"] = "Clave del consumidor"; +$a->strings["Consumer Secret"] = "Secreto del consumidor"; +$a->strings["Redirect"] = "Redirigir"; +$a->strings["Icon url"] = "Dirección del ícono"; +$a->strings["You can't edit this application."] = "No puedes editar esta aplicación."; +$a->strings["Connected Apps"] = "Aplicaciones conectadas"; +$a->strings["Edit"] = "Editar"; +$a->strings["Client key starts with"] = "Clave de cliente comienza por"; +$a->strings["No name"] = "Sin nombre"; +$a->strings["Remove authorization"] = "Suprimir la autorización"; +$a->strings["No Addon settings configured"] = ""; +$a->strings["Addon Settings"] = ""; +$a->strings["Additional Features"] = "Características adicionales"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = ""; +$a->strings["enabled"] = "habilitado"; +$a->strings["disabled"] = "deshabilitado"; +$a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado de conexión con %s está %s"; +$a->strings["OStatus (GNU Social)"] = ""; +$a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; +$a->strings["None"] = "Ninguna"; +$a->strings["Social Networks"] = "Redes sociales"; +$a->strings["General Social Media Settings"] = "Configuración general de social media "; +$a->strings["Accept only top level posts by contacts you follow"] = ""; +$a->strings["The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow."] = ""; +$a->strings["Disable Content Warning"] = ""; +$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = ""; +$a->strings["Disable intelligent shortening"] = "Deshabilitar recorte inteligente de URL"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica."; +$a->strings["Attach the link title"] = ""; +$a->strings["When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario."; +$a->strings["Default group for OStatus contacts"] = "Grupo por defecto para contactos OStatus"; +$a->strings["Your legacy GNU Social account"] = "Tu cuenta GNU social conectada"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. "; +$a->strings["Repair OStatus subscriptions"] = "Reparar subscripciones de OStatus"; +$a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; +$a->strings["Last successful email check:"] = "Última comprobación del correo con éxito:"; +$a->strings["IMAP server name:"] = "Nombre del servidor IMAP:"; +$a->strings["IMAP port:"] = "Puerto IMAP:"; +$a->strings["Security:"] = "Seguridad:"; +$a->strings["Email login name:"] = "Nombre de usuario:"; +$a->strings["Email password:"] = "Contraseña:"; +$a->strings["Reply-to address:"] = "Dirección de respuesta:"; +$a->strings["Send public posts to all email contacts:"] = "Enviar publicaciones públicas a todos los contactos de correo:"; +$a->strings["Action after import:"] = "Acción después de importar:"; +$a->strings["Mark as seen"] = "Marcar como leído"; +$a->strings["Move to folder"] = "Mover a un directorio"; +$a->strings["Move to folder:"] = "Mover al directorio:"; +$a->strings["Unable to find your profile. Please contact your admin."] = ""; +$a->strings["Account Types"] = "Tipos de cuenta"; +$a->strings["Personal Page Subtypes"] = "Subtipos de página personal"; +$a->strings["Community Forum Subtypes"] = "Subtipos de foro de comunidad"; +$a->strings["Personal Page"] = "Página personal"; +$a->strings["Account for a personal profile."] = "Cuenta para un perfil personal."; +$a->strings["Organisation Page"] = "Página de organización"; +$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Cuenta para una organización que aprueba automáticamente las solicitudes de contacto como «Seguidores»."; +$a->strings["News Page"] = "Página de noticias"; +$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Cuenta para un reflector de noticias que aprueba automáticamente las solicitudes de contacto como «Seguidores»."; +$a->strings["Community Forum"] = "Foro de la comunidad"; +$a->strings["Account for community discussions."] = "Cuenta para discusiones de la comunidad."; +$a->strings["Normal Account Page"] = "Página de cuenta normal"; +$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Cuenta para un perfil personal regular que requiere aprobación manual de «Amigos» y «Seguidores»."; +$a->strings["Soapbox Page"] = "Página de tribuna"; +$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»."; +$a->strings["Public Forum"] = "Foro público"; +$a->strings["Automatically approves all contact requests."] = "Aprueba automáticamente todas las solicitudes de contacto."; +$a->strings["Automatic Friend Page"] = "Página de Amistad autómatica"; +$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Cuenta para un perfil popular que aprueba automáticamente las solicitudes de contacto como «Friends»."; +$a->strings["Private Forum [Experimental]"] = "Foro privado [Experimental]"; +$a->strings["Requires manual approval of contact requests."] = "Requiere aprobación manual de solicitudes de contacto."; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; +$a->strings["Publish your profile in your local site directory?"] = ""; +$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = ""; +$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = ""; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Su dirección de identidad es '%s' o '%s'."; +$a->strings["Account Settings"] = "Configuración de la cuenta"; +$a->strings["Password Settings"] = "Configuración de la contraseña"; +$a->strings["New Password:"] = "Contraseña nueva:"; +$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = ""; +$a->strings["Confirm:"] = "Confirmar:"; +$a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; +$a->strings["Current Password:"] = "Contraseña actual:"; +$a->strings["Your current password to confirm the changes"] = "Su contraseña actual para confirmar los cambios."; +$a->strings["Password:"] = "Contraseña:"; +$a->strings["Delete OpenID URL"] = ""; +$a->strings["Basic Settings"] = "Configuración básica"; +$a->strings["Full Name:"] = "Nombre completo:"; +$a->strings["Email Address:"] = "Dirección de correo:"; +$a->strings["Your Timezone:"] = "Zona horaria:"; +$a->strings["Your Language:"] = "Tu idioma:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo."; +$a->strings["Default Post Location:"] = "Localización predeterminada:"; +$a->strings["Use Browser Location:"] = "Usar localización del navegador:"; +$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +$a->strings["Maximum Friend Requests/Day:"] = "Máximo número de peticiones de amistad por día:"; +$a->strings["(to prevent spam abuse)"] = "(para prevenir el abuso de spam)"; +$a->strings["Allow your profile to be searchable globally?"] = ""; +$a->strings["Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."] = ""; +$a->strings["Hide your contact/friend list from viewers of your profile?"] = ""; +$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = ""; +$a->strings["Hide your profile details from anonymous viewers?"] = ""; +$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = ""; +$a->strings["Make public posts unlisted"] = ""; +$a->strings["Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."] = ""; +$a->strings["Make all posted pictures accessible"] = ""; +$a->strings["This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "¿Permites que tus amigos publiquen en tu página de perfil?"; +$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = ""; +$a->strings["Allow friends to tag your posts?"] = "¿Permites a los amigos etiquetar tus publicaciones?"; +$a->strings["Your contacts can add additional tags to your posts."] = ""; +$a->strings["Permit unknown people to send you private mail?"] = "¿Permites que desconocidos te manden correos privados?"; +$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensajes diarios para desconocidos:"; +$a->strings["Default Post Permissions"] = "Permisos por defecto para las publicaciones"; +$a->strings["Expiration settings"] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Las publicaciones expirarán automáticamente después de estos días:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; +$a->strings["Expire posts"] = ""; +$a->strings["When activated, posts and comments will be expired."] = ""; +$a->strings["Expire personal notes"] = ""; +$a->strings["When activated, the personal notes on your profile page will be expired."] = ""; +$a->strings["Expire starred posts"] = ""; +$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = ""; +$a->strings["Expire photos"] = ""; +$a->strings["When activated, photos will be expired."] = ""; +$a->strings["Only expire posts by others"] = ""; +$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = ""; +$a->strings["Notification Settings"] = "Configuración de notificaciones"; +$a->strings["Send a notification email when:"] = "Enviar notificación por correo cuando:"; +$a->strings["You receive an introduction"] = "Recibas una presentación"; +$a->strings["Your introductions are confirmed"] = "Tu presentación sea confirmada"; +$a->strings["Someone writes on your profile wall"] = "Alguien escriba en el muro de mi perfil"; +$a->strings["Someone writes a followup comment"] = "Algien escriba en un comentario que sigo"; +$a->strings["You receive a private message"] = "Recibas un mensaje privado"; +$a->strings["You receive a friend suggestion"] = "Recibas una sugerencia de amistad"; +$a->strings["You are tagged in a post"] = "Seas etiquetado en una publicación"; +$a->strings["You are poked/prodded/etc. in a post"] = "Te han tocado/empujado/etc. en una publicación"; +$a->strings["Activate desktop notifications"] = "Activar notificaciones en pantalla."; +$a->strings["Show desktop popup on new notifications"] = "Mostrar notificaciones emergentes en caso de nuevos eventos."; +$a->strings["Text-only notification emails"] = "Notificaciones e-mail de solo texto"; +$a->strings["Send text only notification emails, without the html part"] = "Enviar las notificaciones por correo con formato de solo texto sin html."; +$a->strings["Show detailled notifications"] = "Mostrar notificaciones detalladas"; +$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Configuración avanzada de tipo de Cuenta/Página"; +$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta para situaciones especiales"; +$a->strings["Import Contacts"] = ""; +$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = ""; +$a->strings["Upload File"] = ""; +$a->strings["Relocate"] = "Relocalizar"; +$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."] = "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"; +$a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos"; +$a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; +$a->strings["{0} requested registration"] = "{0} solicitudes de registro"; +$a->strings["No contacts in common."] = "Sin contactos en común."; +$a->strings["Common Friends"] = "Amigos comunes"; +$a->strings["No items found"] = ""; +$a->strings["No such group"] = "Ningún grupo"; +$a->strings["Group is empty"] = "El grupo está vacío"; +$a->strings["Group: %s"] = "Grupo: %s"; +$a->strings["Invalid contact."] = "Contacto erróneo."; +$a->strings["Latest Activity"] = ""; +$a->strings["Sort by latest activity"] = ""; +$a->strings["Latest Posts"] = ""; +$a->strings["Sort by post received date"] = ""; +$a->strings["Personal"] = "Personal"; +$a->strings["Posts that mention or involve you"] = "Publicaciones que te mencionan o involucran"; +$a->strings["Starred"] = "Favoritos"; +$a->strings["Favourite Posts"] = "Publicaciones favoritas"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus"; +$a->strings["Error"] = [ + 0 => "", + 1 => "", +]; +$a->strings["Done"] = "hecho!"; +$a->strings["Keep this window open until done."] = "Mantén esta ventana abierta hasta que el proceso ha terminado."; +$a->strings["You aren't following this contact."] = ""; +$a->strings["Unfollowing is currently not supported by your network."] = "Dejar de Seguir no es compatible con su red actualmente."; +$a->strings["Disconnect/Unfollow"] = "Desconectar/Dejar de seguir"; +$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; +$a->strings["Submit Request"] = "Enviar solicitud"; +$a->strings["Profile URL"] = "URL Perfil"; +$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; +$a->strings["New Message"] = "Nuevo mensaje"; +$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto."; +$a->strings["Discard"] = "Descartar"; +$a->strings["Do you really want to delete this message?"] = "¿Estás seguro de que quieres borrar este mensaje?"; +$a->strings["Yes"] = "Sí"; +$a->strings["Conversation not found."] = ""; +$a->strings["Message was not deleted."] = ""; +$a->strings["Conversation was not removed."] = ""; +$a->strings["No messages."] = "No hay mensajes."; +$a->strings["Message not available."] = "Mensaje no disponibile."; +$a->strings["Delete message"] = "Borrar mensaje"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Delete conversation"] = "Eliminar conversación"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. "; +$a->strings["Send Reply"] = "Enviar respuesta"; +$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s"; +$a->strings["You and %s"] = "Tú y %s"; +$a->strings["%s and You"] = "%s y Tú"; +$a->strings["%d message"] = [ + 0 => "%d mensaje", + 1 => "%d mensajes", +]; +$a->strings["Subscribing to OStatus contacts"] = "Subscribir a los contactos de OStatus"; +$a->strings["No contact provided."] = "Sin suministro de datos de contacto."; +$a->strings["Couldn't fetch information for contact."] = "No se ha podido conseguir la información del contacto."; +$a->strings["Couldn't fetch friends for contact."] = "No se ha podido conseguir datos de amigos para contactar."; +$a->strings["success"] = "exito!"; +$a->strings["failed"] = "fallido!"; +$a->strings["ignored"] = "ignorado"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s"; +$a->strings["User deleted their account"] = ""; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = ""; +$a->strings["The user id is %d"] = ""; +$a->strings["Remove My Account"] = "Eliminar mi cuenta"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; +$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; +$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; +$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; +$a->strings["Remove"] = "Eliminar"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; +$a->strings["The requested item doesn't exist or has been deleted."] = ""; +$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido."; +$a->strings["The feed for this item is unavailable."] = ""; +$a->strings["Invalid request."] = "Consulta invalida"; +$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s"; +$a->strings["Unable to process image."] = "Imposible procesar la imagen."; +$a->strings["Wall Photos"] = "Foto del Muro"; +$a->strings["Image upload failed."] = "Error al subir la imagen."; +$a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; +$a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; +$a->strings["Request has expired, please make a new one."] = ""; +$a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; +$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; +$a->strings["Reset"] = "Restablecer"; +$a->strings["Password Reset"] = "Restablecer la contraseña"; +$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; +$a->strings["Your new password is"] = "Tu nueva contraseña es"; +$a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; +$a->strings["click here to login"] = "pulsa aquí para acceder"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; +$a->strings["Your password has been reset."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = ""; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Tu contraseña se ha cambiado por %s"; +$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; +$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; +$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "no se encontró %d parámetro requerido en el lugar determinado", + 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", +]; +$a->strings["Introduction complete."] = "Presentación completa."; +$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; +$a->strings["Profile unavailable."] = "Perfil no disponible."; +$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; +$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; +$a->strings["Invalid locator"] = "Localizador no válido"; +$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; +$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; +$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; +$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; +$a->strings["Blocked domain"] = "Dominio bloqueado"; +$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; +$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."; +$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["Hide this contact"] = "Ocultar este contacto"; +$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; +$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = ""; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = ""; +$a->strings["Your Webfinger address or profile URL:"] = ""; +$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; +$a->strings["%s knows you"] = ""; +$a->strings["Add a personal note:"] = "Añade una nota personal:"; +$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; +$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:"; +$a->strings["Please login to continue."] = "Inicia sesión para continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"; +$a->strings["No"] = "No"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; +$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; +$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; +$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; +$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; +$a->strings["Empty post discarded."] = "Publicación vacía descartada."; +$a->strings["Post updated."] = ""; +$a->strings["Item wasn't stored."] = ""; +$a->strings["Item couldn't be fetched."] = ""; $a->strings["Item not found."] = "Elemento no encontrado."; $a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?"; -$a->strings["Yes"] = "Sí"; -$a->strings["Permission denied."] = "Permiso denegado."; -$a->strings["Archives"] = "Archivos"; -$a->strings["show more"] = "ver más"; -$a->strings["Theme settings updated."] = "Configuración de la apariencia actualizada."; +$a->strings["User imports on closed servers can only be done by an administrator."] = ""; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; +$a->strings["Import"] = "Importar"; +$a->strings["Move account"] = "Mover cuenta"; +$a->strings["You can import an account from another Friendica server."] = "Puedes importar una cuenta desde otro servidor de 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."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*"; +$a->strings["Account file"] = "Archivo de la cuenta"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; +$a->strings["User not found."] = ""; +$a->strings["View"] = "Vista"; +$a->strings["Previous"] = "Previo"; +$a->strings["Next"] = "Siguiente"; +$a->strings["today"] = "hoy"; +$a->strings["month"] = "mes"; +$a->strings["week"] = "semana"; +$a->strings["day"] = "día"; +$a->strings["list"] = "lista"; +$a->strings["User not found"] = "Usuario no encontrado"; +$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta"; +$a->strings["No exportable data found"] = "No se ha encontrado información exportable"; +$a->strings["calendar"] = "calendario"; +$a->strings["Item not found"] = "Elemento no encontrado"; +$a->strings["Edit post"] = "Editar publicación"; +$a->strings["Save"] = "Guardar"; +$a->strings["web link"] = "enlace web"; +$a->strings["Insert video link"] = "Insertar enlace del vídeo"; +$a->strings["video link"] = "enlace de video"; +$a->strings["Insert audio link"] = "Insertar vínculo del audio"; +$a->strings["audio link"] = "enlace de audio"; +$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; +$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo."; +$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas."; +$a->strings["Create New Event"] = "Crea un evento nuevo"; +$a->strings["Event details"] = "Detalles del evento"; +$a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo"; +$a->strings["Event Starts:"] = "Inicio del evento:"; +$a->strings["Required"] = "Obligatorio"; +$a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante."; +$a->strings["Event Finishes:"] = "Finalización del evento:"; +$a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; +$a->strings["Description:"] = "Descripción:"; +$a->strings["Location:"] = "Localización:"; +$a->strings["Title:"] = "Título:"; +$a->strings["Share this event"] = "Comparte este evento"; +$a->strings["Basic"] = "Basic"; +$a->strings["Advanced"] = "Avanzado"; +$a->strings["Permissions"] = "Permisos"; +$a->strings["Failed to remove event"] = "Error al eliminar el evento"; +$a->strings["The contact could not be added."] = ""; +$a->strings["You already added this contact."] = "Ya has añadido este contacto."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Contact Photos"] = "Foto del contacto"; +$a->strings["Upload"] = "Subir"; +$a->strings["Files"] = "Archivos"; +$a->strings["Personal Notes"] = "Notas personales"; +$a->strings["Photo Albums"] = "Álbum de Fotos"; +$a->strings["Recent Photos"] = "Fotos recientes"; +$a->strings["Upload New Photos"] = "Subir nuevas fotos"; +$a->strings["everybody"] = "todos"; +$a->strings["Contact information unavailable"] = "Información del contacto no disponible"; +$a->strings["Album not found."] = "Álbum no encontrado."; +$a->strings["Album successfully deleted"] = ""; +$a->strings["Album was empty."] = ""; +$a->strings["Failed to delete the photo."] = ""; +$a->strings["a photo"] = "una foto"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fue etiquetado en %2\$s por %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = ""; +$a->strings["Image file is missing"] = ""; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = ""; +$a->strings["Image file is empty."] = "El archivo de imagen está vacío."; +$a->strings["No photos selected"] = "Ninguna foto seleccionada"; +$a->strings["Upload Photos"] = "Subir fotos"; +$a->strings["New album name: "] = "Nombre del nuevo álbum: "; +$a->strings["or select existing album:"] = ""; +$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío"; +$a->strings["Show to Groups"] = "Mostrar a los Grupos"; +$a->strings["Show to Contacts"] = "Mostrar a los Contactos"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "¿Estás seguro de quieres borrar este álbum y todas sus fotos?"; +$a->strings["Delete Album"] = "Eliminar álbum"; +$a->strings["Edit Album"] = "Modificar álbum"; +$a->strings["Drop Album"] = ""; +$a->strings["Show Newest First"] = "Mostrar más nuevos primero"; +$a->strings["Show Oldest First"] = "Mostrar más antiguos primero"; +$a->strings["View Photo"] = "Ver foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +$a->strings["Photo not available"] = "Foto no disponible"; +$a->strings["Do you really want to delete this photo?"] = "¿Estás seguro de que quieres borrar esta foto?"; +$a->strings["Delete Photo"] = "Eliminar foto"; +$a->strings["View photo"] = "Ver foto"; +$a->strings["Edit photo"] = "Modificar foto"; +$a->strings["Delete photo"] = ""; +$a->strings["Use as profile photo"] = "Usar como foto del perfil"; +$a->strings["Private Photo"] = ""; +$a->strings["View Full Size"] = "Ver a tamaño completo"; +$a->strings["Tags: "] = "Etiquetas: "; +$a->strings["[Select tags to remove]"] = ""; +$a->strings["New album name"] = "Nuevo nombre del álbum"; +$a->strings["Caption"] = "Título"; +$a->strings["Add a Tag"] = "Añadir una etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "No rotar"; +$a->strings["Rotate CW (right)"] = "Girar a la derecha"; +$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; +$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)"; +$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +$a->strings["This is you"] = "Este eres tú"; +$a->strings["Comment"] = "Comentar"; +$a->strings["Map"] = "Mapa"; +$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; +$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; +$a->strings["toggle mobile"] = "Cambiar a versión móvil"; +$a->strings["Login failed."] = "Accesso fallido."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; +$a->strings["The error message was:"] = "El mensaje del error fue:"; +$a->strings["Login failed. Please check your credentials."] = ""; +$a->strings["Welcome %s"] = ""; +$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; +$a->strings["Method not allowed for this module. Allowed method(s): %s"] = ""; +$a->strings["Page not found."] = "Página no encontrada."; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = ""; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d ocurrido durante la actualización de la base de datos:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Errores encontrados al realizar cambios en la base de datos: "; +$a->strings["Another database update is currently running."] = ""; +$a->strings["%s: Database update"] = ""; +$a->strings["%s: updating %s table."] = "%s: actualizando %s tabla."; +$a->strings["Database error %d \"%s\" at \"%s\""] = ""; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = ""; +$a->strings["template engine cannot be registered without a name."] = ""; +$a->strings["template engine is not registered!"] = ""; +$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = ""; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = ""; +$a->strings["Yourself"] = ""; +$a->strings["Followers"] = ""; +$a->strings["Mutuals"] = ""; +$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; +$a->strings["Public"] = ""; +$a->strings["This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."] = ""; +$a->strings["Limited/Private"] = ""; +$a->strings["This content will be shown only to the people in the first box, to the exception of the people mentioned in the second box. It won't appear anywhere public."] = ""; +$a->strings["Show to:"] = ""; +$a->strings["Except to:"] = ""; +$a->strings["Connectors"] = ""; +$a->strings["The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulta el archivo \"INSTALL.txt\"."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web."; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; +$a->strings["PHP executable path"] = "Dirección al ejecutable PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."; +$a->strings["Command line PHP"] = "Línea de comandos PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)"; +$a->strings["Found PHP version: "] = "Versión PHP encontrada:"; +$a->strings["PHP cli binary"] = "PHP cli binario"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."; +$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generar claves de encriptación"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado."; +$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite de Apache"; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: Módulo PDO o MySQLi PHP requerido pero no instalado."; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: El dispositivo MySQL para PDO no está instalado."; +$a->strings["PDO or MySQLi PHP module"] = "Módulo PDO o MySQLi PHP"; +$a->strings["Error, XML PHP module required but not installed."] = "Error, módulo XML PHP requerido pero no instalado."; +$a->strings["XML PHP module"] = "Módulo XML PHP"; +$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo de PHP libcurl es necesario, pero no está instalado."; +$a->strings["GD graphics PHP module"] = "Módulo PHP gráficos GD"; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado."; +$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero no está instalado."; +$a->strings["mb_string PHP module"] = "Módulo PHP mb_string"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado."; +$a->strings["iconv PHP module"] = ""; +$a->strings["Error: iconv PHP module required but not installed."] = "Error: módulo iconv PHP requerido pero no instalado."; +$a->strings["POSIX PHP module"] = ""; +$a->strings["Error: POSIX PHP module required but not installed."] = ""; +$a->strings["JSON PHP module"] = ""; +$a->strings["Error: JSON PHP module required but not installed."] = ""; +$a->strings["File Information PHP module"] = ""; +$a->strings["Error: File Information PHP module required but not installed."] = ""; +$a->strings["The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."] = ""; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."] = ""; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones."; +$a->strings["config/local.config.php is writable"] = ""; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar."; +$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 poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta."; +$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 medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene."; +$a->strings["view/smarty3 is writable"] = "Se puede escribir en /view/smarty3"; +$a->strings["Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess."] = ""; +$a->strings["Error message from Curl when fetching"] = ""; +$a->strings["Url rewrite is working"] = "Reescribiendo la dirección..."; +$a->strings["ImageMagick PHP extension is not installed"] = "No está instalada la extensión ImageMagick PHP"; +$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta GIF"; +$a->strings["Database already in use."] = "Base de datos ya se encuentra en uso"; +$a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos."; +$a->strings["Monday"] = "Lunes"; +$a->strings["Tuesday"] = "Martes"; +$a->strings["Wednesday"] = "Miércoles"; +$a->strings["Thursday"] = "Jueves"; +$a->strings["Friday"] = "Viernes"; +$a->strings["Saturday"] = "Sábado"; +$a->strings["Sunday"] = "Domingo"; +$a->strings["January"] = "Enero"; +$a->strings["February"] = "Febrero"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Abril"; +$a->strings["May"] = "Mayo"; +$a->strings["June"] = "Junio"; +$a->strings["July"] = "Julio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Septiembre"; +$a->strings["October"] = "Octubre"; +$a->strings["November"] = "Noviembre"; +$a->strings["December"] = "Diciembre"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mie"; +$a->strings["Thu"] = "Jue"; +$a->strings["Fri"] = "Vie"; +$a->strings["Sat"] = "Sab"; +$a->strings["Sun"] = "Dom"; +$a->strings["Jan"] = "Ene"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Abr"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sep"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dec"; +$a->strings["poke"] = "tocar"; +$a->strings["poked"] = "tocó a"; +$a->strings["ping"] = "hacer \"ping\""; +$a->strings["pinged"] = "hizo \"ping\" a"; +$a->strings["prod"] = "empujar"; +$a->strings["prodded"] = "empujó a"; +$a->strings["slap"] = "abofetear"; +$a->strings["slapped"] = "abofeteó a"; +$a->strings["finger"] = "meter dedo"; +$a->strings["fingered"] = "le metió un dedo a"; +$a->strings["rebuff"] = "desairar"; +$a->strings["rebuffed"] = "desairó a"; +$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; +$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; +$a->strings["User creation error"] = "Error al crear la cuenta"; +$a->strings["%d contact not imported"] = [ + 0 => "%d contactos no encontrado", + 1 => "%d contactos no importado", +]; +$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; +$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; +$a->strings["Legacy module file not found: %s"] = ""; +$a->strings["(no subject)"] = "(sin asunto)"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; +$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; +$a->strings["%s posted an update."] = "%s ha publicado una actualización."; +$a->strings["This entry was edited"] = "Esta entrada fue editada"; +$a->strings["Private Message"] = "Mensaje privado"; +$a->strings["pinned item"] = ""; +$a->strings["Delete locally"] = ""; +$a->strings["Delete globally"] = ""; +$a->strings["Remove locally"] = ""; +$a->strings["save to folder"] = "grabado en directorio"; +$a->strings["I will attend"] = "Voy a estar presente"; +$a->strings["I will not attend"] = "No voy a estar presente"; +$a->strings["I might attend"] = "Puede que voy a estar presente"; +$a->strings["ignore thread"] = "ignorar publicación"; +$a->strings["unignore thread"] = "revertir ignorar publicacion"; +$a->strings["toggle ignore status"] = "cambiar estatus de observación"; +$a->strings["pin"] = ""; +$a->strings["unpin"] = ""; +$a->strings["toggle pin status"] = ""; +$a->strings["pinned"] = ""; +$a->strings["add star"] = "Añadir estrella"; +$a->strings["remove star"] = "Quitar estrella"; +$a->strings["toggle star status"] = "Añadir a destacados"; +$a->strings["starred"] = "marcados con estrellas"; +$a->strings["add tag"] = "añadir etiqueta"; +$a->strings["like"] = "me gusta"; +$a->strings["dislike"] = "no me gusta"; +$a->strings["Share this"] = "Compartir esto"; +$a->strings["share"] = "compartir"; +$a->strings["%s (Received %s)"] = ""; +$a->strings["Comment this item on your system"] = ""; +$a->strings["remote comment"] = ""; +$a->strings["Pushed"] = ""; +$a->strings["Pulled"] = ""; +$a->strings["to"] = "a"; +$a->strings["via"] = "vía"; +$a->strings["Wall-to-Wall"] = "Muro-A-Muro"; +$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; +$a->strings["Reply to %s"] = ""; +$a->strings["More"] = ""; +$a->strings["Notifier task is pending"] = ""; +$a->strings["Delivery to remote servers is pending"] = ""; +$a->strings["Delivery to remote servers is underway"] = ""; +$a->strings["Delivery to remote servers is mostly done"] = ""; +$a->strings["Delivery to remote servers is done"] = ""; +$a->strings["%d comment"] = [ + 0 => "%d comentario", + 1 => "%d comentarios", +]; +$a->strings["Show more"] = ""; +$a->strings["Show fewer"] = ""; +$a->strings["comment"] = [ + 0 => "", + 1 => "Comentario", +]; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = ""; +$a->strings["The contact entries have been archived"] = ""; +$a->strings["Could not find any contact entry for this URL (%s)"] = "No se ha encontrado ninguna entrada de contacto para esta URL (%s)"; +$a->strings["The contact has been blocked from the node"] = "El contacto ha sido blockeado del nodo"; +$a->strings["Enter new password: "] = ""; +$a->strings["Enter user name: "] = ""; +$a->strings["Enter user nickname: "] = ""; +$a->strings["Enter user email address: "] = ""; +$a->strings["Enter a language (optional): "] = ""; +$a->strings["User is not pending."] = ""; +$a->strings["User has already been marked for deletion."] = ""; +$a->strings["Type \"yes\" to delete %s"] = ""; +$a->strings["Deletion aborted."] = ""; +$a->strings["Post update version number has been set to %s."] = ""; +$a->strings["Check for pending update actions."] = ""; +$a->strings["Done."] = ""; +$a->strings["Execute pending post updates."] = ""; +$a->strings["All pending post updates are done."] = ""; +$a->strings["The folder view/smarty3/ must be writable by webserver."] = ""; +$a->strings["Hometown:"] = "Ciudad de origen:"; +$a->strings["Marital Status:"] = ""; +$a->strings["With:"] = ""; +$a->strings["Since:"] = ""; +$a->strings["Sexual Preference:"] = "Preferencia sexual:"; +$a->strings["Political Views:"] = "Ideas políticas:"; +$a->strings["Religious Views:"] = "Creencias religiosas:"; +$a->strings["Likes:"] = "Me gusta:"; +$a->strings["Dislikes:"] = "No me gusta:"; +$a->strings["Title/Description:"] = "Título/Descrición:"; +$a->strings["Summary"] = "Resumen"; +$a->strings["Musical interests"] = "Gustos musicales"; +$a->strings["Books, literature"] = "Libros, literatura"; +$a->strings["Television"] = "Televisión"; +$a->strings["Film/dance/culture/entertainment"] = "Películas/baile/cultura/entretenimiento"; +$a->strings["Hobbies/Interests"] = "Aficiones/Intereses"; +$a->strings["Love/romance"] = "Amor/Romance"; +$a->strings["Work/employment"] = "Trabajo/ocupación"; +$a->strings["School/education"] = "Escuela/estudios"; +$a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales"; +$a->strings["No system theme config value set."] = ""; +$a->strings["Friend Suggestion"] = "Propuestas de amistad"; +$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["New Follower"] = "Nuevo seguidor"; +$a->strings["%s created a new post"] = "%s creó una nueva publicación"; +$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; +$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; +$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; +$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's"; +$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's"; +$a->strings["%s may attending %s's event"] = ""; +$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; +$a->strings["Network Notifications"] = "Notificaciones de Red"; +$a->strings["System Notifications"] = "Notificaciones del sistema"; +$a->strings["Personal Notifications"] = "Notificaciones personales"; +$a->strings["Home Notifications"] = "Notificaciones de Inicio"; +$a->strings["No more %s notifications."] = "No más notificaciones de %s."; +$a->strings["Show unread"] = "Mostrar no leído"; +$a->strings["Show all"] = "Mostrar todo"; +$a->strings["You must be logged in to show this page."] = ""; +$a->strings["Notifications"] = "Notificaciones"; +$a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas"; +$a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas"; +$a->strings["Notification type:"] = ""; +$a->strings["Suggested by:"] = ""; +$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás."; +$a->strings["Approve"] = "Aprobar"; +$a->strings["Claims to be known to you: "] = "Dice conocerte: "; +$a->strings["Shall your connection be bidirectional or not?"] = "¿Su conexión debe ser bidireccional o no?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias."; +$a->strings["Friend"] = "Amigo"; +$a->strings["Subscriber"] = "Suscriptor"; +$a->strings["About:"] = "Acerca de:"; +$a->strings["Network:"] = "Red:"; +$a->strings["No introductions."] = "Sin presentaciones."; +$a->strings["A Decentralized Social Network"] = ""; +$a->strings["Logged out."] = "Sesión finalizada"; +$a->strings["Invalid code, please retry."] = ""; +$a->strings["Two-factor authentication"] = ""; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = ""; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = ""; +$a->strings["Please enter a code from your authentication app"] = ""; +$a->strings["Verify code and complete login"] = ""; +$a->strings["Remaining recovery codes: %d"] = ""; +$a->strings["Two-factor recovery"] = ""; +$a->strings["

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

"] = ""; +$a->strings["Please enter a recovery code"] = ""; +$a->strings["Submit recovery code and complete login"] = ""; +$a->strings["Create a New Account"] = "Crear una nueva cuenta"; +$a->strings["Register"] = "Registrarse"; +$a->strings["Your OpenID: "] = ""; +$a->strings["Please enter your username and password to add the OpenID to your existing account."] = ""; +$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; +$a->strings["Logout"] = "Salir"; +$a->strings["Login"] = "Acceder"; +$a->strings["Password: "] = "Contraseña: "; +$a->strings["Remember me"] = "Recordarme"; +$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; +$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; +$a->strings["terms of service"] = "Términos de uso"; +$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; +$a->strings["privacy policy"] = "Política de privacidad"; +$a->strings["OpenID protocol error. No ID returned"] = ""; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = ""; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = ""; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Conversión horária"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."; +$a->strings["UTC time: %s"] = "Tiempo UTC: %s"; +$a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; +$a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; +$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:"; +$a->strings["Source input"] = ""; +$a->strings["BBCode::toPlaintext"] = ""; +$a->strings["BBCode::convert (raw HTML)"] = ""; +$a->strings["BBCode::convert"] = ""; +$a->strings["BBCode::convert => HTML::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; +$a->strings["Item Body"] = ""; +$a->strings["Item Tags"] = ""; +$a->strings["PageInfo::appendToBody"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = ""; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = ""; +$a->strings["Source input (Diaspora format)"] = ""; +$a->strings["Source input (Markdown)"] = ""; +$a->strings["Markdown::convert (raw HTML)"] = ""; +$a->strings["Markdown::convert"] = ""; +$a->strings["Markdown::toBBCode"] = ""; +$a->strings["Raw HTML input"] = ""; +$a->strings["HTML Input"] = ""; +$a->strings["HTML::toBBCode"] = ""; +$a->strings["HTML::toBBCode => BBCode::convert"] = ""; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = ""; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = ""; +$a->strings["HTML::toMarkdown"] = ""; +$a->strings["HTML::toPlaintext"] = ""; +$a->strings["HTML::toPlaintext (compact)"] = ""; +$a->strings["Decoded post"] = ""; +$a->strings["Post array before expand entities"] = ""; +$a->strings["Post converted"] = ""; +$a->strings["Converted body"] = ""; +$a->strings["Twitter addon is absent from the addon/ folder."] = ""; +$a->strings["Source text"] = ""; +$a->strings["BBCode"] = ""; +$a->strings["Diaspora"] = "Diaspora*"; +$a->strings["Markdown"] = ""; +$a->strings["HTML"] = ""; +$a->strings["Twitter Source"] = ""; +$a->strings["Only logged in users are permitted to perform a probing."] = "Sólo los usuarios registrados pueden realizar una exploración."; +$a->strings["Formatted"] = ""; +$a->strings["Source"] = ""; +$a->strings["Activity"] = ""; +$a->strings["Object data"] = ""; +$a->strings["Result Item"] = ""; +$a->strings["Source activity"] = ""; +$a->strings["You must be logged in to use this module"] = ""; +$a->strings["Source URL"] = ""; +$a->strings["Lookup address"] = ""; +$a->strings["%s's timeline"] = ""; +$a->strings["%s's posts"] = ""; +$a->strings["%s's comments"] = ""; +$a->strings["No contacts."] = "Ningún contacto."; +$a->strings["Follower (%s)"] = [ + 0 => "", + 1 => "", +]; +$a->strings["Following (%s)"] = [ + 0 => "", + 1 => "", +]; +$a->strings["Mutual friend (%s)"] = [ + 0 => "", + 1 => "", +]; +$a->strings["Contact (%s)"] = [ + 0 => "", + 1 => "", +]; +$a->strings["All contacts"] = ""; +$a->strings["Following"] = ""; +$a->strings["Mutual friends"] = ""; +$a->strings["You're currently viewing your profile as %s Cancel"] = ""; +$a->strings["Member since:"] = ""; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Fecha de nacimiento:"; +$a->strings["Age: "] = "Edad: "; +$a->strings["%d year old"] = [ + 0 => "", + 1 => "", +]; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Homepage:"] = "Página de inicio:"; +$a->strings["Forums:"] = "Foros:"; +$a->strings["View profile as:"] = ""; +$a->strings["Edit profile"] = "Editar perfil"; +$a->strings["View as"] = ""; +$a->strings["Only parent users can create additional accounts."] = ""; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = ""; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; +$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; +$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; +$a->strings["Note for the admin"] = "Nota para el administrador"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"; +$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; +$a->strings["Your invitation code: "] = ""; +$a->strings["Registration"] = "Registro"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = ""; +$a->strings["Please repeat your e-mail address:"] = ""; +$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = ""; +$a->strings["Choose a nickname: "] = "Escoge un apodo: "; +$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; +$a->strings["Terms of Service"] = "Términos de Servicio"; +$a->strings["Note: This node explicitly contains adult content"] = ""; +$a->strings["Parent Password:"] = ""; +$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; +$a->strings["Password doesn't match."] = ""; +$a->strings["Please enter your password."] = ""; +$a->strings["You have entered too much information."] = ""; +$a->strings["Please enter the identical mail address in the second field."] = ""; +$a->strings["The additional account was created."] = ""; +$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio."; +$a->strings["Registration successful."] = "Registro exitoso."; +$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; +$a->strings["You have to leave a request note for the admin."] = ""; +$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; +$a->strings["Bad Request"] = ""; +$a->strings["Unauthorized"] = ""; +$a->strings["Forbidden"] = ""; +$a->strings["Not Found"] = "No se ha encontrado"; +$a->strings["Internal Server Error"] = ""; +$a->strings["Service Unavailable"] = ""; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; +$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; +$a->strings["The requested resource could not be found but may be available in the future."] = ""; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; +$a->strings["Go back"] = ""; +$a->strings["Welcome to %s"] = "Bienvenido a %s"; +$a->strings["No friends to display."] = "No hay amigos para mostrar."; +$a->strings["Suggested contact not found."] = ""; +$a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; +$a->strings["Suggest Friends"] = "Sugerencias de amistad"; +$a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; +$a->strings["Credits"] = "Creditos"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["System check"] = "Verificación del sistema"; +$a->strings["Check again"] = "Compruebalo de nuevo"; +$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; +$a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; +$a->strings["Base settings"] = ""; +$a->strings["SSL link policy"] = "Política de enlaces SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si los enlaces generados deben ser forzados a utilizar SSL"; +$a->strings["Host name"] = "Nombre de dominio"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = ""; +$a->strings["Base path to installation"] = "Ruta base para la instalación"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."; +$a->strings["Sub path of the URL"] = ""; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = ""; +$a->strings["Database connection"] = "Conexión con la base de datos"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar."; +$a->strings["Database Server Name"] = "Nombre del servidor de la base de datos"; +$a->strings["Database Login Name"] = "Usuario de la base de datos"; +$a->strings["Database Login Password"] = "Contraseña de la base de datos"; +$a->strings["For security reasons the password must not be empty"] = "Por razones de seguridad la contraseña no debe estar vacía"; +$a->strings["Database Name"] = "Nombre de la base de datos"; +$a->strings["Please select a default timezone for your website"] = "Por favor, selecciona la zona horaria predeterminada para tu web"; +$a->strings["Site settings"] = "Configuración de la página web"; +$a->strings["Site administrator email address"] = "Dirección de correo del administrador de la web"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web."; +$a->strings["System Language:"] = "Sistema de idioma:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails."; +$a->strings["Your Friendica site database has been installed."] = "La base de datos de su sitio web de Friendica ha sido instalada."; +$a->strings["Installation finished"] = ""; +$a->strings["

What next

"] = "

¿Ahora qué?

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; +$a->strings["- select -"] = "- seleccionar -"; +$a->strings["Item was not removed"] = ""; +$a->strings["Item was not deleted"] = ""; +$a->strings["Wrong type \"%s\", expected one of: %s"] = ""; +$a->strings["Model not found"] = ""; +$a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible."; +$a->strings["Visible to:"] = "Visible para:"; +$a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar"; +$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:"; +$a->strings["Local Community"] = ""; +$a->strings["Posts from local users on this server"] = ""; +$a->strings["Global Community"] = ""; +$a->strings["Posts from users of the whole federated network"] = ""; +$a->strings["No results."] = "Sin resultados."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; +$a->strings["Community option not available."] = ""; +$a->strings["Not available."] = "No disponible"; +$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica "; +$a->strings["New Member Checklist"] = "Listado de nuevos miembros"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá."; +$a->strings["Getting Started"] = "Empezando"; +$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte."; +$a->strings["Go to Your Settings"] = "Ir a tus ajustes"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo."; +$a->strings["Upload Profile Photo"] = "Subir foto del Perfil"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no."; +$a->strings["Edit Your Profile"] = "Editar tu perfil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."; +$a->strings["Profile Keywords"] = "Palabras clave del perfil"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; +$a->strings["Connecting"] = "Conectando"; +$a->strings["Importing Emails"] = "Importando correos electrónicos"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico."; +$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"."; +$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario."; +$a->strings["Finding New People"] = "Encontrando nueva gente"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas."; +$a->strings["Groups"] = "Grupos"; +$a->strings["Group Your Contacts"] = "Agrupa tus contactos"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red."; +$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba."; +$a->strings["Getting Help"] = "Consiguiendo ayuda"; +$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda."; +$a->strings["This page is missing a url parameter."] = ""; +$a->strings["The post was created"] = "La publicación fue creada"; +$a->strings["Submanaged account can't access the administation pages. Please log back in as the main account."] = ""; $a->strings["Information"] = "Información"; -$a->strings["Overview"] = ""; +$a->strings["Overview"] = "Resumen"; $a->strings["Federation Statistics"] = "Estadísticas de federación"; $a->strings["Configuration"] = "Configuración"; $a->strings["Site"] = "Sitio"; @@ -201,162 +1298,290 @@ $a->strings["Users"] = "Usuarios"; $a->strings["Addons"] = ""; $a->strings["Themes"] = "Temas"; $a->strings["Additional features"] = "Características adicionales"; -$a->strings["Terms of Service"] = "Términos de Servicio"; $a->strings["Database"] = "Base de Datos"; $a->strings["DB updates"] = "Actualizaciones de la Base de Datos"; -$a->strings["Inspect Queue"] = "Inspeccionar cola"; $a->strings["Inspect Deferred Workers"] = ""; $a->strings["Inspect worker Queue"] = ""; $a->strings["Tools"] = "Herramientas"; -$a->strings["Contact Blocklist"] = ""; +$a->strings["Contact Blocklist"] = "Lista de Contactos Bloqueados"; $a->strings["Server Blocklist"] = "Lista de bloqueo del servidor"; $a->strings["Delete Item"] = "Eliminar Artículo"; $a->strings["Logs"] = "Registros"; $a->strings["View Logs"] = "Ver registro de depuración"; $a->strings["Diagnostics"] = "Diagnósticos"; -$a->strings["PHP Info"] = ""; +$a->strings["PHP Info"] = "Información PHP"; $a->strings["probe address"] = "probar direccion"; $a->strings["check webfinger"] = "Verificar webfinger"; +$a->strings["Item Source"] = ""; +$a->strings["Babel"] = ""; +$a->strings["ActivityPub Conversion"] = ""; $a->strings["Admin"] = "Admin"; -$a->strings["Addon Features"] = ""; +$a->strings["Addon Features"] = "Funciones de los Addon"; $a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación"; -$a->strings["Administration"] = "Administración"; -$a->strings["Display Terms of Service"] = "Mostrar los Términos de Servicio"; -$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general."; -$a->strings["Display Privacy Statement"] = "Mostrar las Directivas de Privacidad"; -$a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = ""; -$a->strings["Privacy Statement Preview"] = "Vista previa de las Directivas de Seguridad"; -$a->strings["The Terms of Service"] = "Los Términos de Servicio"; -$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior."; -$a->strings["Save Settings"] = "Guardar configuración"; -$a->strings["Blocked domain"] = "Dominio bloqueado"; -$a->strings["The blocked domain"] = "El dominio bloqueado"; -$a->strings["Reason for the block"] = "Razón para el bloqueo"; -$a->strings["The reason why you blocked this domain."] = "La razón por la que bloqueó este dominio."; -$a->strings["Delete domain"] = "Eliminar dominio"; -$a->strings["Check to delete this entry from the blocklist"] = "Marca para eliminar esta entrada de la lista de bloqueo"; -$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "Esta página se puede usar para definir una lista negra de servidores de la red federada a los que no se les permite interactuar con su nodo. Para todos los dominios ingresados, también debe dar una razón por la que ha bloqueado el servidor remoto."; -$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "La lista de servidores bloqueados estará disponible públicamente en la página /friendica para que los usuarios y las personas que investiguen los problemas de comunicación puedan encontrar fácilmente la razón.."; -$a->strings["Add new entry to block list"] = "Agregar nueva entrada a la lista de bloqueo"; -$a->strings["Server Domain"] = "Dominio del servidor"; -$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "El dominio del nuevo servidor para añadir a la lista de bloqueo. No incluye el protocolo."; -$a->strings["Block reason"] = "Lazón del bloqueo"; -$a->strings["Add Entry"] = "Añadir Entrada"; -$a->strings["Save changes to the blocklist"] = "Guardar cambios en la lista de bloqueo"; -$a->strings["Current Entries in the Blocklist"] = "Entradas actuales en la lista de bloqueo"; -$a->strings["Delete entry from blocklist"] = "Eliminar entrada de la lista de bloqueo"; -$a->strings["Delete entry from blocklist?"] = "¿Eliminar entrada de la lista de bloqueo?"; -$a->strings["Server added to blocklist."] = "Servidor añadido a la lista de bloqueo."; -$a->strings["Site blocklist updated."] = "Lista de bloqueo del sitio actualizada."; -$a->strings["The contact has been blocked from the node"] = "El contacto ha sido blockeado del nodo"; -$a->strings["Could not find any contact entry for this URL (%s)"] = ""; -$a->strings["%s contact unblocked"] = [ - 0 => "", - 1 => "", +$a->strings["%d contact edited."] = [ + 0 => "%d contacto editado.", + 1 => "%d contacts edited.", ]; -$a->strings["Remote Contact Blocklist"] = ""; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = ""; -$a->strings["Block Remote Contact"] = ""; -$a->strings["select all"] = "seleccionar todo"; -$a->strings["select none"] = ""; -$a->strings["Block"] = "Bloquear"; +$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; +$a->strings["Follow"] = ""; +$a->strings["Unfollow"] = ""; +$a->strings["Contact not found"] = ""; +$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; +$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; +$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; +$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; +$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; +$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; +$a->strings["Drop contact"] = "Eliminar contacto"; +$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?"; +$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; +$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; +$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; +$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; +$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; +$a->strings["Never"] = "Nunca"; +$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; +$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; +$a->strings["Suggest friends"] = "Sugerir amigos"; +$a->strings["Network type: %s"] = "Tipo de red: %s"; +$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; +$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = ""; +$a->strings["Disabled"] = "Deshabilitado"; +$a->strings["Fetch information"] = "Recaudar informacion"; +$a->strings["Fetch keywords"] = ""; +$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; +$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; +$a->strings["Contact Settings"] = "Ajustes del contacto"; +$a->strings["Contact"] = "Contacto"; +$a->strings["Their personal note"] = "Su nota personal"; +$a->strings["Edit contact notes"] = "Editar notas del contacto"; +$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; +$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; +$a->strings["Ignore contact"] = "Ignorar contacto"; +$a->strings["View conversations"] = "Ver conversaciones"; +$a->strings["Last update:"] = "Última actualización:"; +$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; +$a->strings["Update now"] = "Actualizar ahora"; $a->strings["Unblock"] = "Desbloquear"; -$a->strings["No remote contact is blocked from this node."] = ""; -$a->strings["Blocked Remote Contacts"] = ""; -$a->strings["Block New Remote Contact"] = ""; -$a->strings["Photo"] = ""; -$a->strings["Name"] = "Nombre"; -$a->strings["Address"] = "Dirección"; -$a->strings["Profile URL"] = "URL Perfil"; -$a->strings["%s total blocked contact"] = [ +$a->strings["Unignore"] = "Quitar de Ignorados"; +$a->strings["Currently blocked"] = "Bloqueados"; +$a->strings["Currently ignored"] = "Ignorados"; +$a->strings["Currently archived"] = "Archivados"; +$a->strings["Awaiting connection acknowledge"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; +$a->strings["Notification for new posts"] = "Notificacion de nuevos temas."; +$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; +$a->strings["Keyword Deny List"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; +$a->strings["Actions"] = "Acciones"; +$a->strings["All Contacts"] = "Todos los contactos"; +$a->strings["Show all contacts"] = "Mostrar todos los contactos"; +$a->strings["Pending"] = ""; +$a->strings["Only show pending contacts"] = ""; +$a->strings["Blocked"] = "Bloqueados"; +$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; +$a->strings["Ignored"] = "Ignorados"; +$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; +$a->strings["Archived"] = "Archivados"; +$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; +$a->strings["Hidden"] = "Ocultos"; +$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; +$a->strings["Organize your contact groups"] = ""; +$a->strings["Search your contacts"] = "Buscar en tus contactos"; +$a->strings["Results for: %s"] = "Resultados para: %s"; +$a->strings["Archive"] = "Archivo"; +$a->strings["Unarchive"] = "Sin archivar"; +$a->strings["Batch Actions"] = "Accones en lote"; +$a->strings["Conversations started by this contact"] = ""; +$a->strings["Posts and Comments"] = ""; +$a->strings["Profile Details"] = "Detalles del Perfil"; +$a->strings["View all contacts"] = "Ver todos los contactos"; +$a->strings["View all common friends"] = "Ver todos los conocidos en común "; +$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; +$a->strings["Mutual Friendship"] = "Amistad recíproca"; +$a->strings["is a fan of yours"] = "es tu fan"; +$a->strings["you are a fan of"] = "eres fan de"; +$a->strings["Pending outgoing contact request"] = ""; +$a->strings["Pending incoming contact request"] = ""; +$a->strings["Refetch contact data"] = "Volver a solicitar datos del contacto."; +$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; +$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; +$a->strings["Toggle Archive status"] = "Cambiar archivados"; +$a->strings["Delete contact"] = "Eliminar contacto"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; +$a->strings["Privacy Statement"] = ""; +$a->strings["Help:"] = "Ayuda:"; +$a->strings["Method Not Allowed."] = ""; +$a->strings["Profile not found"] = ""; +$a->strings["Total invitation limit exceeded."] = "Límite total de invitaciones excedido."; +$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo válida."; +$a->strings["Please join us on Friendica"] = "Únete a nosotros en Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio."; +$a->strings["%s : Message delivery failed."] = "%s : Ha fallado la entrega del mensaje."; +$a->strings["%d message sent."] = [ + 0 => "%d mensaje enviado.", + 1 => "%d mensajes enviados.", +]; +$a->strings["You have no more invitations available"] = "No tienes más invitaciones disponibles"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros."; +$a->strings["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."] = "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales."; +$a->strings["To accept this invitation, please visit and register at %s."] = "Para aceptar esta invitación, visite y regístrese en%s, por favor."; +$a->strings["Send invitations"] = "Enviar invitaciones"; +$a->strings["Enter email addresses, one per line:"] = "Introduce las direcciones de correo, una por línea:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Tienes que proporcionar el siguiente código: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor"; +$a->strings["People Search - %s"] = "Buscar perfiles - %s"; +$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s"; +$a->strings["Disable"] = "Desactivado"; +$a->strings["Enable"] = "Activado"; +$a->strings["Theme %s disabled."] = ""; +$a->strings["Theme %s successfully enabled."] = ""; +$a->strings["Theme %s failed to install."] = ""; +$a->strings["Screenshot"] = "Captura de pantalla"; +$a->strings["Administration"] = "Administración"; +$a->strings["Toggle"] = "Activar"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Mantenedor: "; +$a->strings["Unknown theme."] = ""; +$a->strings["Themes reloaded"] = ""; +$a->strings["Reload active themes"] = "Recargar interfaces de usuario activos"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = ""; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Sin soporte]"; +$a->strings["Lock feature %s"] = "Trancar opción %s "; +$a->strings["Manage Additional Features"] = "Administrar opciones adicionales"; +$a->strings["%s user blocked"] = [ 0 => "", 1 => "", ]; -$a->strings["URL of the remote contact to block."] = ""; -$a->strings["Delete this Item"] = "Eliminar este artículo"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "El GUID del artículo que quiere eliminar."; -$a->strings["Item marked for deletion."] = "Artículo marcado para eliminación."; -$a->strings["unknown"] = "desconocido"; -$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "; -$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = "El modulo directorio de contactos encontrados no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."; -$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = ""; -$a->strings["ID"] = "ID"; -$a->strings["Recipient Name"] = "Nombre del recipiente"; -$a->strings["Recipient Profile"] = "Perfil del recipiente"; -$a->strings["Network"] = "Red"; -$a->strings["Created"] = "Creado"; -$a->strings["Last Tried"] = "Ultimo intento"; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. "; +$a->strings["%s user unblocked"] = [ + 0 => "", + 1 => "", +]; +$a->strings["You can't remove yourself"] = ""; +$a->strings["%s user deleted"] = [ + 0 => "%s usuario eliminado", + 1 => "%s usuarios eliminados", +]; +$a->strings["%s user approved"] = [ + 0 => "", + 1 => "", +]; +$a->strings["%s registration revoked"] = [ + 0 => "", + 1 => "", +]; +$a->strings["User \"%s\" deleted"] = ""; +$a->strings["User \"%s\" blocked"] = ""; +$a->strings["User \"%s\" unblocked"] = ""; +$a->strings["Account approved."] = "Cuenta aprobada."; +$a->strings["Registration revoked"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Relay"] = ""; +$a->strings["Email"] = "Correo electrónico"; +$a->strings["Register date"] = "Fecha de registro"; +$a->strings["Last login"] = "Último acceso"; +$a->strings["Last public item"] = ""; +$a->strings["Type"] = ""; +$a->strings["Add User"] = "Agregar usuario"; +$a->strings["select all"] = "seleccionar todo"; +$a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; +$a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente."; +$a->strings["Request date"] = "Solicitud de fecha"; +$a->strings["No registrations."] = "Sin registros."; +$a->strings["Note from the user"] = "Nota para el usuario"; +$a->strings["Deny"] = "Denegado"; +$a->strings["User blocked"] = ""; +$a->strings["Site admin"] = "Administrador de la web"; +$a->strings["Account expired"] = "Cuenta caducada"; +$a->strings["New User"] = "Nuevo usuario"; +$a->strings["Permanent deletion"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; +$a->strings["Name of the new user."] = "Nombre del nuevo usuario"; +$a->strings["Nickname"] = "Apodo"; +$a->strings["Nickname of the new user."] = "Apodo del nuevo perfil."; +$a->strings["Email address of the new user."] = "Dirección de correo del nuevo perfil."; $a->strings["Inspect Deferred Worker Queue"] = ""; $a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = ""; $a->strings["Inspect Worker Queue"] = ""; $a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = ""; +$a->strings["ID"] = "ID"; $a->strings["Job Parameters"] = ""; +$a->strings["Created"] = "Creado"; $a->strings["Priority"] = ""; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; -$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1\$s, la versión ascendente es %2\$s"; -$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = ""; -$a->strings["The worker was never executed. Please check your database structure!"] = "El trabajador nunca fue ejecutado. ¡Revise la estructura de su base de datos, por favor!"; -$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "La última ejecución del trabajador estaba en %s UTC. Esto es anterior a una hora. Revise tu configuración de crontab, por favor."; -$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition."] = ""; -$a->strings["%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."] = ""; -$a->strings["Normal Account"] = "Cuenta normal"; -$a->strings["Automatic Follower Account"] = "Cuenta de Seguimiento Automático"; -$a->strings["Public Forum Account"] = "Cuenta del Foro Pública"; -$a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; -$a->strings["Blog Account"] = "Cuenta de blog"; -$a->strings["Private Forum Account"] = "Cuenta del Foro Privada"; -$a->strings["Message queues"] = "Cola de mensajes"; -$a->strings["Server Settings"] = ""; -$a->strings["Summary"] = "Resumen"; -$a->strings["Registered users"] = "Usuarios registrados"; -$a->strings["Pending registrations"] = "Pendientes de registro"; -$a->strings["Version"] = "Versión"; -$a->strings["Active addons"] = ""; +$a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; +$a->strings["Database structure update %s was successfully applied."] = "Actualización de base de datos %s fue aplicada con éxito."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"; +$a->strings["Executing %s failed with error: %s"] = "Paso %s fallo con el error: %s"; +$a->strings["Update %s was successfully applied."] = "Actualización %s aplicada con éxito."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización %s no ha informado, se desconoce el estado."; +$a->strings["There was no additional update function %s that needed to be called."] = "No había función adicional de actualización %s que necesitaba ser requerida."; +$a->strings["No failed updates."] = "Actualizaciones sin fallos."; +$a->strings["Check database structure"] = "Revisar estructura de la base de datos"; +$a->strings["Failed Updates"] = "Actualizaciones fallidas"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "No se incluyen las anteriores a la 1139, que no indicaban su estado."; +$a->strings["Mark success (if update was manually applied)"] = "Marcar como correcta (si actualizaste manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Intentando ejecutar este paso automáticamente"; +$a->strings["Other"] = "Otro"; +$a->strings["unknown"] = "desconocido"; +$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "; +$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = ""; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = ""; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = ""; +$a->strings["The logfile '%s' is not writable. No logging possible"] = ""; +$a->strings["PHP log currently enabled."] = "Registro PHP actualmente disponible."; +$a->strings["PHP log currently disabled."] = "Registro PHP actualmente deshabilitado."; +$a->strings["Clear"] = "Limpiar"; +$a->strings["Enable Debugging"] = "Habilitar debugging"; +$a->strings["Log file"] = "Archivo de registro"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."; +$a->strings["Log level"] = "Nivel de registro"; +$a->strings["PHP logging"] = "PHP logging"; +$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; $a->strings["Can not parse base url. Must have at least ://"] = "No se puede resolver la direccion URL base.\nDeberá tener al menos ://"; -$a->strings["Site settings updated."] = "Configuración de actualización."; +$a->strings["Relocation started. Could take a while to complete."] = ""; +$a->strings["Invalid storage backend setting value."] = ""; $a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; +$a->strings["%s - (Experimental)"] = ""; $a->strings["No community page for local users"] = ""; $a->strings["No community page"] = "No hay pagina de comunidad"; $a->strings["Public postings from users of this site"] = "Temas públicos de perfiles de este sitio."; $a->strings["Public postings from the federated network"] = ""; $a->strings["Public postings from local users and the federated network"] = ""; -$a->strings["Disabled"] = "Deshabilitado"; -$a->strings["Users, Global Contacts"] = "Perfiles, contactos globales"; -$a->strings["Users, Global Contacts/fallback"] = "Perfiles, contactos globales/fallback"; -$a->strings["One month"] = "Un mes"; -$a->strings["Three months"] = "Tres meses"; -$a->strings["Half a year"] = "Medio año"; -$a->strings["One year"] = "Un año"; $a->strings["Multi user instance"] = "Sesión multi usuario"; $a->strings["Closed"] = "Cerrado"; $a->strings["Requires approval"] = "Requiere aprobación"; $a->strings["Open"] = "Abierto"; -$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; -$a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; $a->strings["Don't check"] = "No verificar"; $a->strings["check the stable version"] = "verifique la versión estable"; $a->strings["check the development version"] = "verifica la versión de desarrollo"; +$a->strings["none"] = ""; +$a->strings["Local contacts"] = ""; +$a->strings["Interactors"] = ""; +$a->strings["Database (legacy)"] = ""; $a->strings["Republish users to directory"] = "Volver a publicar usuarios en el directorio"; -$a->strings["Registration"] = "Registro"; $a->strings["File upload"] = "Subida de archivo"; $a->strings["Policies"] = "Políticas"; -$a->strings["Advanced"] = "Avanzado"; $a->strings["Auto Discovered Contact Directory"] = "Directorio de contactos descubierto automáticamente"; $a->strings["Performance"] = "Rendimiento"; $a->strings["Worker"] = "Trabajador (??)"; $a->strings["Message Relay"] = ""; $a->strings["Relocate Instance"] = ""; -$a->strings["Warning! Advanced function. Could make this server unreachable."] = ""; +$a->strings["Warning! Advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = "Nombre del sitio"; -$a->strings["Host name"] = "Nombre de dominio"; $a->strings["Sender Email"] = "Dirección de origen de correo electrónico"; $a->strings["The email address your server shall use to send notification emails from."] = "La dirección de correo electrónico que el servidor debería usar como dirección de envío."; $a->strings["Banner/Logo"] = "Imagen/Logotipo"; +$a->strings["Email Banner/Logo"] = ""; $a->strings["Shortcut icon"] = "Icono de atajo"; $a->strings["Link to an icon that will be used for browsers."] = "Enlace hacia un icono que sera usado para el navegador."; $a->strings["Touch icon"] = "Icono touch"; @@ -365,17 +1590,17 @@ $a->strings["Additional Info"] = "Información adicional"; $a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = ""; $a->strings["System language"] = "Idioma"; $a->strings["System theme"] = "Tema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema"; +$a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = ""; $a->strings["Mobile system theme"] = "Tema de sistema móvil"; $a->strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; -$a->strings["SSL link policy"] = "Política de enlaces SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si los enlaces generados deben ser forzados a utilizar SSL"; $a->strings["Force SSL"] = "Forzar SSL"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."; $a->strings["Hide help entry from navigation menu"] = "Ocultar la ayuda en el menú de navegación"; $a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente."; $a->strings["Single user instance"] = "Sesión de usuario único"; $a->strings["Make this instance multi-user or single-user for the named user"] = "Haz esta sesión multi-usuario o usuario único para el usuario"; +$a->strings["File storage backend"] = ""; +$a->strings["The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you do not do so, the files uploaded before the change will still be available at the old backend. Please see the settings documentation for more information about the choices and the moving procedure."] = ""; $a->strings["Maximum image size"] = "Tamaño máximo de la imagen"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite."; $a->strings["Maximum image length"] = "Largo máximo de imagen"; @@ -427,11 +1652,9 @@ $a->strings["Allow users to register without a space between the first name and $a->strings["Community pages for visitors"] = ""; $a->strings["Which community pages should be available for visitors. Local users always see both pages."] = ""; $a->strings["Posts per user on community page"] = "Publicaciones por usuario en la pagina de comunidad"; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for \"Global Community\")"] = ""; $a->strings["Disable OStatus support"] = ""; $a->strings["Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["Only import OStatus/ActivityPub threads from our contacts"] = ""; -$a->strings["Normally we import every content from our OStatus and ActivityPub contacts. With this option we only store threads that are started by a contact that is known on our system."] = ""; $a->strings["OStatus support can only be enabled if threading is enabled."] = "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado."; $a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."; $a->strings["Enable Diaspora support"] = "Habilitar el soporte para Diaspora*"; @@ -445,27 +1668,28 @@ $a->strings["Proxy URL"] = "Dirección proxy"; $a->strings["Network timeout"] = "Tiempo de espera de red"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."; $a->strings["Maximum Load Average"] = "Promedio de carga máxima"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."; +$a->strings["Maximum system load before delivery and poll processes are deferred - default %d."] = ""; $a->strings["Maximum Load Average (Frontend)"] = "Carga máxima promedio (frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50."; $a->strings["Minimal Memory"] = "Memoria Mínima"; $a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = ""; -$a->strings["Maximum table size for optimization"] = "Tamaño máximo de las tablas para la optimización."; -$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = ""; -$a->strings["Minimum level of fragmentation"] = "Nivel mínimo de fragmentación "; -$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "; -$a->strings["Periodical check of global contacts"] = "Verificación periódica de los contactos globales."; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores."; +$a->strings["Periodically optimize tables"] = ""; +$a->strings["Periodically optimize tables like the cache and the workerqueue"] = ""; +$a->strings["Discover followers/followings from contacts"] = ""; +$a->strings["If enabled, contacts are checked for their followers and following contacts."] = ""; +$a->strings["None - deactivated"] = ""; +$a->strings["Local contacts - contacts of our local contacts are discovered for their followers/followings."] = ""; +$a->strings["Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."] = ""; +$a->strings["Synchronize the contacts with the directory server"] = ""; +$a->strings["if enabled, the system will check periodically for new contacts on the defined directory server."] = ""; $a->strings["Days between requery"] = "Días entre búsquedas"; $a->strings["Number of days after which a server is requeried for his contacts."] = "Cantidad de días hasta que un servidor es consultado por sus contactos."; $a->strings["Discover contacts from other servers"] = "Descubrir contactos de otros servidores"; -$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'"; -$a->strings["Timeframe for fetching global contacts"] = "Intervalos de tiempo para revisar contactos globales."; -$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)"; +$a->strings["Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers."] = ""; $a->strings["Search the local directory"] = "Buscar el directorio local"; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida."; $a->strings["Publish server information"] = "Publicar información del servidor"; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles."; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; $a->strings["Check upstream version"] = "Verifique la versión ascendente"; $a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración."; $a->strings["Suppress Tags"] = "Suprimir tags"; @@ -484,10 +1708,10 @@ $a->strings["Cache duration in seconds"] = "Duración de la caché en segundos"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1."; $a->strings["Maximum numbers of comments per post"] = "Numero máximo de respuestas por tema"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."; +$a->strings["Maximum numbers of comments per post on the display page"] = ""; +$a->strings["How many comments should be shown on the single view for each post? Default value is 1000."] = ""; $a->strings["Temp path"] = "Ruta a los temporales"; $a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "; -$a->strings["Base path to installation"] = "Ruta base para la instalación"; -$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."; $a->strings["Disable picture proxy"] = "Deshabilitar proxy de imagen"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = ""; $a->strings["Only search in tags"] = "Solo buscar en tags"; @@ -499,12 +1723,12 @@ $a->strings["Encryption layer between nodes."] = "Capa de encryptación entre no $a->strings["Enabled"] = ""; $a->strings["Maximum number of parallel workers"] = "Numero máximo de trabajos paralelos de fondo."; $a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = ""; -$a->strings["Don't use 'proc_open' with the worker"] = "No use 'proc_open' junto al \"trabajador\"!"; -$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = ""; +$a->strings["Don't use \"proc_open\" with the worker"] = ""; +$a->strings["Enable this if your system doesn't allow the use of \"proc_open\". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = ""; $a->strings["Enable fastlane"] = "Habilitar ascenso rápido"; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."; $a->strings["Enable frontend worker"] = "Habilitar trabajador de interfaz"; -$a->strings["When enabled the Worker process is triggered when backend access is performed \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = ""; $a->strings["Subscribe to relay"] = ""; $a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = ""; $a->strings["Relay server"] = ""; @@ -512,1369 +1736,378 @@ $a->strings["Address of the relay server where public posts should be send to. F $a->strings["Direct relay transfer"] = ""; $a->strings["Enables the direct transfer to other servers without using the relay servers"] = ""; $a->strings["Relay scope"] = ""; -$a->strings["Can be 'all' or 'tags'. 'all' means that every public post should be received. 'tags' means that only posts with selected tags should be received."] = ""; +$a->strings["Can be \"all\" or \"tags\". \"all\" means that every public post should be received. \"tags\" means that only posts with selected tags should be received."] = ""; $a->strings["all"] = ""; $a->strings["tags"] = ""; $a->strings["Server tags"] = ""; -$a->strings["Comma separated list of tags for the 'tags' subscription."] = ""; +$a->strings["Comma separated list of tags for the \"tags\" subscription."] = ""; $a->strings["Allow user tags"] = ""; -$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = ""; +$a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = ""; $a->strings["Start Relocation"] = ""; -$a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; -$a->strings["Database structure update %s was successfully applied."] = "Actualización de base de datos %s fue aplicada con éxito."; -$a->strings["Executing of database structure update %s failed with error: %s"] = "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"; -$a->strings["Executing %s failed with error: %s"] = "Paso %s fallo con el error: %s"; -$a->strings["Update %s was successfully applied."] = "Actualización %s aplicada con éxito."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización %s no ha informado, se desconoce el estado."; -$a->strings["There was no additional update function %s that needed to be called."] = "No había función adicional de actualización %s que necesitaba ser requerida."; -$a->strings["No failed updates."] = "Actualizaciones sin fallos."; -$a->strings["Check database structure"] = "Revisar estructura de la base de datos"; -$a->strings["Failed Updates"] = "Actualizaciones fallidas"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "No se incluyen las anteriores a la 1139, que no indicaban su estado."; -$a->strings["Mark success (if update was manually applied)"] = "Marcar como correcta (si actualizaste manualmente)"; -$a->strings["Attempt to execute this update step automatically"] = "Intentando ejecutar este paso automáticamente"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tEstimado %1\$s,\n\t\t\t\tel administrador de %2\$s ha creado una cuenta para usted."; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["Registration details for %s"] = "Detalles de registro para %s"; -$a->strings["%s user blocked/unblocked"] = [ - 0 => "%s usuario bloqueado/desbloqueado", - 1 => "%s usuarios bloqueados/desbloqueados", +$a->strings["Template engine (%s) error: %s"] = ""; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = ""; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d (or -1 for autosizing). See here for more information.
"] = ""; +$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1\$s, la versión ascendente es %2\$s"; +$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = ""; +$a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = ""; +$a->strings["The worker was never executed. Please check your database structure!"] = "El trabajador nunca fue ejecutado. ¡Revise la estructura de su base de datos, por favor!"; +$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "La última ejecución del trabajador estaba en %s UTC. Esto es anterior a una hora. Revise tu configuración de crontab, por favor."; +$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition."] = ""; +$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition."] = ""; +$a->strings["%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."] = ""; +$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = ""; +$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = ""; +$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = ""; +$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = ""; +$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = ""; +$a->strings["Normal Account"] = "Cuenta normal"; +$a->strings["Automatic Follower Account"] = "Cuenta de Seguimiento Automático"; +$a->strings["Public Forum Account"] = "Cuenta del Foro Pública"; +$a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; +$a->strings["Blog Account"] = "Cuenta de blog"; +$a->strings["Private Forum Account"] = "Cuenta del Foro Privada"; +$a->strings["Message queues"] = "Cola de mensajes"; +$a->strings["Server Settings"] = ""; +$a->strings["Registered users"] = "Usuarios registrados"; +$a->strings["Pending registrations"] = "Pendientes de registro"; +$a->strings["Version"] = "Versión"; +$a->strings["Active addons"] = ""; +$a->strings["Display Terms of Service"] = "Mostrar los Términos de Servicio"; +$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general."; +$a->strings["Display Privacy Statement"] = "Mostrar las Directivas de Privacidad"; +$a->strings["Show some informations regarding the needed information to operate the node according e.g. to EU-GDPR."] = ""; +$a->strings["Privacy Statement Preview"] = "Vista previa de las Directivas de Seguridad"; +$a->strings["The Terms of Service"] = "Los Términos de Servicio"; +$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior."; +$a->strings["Server domain pattern added to blocklist."] = ""; +$a->strings["Blocked server domain pattern"] = ""; +$a->strings["Reason for the block"] = "Razón para el bloqueo"; +$a->strings["Delete server domain pattern"] = ""; +$a->strings["Check to delete this entry from the blocklist"] = "Marca para eliminar esta entrada de la lista de bloqueo"; +$a->strings["Server Domain Pattern Blocklist"] = ""; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = ""; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = ""; +$a->strings["

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = ""; +$a->strings["Add new entry to block list"] = "Agregar nueva entrada a la lista de bloqueo"; +$a->strings["Server Domain Pattern"] = ""; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = ""; +$a->strings["Block reason"] = "Lazón del bloqueo"; +$a->strings["The reason why you blocked this server domain pattern."] = ""; +$a->strings["Add Entry"] = "Añadir Entrada"; +$a->strings["Save changes to the blocklist"] = "Guardar cambios en la lista de bloqueo"; +$a->strings["Current Entries in the Blocklist"] = "Entradas actuales en la lista de bloqueo"; +$a->strings["Delete entry from blocklist"] = "Eliminar entrada de la lista de bloqueo"; +$a->strings["Delete entry from blocklist?"] = "¿Eliminar entrada de la lista de bloqueo?"; +$a->strings["%s contact unblocked"] = [ + 0 => "", + 1 => "", ]; -$a->strings["You can't remove yourself"] = ""; -$a->strings["%s user deleted"] = [ - 0 => "%s usuario eliminado", - 1 => "%s usuarios eliminados", +$a->strings["Remote Contact Blocklist"] = "Lista de bloqueo de contactos remotos"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. "; +$a->strings["Block Remote Contact"] = "Bloquear Contacto Remoto"; +$a->strings["select none"] = "deseleccionar"; +$a->strings["No remote contact is blocked from this node."] = "No se bloquea ningún contacto remoto de este nodo."; +$a->strings["Blocked Remote Contacts"] = "Contactos remotos bloqueados"; +$a->strings["Block New Remote Contact"] = "Bloquear nuevo contacto remoto"; +$a->strings["Photo"] = "Foto"; +$a->strings["Reason"] = ""; +$a->strings["%s total blocked contact"] = [ + 0 => "", + 1 => "", ]; -$a->strings["User '%s' deleted"] = "Usuario '%s' eliminado"; -$a->strings["User '%s' unblocked"] = "Usuario '%s' desbloqueado"; -$a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; -$a->strings["Normal Account Page"] = "Página de cuenta normal"; -$a->strings["Soapbox Page"] = "Página de tribuna"; -$a->strings["Public Forum"] = "Foro público"; -$a->strings["Automatic Friend Page"] = "Página de Amistad autómatica"; -$a->strings["Private Forum"] = ""; -$a->strings["Personal Page"] = "Página personal"; -$a->strings["Organisation Page"] = "Página de organización"; -$a->strings["News Page"] = "Página de noticias"; -$a->strings["Community Forum"] = "Foro de la comunidad"; -$a->strings["Email"] = "Correo electrónico"; -$a->strings["Register date"] = "Fecha de registro"; -$a->strings["Last login"] = "Último acceso"; -$a->strings["Last item"] = "Último elemento"; -$a->strings["Type"] = ""; -$a->strings["Add User"] = "Agregar usuario"; -$a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; -$a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente."; -$a->strings["Request date"] = "Solicitud de fecha"; -$a->strings["No registrations."] = "Sin registros."; -$a->strings["Note from the user"] = "Nota para el usuario"; -$a->strings["Approve"] = "Aprobar"; -$a->strings["Deny"] = "Denegado"; -$a->strings["User blocked"] = ""; -$a->strings["Site admin"] = "Administrador de la web"; -$a->strings["Account expired"] = "Cuenta caducada"; -$a->strings["New User"] = "Nuevo usuario"; -$a->strings["Permanent deletion"] = ""; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$a->strings["Name of the new user."] = "Nombre del nuevo usuario"; -$a->strings["Nickname"] = "Apodo"; -$a->strings["Nickname of the new user."] = "Apodo del nuevo perfil."; -$a->strings["Email address of the new user."] = "Dirección de correo del nuevo perfil."; +$a->strings["URL of the remote contact to block."] = ""; +$a->strings["Block Reason"] = ""; +$a->strings["Item Guid"] = ""; +$a->strings["Item marked for deletion."] = "Artículo marcado para eliminación."; +$a->strings["Delete this Item"] = "Eliminar este artículo"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "El GUID del artículo que quiere eliminar."; +$a->strings["Addon not found."] = ""; $a->strings["Addon %s disabled."] = ""; $a->strings["Addon %s enabled."] = ""; -$a->strings["Disable"] = "Desactivado"; -$a->strings["Enable"] = "Activado"; -$a->strings["Toggle"] = "Activar"; -$a->strings["Settings"] = "Configuración"; -$a->strings["Author: "] = "Autor:"; -$a->strings["Maintainer: "] = "Mantenedor: "; +$a->strings["Addons reloaded"] = ""; +$a->strings["Addon %s failed to install."] = ""; $a->strings["Reload active addons"] = ""; $a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = ""; -$a->strings["No themes found."] = "No se encontraron temas."; -$a->strings["Screenshot"] = "Captura de pantalla"; -$a->strings["Reload active themes"] = "Recargar interfaces de usuario activos"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = ""; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[Sin soporte]"; -$a->strings["Log settings updated."] = "Configuración de registro actualizada."; -$a->strings["PHP log currently enabled."] = "Registro PHP actualmente disponible."; -$a->strings["PHP log currently disabled."] = "Registro PHP actualmente deshabilitado."; -$a->strings["Clear"] = "Limpiar"; -$a->strings["Enable Debugging"] = "Habilitar debugging"; -$a->strings["Log file"] = "Archivo de registro"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."; -$a->strings["Log level"] = "Nivel de registro"; -$a->strings["PHP logging"] = "PHP logging"; -$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = ""; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = ""; -$a->strings["Off"] = "Apagado"; -$a->strings["On"] = "Encendido"; -$a->strings["Lock feature %s"] = "Trancar opción %s "; -$a->strings["Manage Additional Features"] = "Administrar opciones adicionales"; -$a->strings["No friends to display."] = "No hay amigos para mostrar."; -$a->strings["Connect"] = "Conectar"; -$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; -$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:"; -$a->strings["Please login to continue."] = "Inicia sesión para continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"; -$a->strings["No"] = "No"; -$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; -$a->strings["Applications"] = "Aplicaciones"; -$a->strings["No installed applications."] = "Sin aplicaciones"; -$a->strings["Item not available."] = "Elemento no disponible."; +$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; +$a->strings["Find on this site"] = "Buscar en este sitio"; +$a->strings["Results for:"] = "Resultados para:"; +$a->strings["Site Directory"] = "Directorio del sitio"; $a->strings["Item was not found."] = "Elemento no encontrado."; -$a->strings["Source input"] = ""; -$a->strings["BBCode::toPlaintext"] = ""; -$a->strings["BBCode::convert (raw HTML)"] = ""; -$a->strings["BBCode::convert"] = ""; -$a->strings["BBCode::convert => HTML::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = ""; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = ""; -$a->strings["Source input (Diaspora format)"] = ""; -$a->strings["Markdown::convert (raw HTML)"] = ""; -$a->strings["Markdown::convert"] = ""; -$a->strings["Markdown::toBBCode"] = ""; -$a->strings["Raw HTML input"] = ""; -$a->strings["HTML Input"] = ""; -$a->strings["HTML::toBBCode"] = ""; -$a->strings["HTML::toBBCode => BBCode::convert"] = ""; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = ""; -$a->strings["HTML::toMarkdown"] = ""; -$a->strings["HTML::toPlaintext"] = ""; -$a->strings["Source text"] = ""; -$a->strings["BBCode"] = ""; -$a->strings["Markdown"] = ""; -$a->strings["HTML"] = ""; -$a->strings["Login"] = "Acceder"; -$a->strings["Bad Request"] = ""; -$a->strings["The post was created"] = "La publicación fue creada"; -$a->strings["Access denied."] = "Acceso denegado."; -$a->strings["Page not found."] = "Página no encontrada."; -$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido."; -$a->strings["Events"] = "Eventos"; -$a->strings["View"] = "Vista"; -$a->strings["Previous"] = "Previo"; -$a->strings["Next"] = "Siguiente"; -$a->strings["today"] = "hoy"; -$a->strings["month"] = "mes"; -$a->strings["week"] = "semana"; -$a->strings["day"] = "día"; -$a->strings["list"] = "lista"; -$a->strings["User not found"] = "Usuario no encontrado"; -$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta"; -$a->strings["No exportable data found"] = "No se ha encontrado información exportable"; -$a->strings["calendar"] = "calendario"; -$a->strings["No contacts in common."] = "Sin contactos en común."; -$a->strings["Common Friends"] = "Amigos comunes"; -$a->strings["Public access denied."] = "Acceso público denegado."; -$a->strings["Community option not available."] = ""; -$a->strings["Not available."] = "No disponible"; -$a->strings["Local Community"] = ""; -$a->strings["Posts from local users on this server"] = ""; -$a->strings["Global Community"] = ""; -$a->strings["Posts from users of the whole federated network"] = ""; -$a->strings["No results."] = "Sin resultados."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; -$a->strings["Credits"] = "Creditos"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "; -$a->strings["Contact settings applied."] = "Contacto configurado con éxito."; +$a->strings["Please enter a post body."] = ""; +$a->strings["This feature is only available with the frio theme."] = ""; +$a->strings["Compose new personal note"] = ""; +$a->strings["Compose new post"] = ""; +$a->strings["Visibility"] = ""; +$a->strings["Clear the location"] = ""; +$a->strings["Location services are unavailable on your device"] = ""; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = ""; +$a->strings["Installed addons/apps:"] = ""; +$a->strings["No installed addons/apps"] = ""; +$a->strings["Read about the Terms of Service of this node."] = ""; +$a->strings["On this server the following remote servers are blocked."] = "En este servidor los siguientes servidores remotos están bloqueados."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = ""; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor."; +$a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y problemas: por favor visita"; +$a->strings["the bugtracker at github"] = "aviso de fallas (bugs) en github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; +$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; +$a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; +$a->strings["The Photo with id %s is not available."] = ""; +$a->strings["Invalid photo with id %s."] = ""; +$a->strings["The provided profile link doesn't seem to be valid"] = ""; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = ""; +$a->strings["Account"] = "Cuenta"; +$a->strings["Display"] = "Interfaz del usuario"; +$a->strings["Manage Accounts"] = ""; +$a->strings["Connected apps"] = "Aplicaciones conectadas"; +$a->strings["Export personal data"] = "Exportación de datos personales"; +$a->strings["Remove account"] = "Eliminar cuenta"; +$a->strings["Could not create group."] = "Imposible crear el grupo."; +$a->strings["Group not found."] = "Grupo no encontrado."; +$a->strings["Group name was not changed."] = ""; +$a->strings["Unknown group."] = ""; +$a->strings["Contact is deleted."] = ""; +$a->strings["Unable to add the contact to the group."] = ""; +$a->strings["Contact successfully added to group."] = ""; +$a->strings["Unable to remove the contact from the group."] = ""; +$a->strings["Contact successfully removed from group."] = ""; +$a->strings["Unknown group command."] = ""; +$a->strings["Bad request."] = ""; +$a->strings["Save Group"] = "Guardar grupo"; +$a->strings["Filter"] = ""; +$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; +$a->strings["Group Name: "] = "Nombre del grupo: "; +$a->strings["Contacts not in any group"] = "Contactos sin grupo"; +$a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; +$a->strings["Delete Group"] = "Borrar grupo"; +$a->strings["Edit Group Name"] = "Editar nombre de grupo"; +$a->strings["Members"] = "Miembros"; +$a->strings["Remove contact from group"] = ""; +$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; +$a->strings["Add contact to group"] = ""; +$a->strings["Only logged in users are permitted to perform a search."] = "Solo usuarios activos tienen permiso para ejecutar búsquedas."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Se permite solo una búsqueda por minuto para usuarios no identificados."; +$a->strings["Search"] = "Buscar"; +$a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s"; +$a->strings["You must be logged in to use this module."] = ""; +$a->strings["Search term was not saved."] = ""; +$a->strings["Search term already saved."] = ""; +$a->strings["Search term was not removed."] = ""; +$a->strings["No profile"] = "Nigún perfil"; +$a->strings["Error while sending poke, please retry."] = ""; +$a->strings["Poke/Prod"] = "Toque/Empujón"; +$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien"; +$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor"; +$a->strings["Make this post private"] = "Hacer esta publicación privada"; $a->strings["Contact update failed."] = "Error al actualizar el Contacto."; -$a->strings["Contact not found."] = "Contacto no encontrado."; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página."; $a->strings["No mirroring"] = "No espejar"; $a->strings["Mirror as forwarded posting"] = "Espejar como reenvio"; $a->strings["Mirror as my own posting"] = "Espejar como publicación propia"; $a->strings["Return to contact editor"] = "Volver al editor de contactos"; -$a->strings["Refetch contact data"] = "Volver a solicitar datos del contacto."; -$a->strings["Submit"] = "Envíar"; $a->strings["Remote Self"] = "Perfil remoto"; $a->strings["Mirror postings from this contact"] = "Espejar publicaciones de este contacto"; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."; $a->strings["Account Nickname"] = "Apodo de la cuenta"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; $a->strings["Account URL"] = "Dirección de la cuenta"; +$a->strings["Account URL Alias"] = ""; $a->strings["Friend Request URL"] = "Dirección de la solicitud de amistad"; $a->strings["Friend Confirm URL"] = "Dirección de confirmación de tu amigo "; $a->strings["Notification Endpoint URL"] = "Dirección URL de la notificación"; $a->strings["Poll/Feed URL"] = "Dirección del Sondeo/Fuentes"; $a->strings["New photo from this URL"] = "Nueva foto de esta dirección"; -$a->strings["Parent user not found."] = ""; -$a->strings["No parent user"] = ""; -$a->strings["Parent Password:"] = ""; -$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; -$a->strings["Parent User"] = ""; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; -$a->strings["Delegate Page Management"] = "Delegar la administración de la página"; -$a->strings["Delegates"] = ""; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente."; -$a->strings["Existing Page Delegates"] = "Delegados actuales de la página"; -$a->strings["Potential Delegates"] = "Delegados potenciales"; -$a->strings["Remove"] = "Eliminar"; -$a->strings["Add"] = "Añadir"; -$a->strings["No entries."] = "Sin entradas."; -$a->strings["Profile not found."] = "Perfil no encontrado."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada."; -$a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida."; -$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: "; -$a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito."; -$a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo."; -$a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada."; -$a->strings["Remote site reported: "] = "El sito remoto informó: "; -$a->strings["Unable to set contact photo."] = "Imposible establecer la foto del contacto."; -$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla."; -$a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos."; -$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo."; -$a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema"; -$a->strings["[Name Withheld]"] = "[Nombre oculto]"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s"; -$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; -$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; -$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "no se encontró %d parámetro requerido en el lugar determinado", - 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", -]; -$a->strings["Introduction complete."] = "Presentación completa."; -$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; -$a->strings["Profile unavailable."] = "Perfil no disponible."; -$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; -$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; -$a->strings["Invalid locator"] = "Localizador no válido"; -$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; -$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; -$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; -$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; -$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; -$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."; -$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["Hide this contact"] = "Ocultar este contacto"; -$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = ""; -$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; -$a->strings["Does %s know you?"] = "¿%s te conoce?"; -$a->strings["Add a personal note:"] = "Añade una nota personal:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["GNU Social (Pleroma, Mastodon)"] = ""; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = ""; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; -$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; -$a->strings["Submit Request"] = "Enviar solicitud"; -$a->strings["Location:"] = "Localización:"; -$a->strings["Gender:"] = "Género:"; -$a->strings["Status:"] = "Estado:"; -$a->strings["Homepage:"] = "Página de inicio:"; -$a->strings["About:"] = "Acerca de:"; -$a->strings["Global Directory"] = "Directorio global"; -$a->strings["Find on this site"] = "Buscar en este sitio"; -$a->strings["Results for:"] = "Resultados para:"; -$a->strings["Site Directory"] = "Directorio del sitio"; -$a->strings["Find"] = "Buscar"; -$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; -$a->strings["People Search - %s"] = "Buscar perfiles - %s"; -$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s"; -$a->strings["No matches"] = "Sin conincidencias"; -$a->strings["Item not found"] = "Elemento no encontrado"; -$a->strings["Edit post"] = "Editar publicación"; -$a->strings["Save"] = "Guardar"; -$a->strings["Insert web link"] = "Insertar enlace"; -$a->strings["web link"] = "enlace web"; -$a->strings["Insert video link"] = "Insertar enlace del vídeo"; -$a->strings["video link"] = "enlace de video"; -$a->strings["Insert audio link"] = "Insertar vínculo del audio"; -$a->strings["audio link"] = "enlace de audio"; -$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; -$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo."; -$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas."; -$a->strings["Create New Event"] = "Crea un evento nuevo"; -$a->strings["Event details"] = "Detalles del evento"; -$a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo"; -$a->strings["Event Starts:"] = "Inicio del evento:"; -$a->strings["Required"] = "Obligatorio"; -$a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante."; -$a->strings["Event Finishes:"] = "Finalización del evento:"; -$a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; -$a->strings["Description:"] = "Descripción:"; -$a->strings["Title:"] = "Título:"; -$a->strings["Share this event"] = "Comparte este evento"; -$a->strings["Basic"] = "Basic"; -$a->strings["Permissions"] = "Permisos"; -$a->strings["Failed to remove event"] = "Error al eliminar el evento"; -$a->strings["Event removed"] = "Evento eliminado"; -$a->strings["Photos"] = "Fotografías"; -$a->strings["Contact Photos"] = "Foto del contacto"; -$a->strings["Upload"] = "Subir"; -$a->strings["Files"] = "Archivos"; -$a->strings["You must be logged in to use this module"] = ""; -$a->strings["Source URL"] = ""; -$a->strings["- select -"] = "- seleccionar -"; -$a->strings["The contact could not be added."] = ""; -$a->strings["You already added this contact."] = "Ya has añadido este contacto."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado."; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = ""; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor."; -$a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y problemas: por favor visita"; -$a->strings["the bugtracker at github"] = "aviso de fallas (bugs) en github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = ""; -$a->strings["Installed addons/apps:"] = ""; -$a->strings["No installed addons/apps"] = ""; -$a->strings["Read about the Terms of Service of this node."] = ""; -$a->strings["On this server the following remote servers are blocked."] = "En este servidor los siguientes servidores remotos están bloqueados."; -$a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; -$a->strings["Suggest Friends"] = "Sugerencias de amistad"; -$a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; -$a->strings["Group created."] = "Grupo creado."; -$a->strings["Could not create group."] = "Imposible crear el grupo."; -$a->strings["Group not found."] = "Grupo no encontrado."; -$a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; -$a->strings["Permission denied"] = "Permiso denegado"; -$a->strings["Save Group"] = "Guardar grupo"; -$a->strings["Filter"] = ""; -$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; -$a->strings["Group Name: "] = "Nombre del grupo: "; -$a->strings["Contacts not in any group"] = "Contactos sin grupo"; -$a->strings["Group removed."] = "Grupo eliminado."; -$a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; -$a->strings["Delete Group"] = "Borrar grupo"; -$a->strings["Edit Group Name"] = "Editar nombre de grupo"; -$a->strings["Members"] = "Miembros"; -$a->strings["All Contacts"] = "Todos los contactos"; -$a->strings["Group is empty"] = "El grupo está vacío"; -$a->strings["Remove contact from group"] = ""; -$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; -$a->strings["Add contact to group"] = ""; -$a->strings["No profile"] = "Nigún perfil"; -$a->strings["Help:"] = "Ayuda:"; -$a->strings["Help"] = "Ayuda"; -$a->strings["Not Found"] = "No se ha encontrado"; -$a->strings["Welcome to %s"] = "Bienvenido a %s"; -$a->strings["Total invitation limit exceeded."] = "Límite total de invitaciones excedido."; -$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo válida."; -$a->strings["Please join us on Friendica"] = "Únete a nosotros en Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio."; -$a->strings["%s : Message delivery failed."] = "%s : Ha fallado la entrega del mensaje."; -$a->strings["%d message sent."] = [ - 0 => "%d mensaje enviado.", - 1 => "%d mensajes enviados.", -]; -$a->strings["You have no more invitations available"] = "No tienes más invitaciones disponibles"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros."; -$a->strings["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."] = "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales."; -$a->strings["To accept this invitation, please visit and register at %s."] = "Para aceptar esta invitación, visite y regístrese en%s, por favor."; -$a->strings["Send invitations"] = "Enviar invitaciones"; -$a->strings["Enter email addresses, one per line:"] = "Introduce las direcciones de correo, una por línea:"; -$a->strings["Your message:"] = "Tu mensaje:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Tienes que proporcionar el siguiente código: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor"; -$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; -$a->strings["Empty post discarded."] = "Publicación vacía descartada."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; -$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; -$a->strings["%s posted an update."] = "%s ha publicado una actualización."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Conversión horária"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."; -$a->strings["UTC time: %s"] = "Tiempo UTC: %s"; -$a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; -$a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; -$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:"; -$a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible."; -$a->strings["Visible to:"] = "Visible para:"; -$a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; -$a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; -$a->strings["Request has expired, please make a new one."] = ""; -$a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; -$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; -$a->strings["Reset"] = "Restablecer"; -$a->strings["Password Reset"] = "Restablecer la contraseña"; -$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; -$a->strings["Your new password is"] = "Tu nueva contraseña es"; -$a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; -$a->strings["click here to login"] = "pulsa aquí para acceder"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = ""; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Tu contraseña se ha cambiado por %s"; -$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento"; -$a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar"; -$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado."; -$a->strings["first"] = "primera"; -$a->strings["next"] = "sig."; -$a->strings["Profile Match"] = "Coincidencias de Perfil"; -$a->strings["New Message"] = "Nuevo mensaje"; -$a->strings["No recipient selected."] = "Ningún destinatario seleccionado"; -$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto."; -$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado."; -$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes."; -$a->strings["Message sent."] = "Mensaje enviado."; -$a->strings["Discard"] = "Descartar"; -$a->strings["Messages"] = "Mensajes"; -$a->strings["Do you really want to delete this message?"] = "¿Estás seguro de que quieres borrar este mensaje?"; -$a->strings["Conversation not found."] = ""; -$a->strings["Message deleted."] = "Mensaje eliminado."; -$a->strings["Conversation removed."] = "Conversación eliminada."; -$a->strings["Please enter a link URL:"] = "Introduce la dirección del enlace:"; -$a->strings["Send Private Message"] = "Enviar mensaje privado"; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Asunto:"; -$a->strings["No messages."] = "No hay mensajes."; -$a->strings["Message not available."] = "Mensaje no disponibile."; -$a->strings["Delete message"] = "Borrar mensaje"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Delete conversation"] = "Eliminar conversación"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. "; -$a->strings["Send Reply"] = "Enviar respuesta"; -$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s"; -$a->strings["You and %s"] = "Tú y %s"; -$a->strings["%s and You"] = "%s y Tú"; -$a->strings["%d message"] = [ - 0 => "%d mensaje", - 1 => "%d mensajes", -]; -$a->strings["Remove term"] = "Eliminar término"; -$a->strings["Saved Searches"] = "Búsquedas guardadas"; -$a->strings["add"] = "añadir"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ - 0 => "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos.", - 1 => "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos.", -]; -$a->strings["Messages in this group won't be send to these receivers."] = "Los mensajes de este grupo no se enviarán a estos receptores."; -$a->strings["No such group"] = "Ningún grupo"; -$a->strings["Group: %s"] = "Grupo: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente."; -$a->strings["Invalid contact."] = "Contacto erróneo."; -$a->strings["Commented Order"] = "Orden de comentarios"; -$a->strings["Sort by Comment Date"] = "Ordenar por fecha de comentarios"; -$a->strings["Posted Order"] = "Orden de publicación"; -$a->strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -$a->strings["Personal"] = "Personal"; -$a->strings["Posts that mention or involve you"] = "Publicaciones que te mencionan o involucran"; -$a->strings["New"] = "Nuevo"; -$a->strings["Activity Stream - by date"] = "Corriente de actividad por fecha"; -$a->strings["Shared Links"] = "Enlaces compartidos"; -$a->strings["Interesting Links"] = "Enlaces interesantes"; -$a->strings["Starred"] = "Favoritos"; -$a->strings["Favourite Posts"] = "Publicaciones favoritas"; -$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica "; -$a->strings["New Member Checklist"] = "Listado de nuevos miembros"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá."; -$a->strings["Getting Started"] = "Empezando"; -$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte."; -$a->strings["Go to Your Settings"] = "Ir a tus ajustes"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo."; -$a->strings["Profile"] = "Perfil"; -$a->strings["Upload Profile Photo"] = "Subir foto del Perfil"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no."; -$a->strings["Edit Your Profile"] = "Editar tu perfil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."; -$a->strings["Profile Keywords"] = "Palabras clave del perfil"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos."; -$a->strings["Connecting"] = "Conectando"; -$a->strings["Importing Emails"] = "Importando correos electrónicos"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico."; -$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"."; -$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario."; -$a->strings["Finding New People"] = "Encontrando nueva gente"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas."; -$a->strings["Groups"] = "Grupos"; -$a->strings["Group Your Contacts"] = "Agrupa tus contactos"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red."; -$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba."; -$a->strings["Getting Help"] = "Consiguiendo ayuda"; -$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda."; -$a->strings["Personal Notes"] = "Notas personales"; -$a->strings["Invalid request identifier."] = "Solicitud de identificación no válida."; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["Notifications"] = "Notificaciones"; -$a->strings["Network Notifications"] = "Notificaciones de Red"; -$a->strings["System Notifications"] = "Notificaciones del sistema"; -$a->strings["Personal Notifications"] = "Notificaciones personales"; -$a->strings["Home Notifications"] = "Notificaciones de Inicio"; -$a->strings["Show unread"] = "Mostrar no leído"; -$a->strings["Show all"] = "Mostrar todo"; -$a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas"; -$a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas"; -$a->strings["Notification type:"] = ""; -$a->strings["Suggested by:"] = ""; -$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás."; -$a->strings["Claims to be known to you: "] = "Dice conocerte: "; -$a->strings["yes"] = "sí"; -$a->strings["no"] = "no"; -$a->strings["Shall your connection be bidirectional or not?"] = "¿Su conexión debe ser bidireccional o no?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias."; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Aceptar a %s como participante les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias."; -$a->strings["Friend"] = "Amigo"; -$a->strings["Sharer"] = "Lector"; -$a->strings["Subscriber"] = "Suscriptor"; -$a->strings["Network:"] = "Red:"; -$a->strings["No introductions."] = "Sin presentaciones."; -$a->strings["No more %s notifications."] = "No más notificaciones de %s."; -$a->strings["No more system notifications."] = "No hay más notificaciones del sistema."; -$a->strings["Post successful."] = "¡Publicado!"; -$a->strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. ID no devuelta."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio."; -$a->strings["Login failed."] = "Accesso fallido."; -$a->strings["Subscribing to OStatus contacts"] = "Subscribir a los contactos de OStatus"; -$a->strings["No contact provided."] = "Sin suministro de datos de contacto."; -$a->strings["Couldn't fetch information for contact."] = "No se ha podido conseguir la información del contacto."; -$a->strings["Couldn't fetch friends for contact."] = "No se ha podido conseguir datos de amigos para contactar."; -$a->strings["Done"] = "hecho!"; -$a->strings["success"] = "exito!"; -$a->strings["failed"] = "fallido!"; -$a->strings["ignored"] = "ignorado"; -$a->strings["Keep this window open until done."] = "Mantén esta ventana abierta hasta que el proceso ha terminado."; -$a->strings["Photo Albums"] = "Álbum de Fotos"; -$a->strings["Recent Photos"] = "Fotos recientes"; -$a->strings["Upload New Photos"] = "Subir nuevas fotos"; -$a->strings["everybody"] = "todos"; -$a->strings["Contact information unavailable"] = "Información del contacto no disponible"; -$a->strings["Album not found."] = "Álbum no encontrado."; -$a->strings["Delete Album"] = "Eliminar álbum"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "¿Estás seguro de quieres borrar este álbum y todas sus fotos?"; -$a->strings["Delete Photo"] = "Eliminar foto"; -$a->strings["Do you really want to delete this photo?"] = "¿Estás seguro de que quieres borrar esta foto?"; -$a->strings["a photo"] = "una foto"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fue etiquetado en %2\$s por %3\$s"; -$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s"; -$a->strings["Image upload didn't complete, please try again"] = ""; -$a->strings["Image file is missing"] = ""; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = ""; -$a->strings["Image file is empty."] = "El archivo de imagen está vacío."; -$a->strings["Unable to process image."] = "Imposible procesar la imagen."; -$a->strings["Image upload failed."] = "Error al subir la imagen."; -$a->strings["No photos selected"] = "Ninguna foto seleccionada"; -$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -$a->strings["Upload Photos"] = "Subir fotos"; -$a->strings["New album name: "] = "Nombre del nuevo álbum: "; -$a->strings["or select existing album:"] = ""; -$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío"; -$a->strings["Show to Groups"] = "Mostrar a los Grupos"; -$a->strings["Show to Contacts"] = "Mostrar a los Contactos"; -$a->strings["Edit Album"] = "Modificar álbum"; -$a->strings["Show Newest First"] = "Mostrar más nuevos primero"; -$a->strings["Show Oldest First"] = "Mostrar más antiguos primero"; -$a->strings["View Photo"] = "Ver foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -$a->strings["Photo not available"] = "Foto no disponible"; -$a->strings["View photo"] = "Ver foto"; -$a->strings["Edit photo"] = "Modificar foto"; -$a->strings["Use as profile photo"] = "Usar como foto del perfil"; -$a->strings["Private Message"] = "Mensaje privado"; -$a->strings["View Full Size"] = "Ver a tamaño completo"; -$a->strings["Tags: "] = "Etiquetas: "; -$a->strings["[Select tags to remove]"] = ""; -$a->strings["New album name"] = "Nuevo nombre del álbum"; -$a->strings["Caption"] = "Título"; -$a->strings["Add a Tag"] = "Añadir una etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "No rotar"; -$a->strings["Rotate CW (right)"] = "Girar a la derecha"; -$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; -$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)"; -$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -$a->strings["This is you"] = "Este eres tú"; -$a->strings["Comment"] = "Comentar"; -$a->strings["Map"] = "Mapa"; -$a->strings["View Album"] = "Ver Álbum"; -$a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; -$a->strings["{0} requested registration"] = "{0} solicitudes de registro"; -$a->strings["Poke/Prod"] = "Toque/Empujón"; -$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien"; -$a->strings["Recipient"] = "Receptor"; -$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor"; -$a->strings["Make this post private"] = "Hacer esta publicación privada"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Sólo los usuarios registrados pueden realizar una exploración."; -$a->strings["%s's timeline"] = ""; -$a->strings["%s's posts"] = ""; -$a->strings["%s's comments"] = ""; -$a->strings["Profile deleted."] = "Perfil eliminado."; -$a->strings["Profile-"] = "Perfil-"; -$a->strings["New profile created."] = "Nuevo perfil creado."; -$a->strings["Profile unavailable to clone."] = "Imposible duplicar el perfil."; +$a->strings["No installed applications."] = "Sin aplicaciones"; +$a->strings["Applications"] = "Aplicaciones"; $a->strings["Profile Name is required."] = "Se necesita un nombre de perfil."; -$a->strings["Marital Status"] = "Estado civil"; -$a->strings["Romantic Partner"] = "Pareja sentimental"; -$a->strings["Work/Employment"] = "Trabajo/estudios"; -$a->strings["Religion"] = "Religión"; -$a->strings["Political Views"] = "Preferencias políticas"; -$a->strings["Gender"] = "Género"; -$a->strings["Sexual Preference"] = "Orientación sexual"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "Página de inicio"; -$a->strings["Interests"] = "Intereses"; -$a->strings["Location"] = "Ubicación"; -$a->strings["Profile updated."] = "Perfil actualizado."; -$a->strings["Hide contacts and friends:"] = "Ocultar contactos y amigos"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar tu lista de contactos/amigos en este perfil?"; -$a->strings["Show more profile fields:"] = "Mostrar mas campos del perfil:"; +$a->strings["Profile couldn't be updated."] = ""; +$a->strings["Label:"] = ""; +$a->strings["Value:"] = ""; +$a->strings["Field Permissions"] = ""; +$a->strings["(click to open/close)"] = "(pulsa para abrir/cerrar)"; +$a->strings["Add a new profile field"] = ""; $a->strings["Profile Actions"] = "Acciones de perfil"; $a->strings["Edit Profile Details"] = "Editar detalles de tu perfil"; $a->strings["Change Profile Photo"] = "Cambiar imagen del Perfil"; -$a->strings["View this profile"] = "Ver este perfil"; -$a->strings["View all profiles"] = ""; -$a->strings["Edit visibility"] = "Editar visibilidad"; -$a->strings["Create a new profile using these settings"] = "¿Crear un nuevo perfil con esta configuración?"; -$a->strings["Clone this profile"] = "Clonar este perfil"; -$a->strings["Delete this profile"] = "Eliminar este perfil"; -$a->strings["Basic information"] = "Información básica"; $a->strings["Profile picture"] = "Imagen del perfil"; -$a->strings["Preferences"] = "Preferencias"; -$a->strings["Status information"] = "Información del estatus"; -$a->strings["Additional information"] = "Información addicional"; -$a->strings["Relation"] = "Relación"; +$a->strings["Location"] = "Ubicación"; $a->strings["Miscellaneous"] = "Varios"; -$a->strings["Your Gender:"] = "Género:"; -$a->strings[" Marital Status:"] = " Estado civil:"; -$a->strings["Sexual Preference:"] = "Preferencia sexual:"; -$a->strings["Example: fishing photography software"] = "Ejemplo: pesca fotografía software"; -$a->strings["Profile Name:"] = "Nombres del perfil:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet."; -$a->strings["Your Full Name:"] = "Tu nombre completo:"; -$a->strings["Title/Description:"] = "Título/Descrición:"; +$a->strings["Custom Profile Fields"] = ""; +$a->strings["Display name:"] = ""; $a->strings["Street Address:"] = "Dirección"; $a->strings["Locality/City:"] = "Localidad/Ciudad:"; $a->strings["Region/State:"] = "Región/Estado:"; $a->strings["Postal/Zip Code:"] = "Código postal:"; $a->strings["Country:"] = "País"; -$a->strings["Age: "] = "Edad: "; -$a->strings["Who: (if applicable)"] = "¿Quién? (si es aplicable)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ejemplos: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Desde [fecha]:"; -$a->strings["Tell us about yourself..."] = "Háblanos sobre ti..."; $a->strings["XMPP (Jabber) address:"] = "Dirección XMPP (Jabber):"; $a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "La dirección XMPP será propagada entre sus contactos para que puedan seguirle."; $a->strings["Homepage URL:"] = "Dirección de tu página:"; -$a->strings["Hometown:"] = "Ciudad de origen:"; -$a->strings["Political Views:"] = "Ideas políticas:"; -$a->strings["Religious Views:"] = "Creencias religiosas:"; $a->strings["Public Keywords:"] = "Palabras clave públicas:"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)"; $a->strings["Private Keywords:"] = "Palabras clave privadas:"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizadas para buscar perfiles, nunca se muestra a otros)"; -$a->strings["Likes:"] = "Me gusta:"; -$a->strings["Dislikes:"] = "No me gusta:"; -$a->strings["Musical interests"] = "Gustos musicales"; -$a->strings["Books, literature"] = "Libros, literatura"; -$a->strings["Television"] = "Televisión"; -$a->strings["Film/dance/culture/entertainment"] = "Películas/baile/cultura/entretenimiento"; -$a->strings["Hobbies/Interests"] = "Aficiones/Intereses"; -$a->strings["Love/romance"] = "Amor/Romance"; -$a->strings["Work/employment"] = "Trabajo/ocupación"; -$a->strings["School/education"] = "Escuela/estudios"; -$a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales"; -$a->strings["Profile Image"] = "Imagen del Perfil"; -$a->strings["visible to everybody"] = "Visible para todos"; -$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles"; -$a->strings["Change profile photo"] = "Cambiar foto del perfil"; -$a->strings["Create New Profile"] = "Crear nuevo perfil"; -$a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla."; +$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = ""; $a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente."; $a->strings["Unable to process image"] = "Imposible procesar la imagen"; -$a->strings["Upload File:"] = "Subir archivo:"; -$a->strings["Select a profile:"] = "Elige un perfil:"; +$a->strings["Photo not found."] = ""; +$a->strings["Profile picture successfully updated."] = ""; +$a->strings["Crop Image"] = "Recortar imagen"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla."; +$a->strings["Use Image As Is"] = ""; +$a->strings["Missing uploaded image."] = ""; +$a->strings["Profile Picture Settings"] = ""; +$a->strings["Current Profile Picture"] = ""; +$a->strings["Upload Profile Picture"] = ""; +$a->strings["Upload Picture:"] = ""; $a->strings["or"] = "o"; $a->strings["skip this step"] = "saltar este paso"; $a->strings["select a photo from your photo albums"] = "elige una foto de tus álbumes"; -$a->strings["Crop Image"] = "Recortar imagen"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla."; -$a->strings["Done Editing"] = "Editado"; -$a->strings["Image uploaded successfully."] = "Imagen subida con éxito."; -$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -$a->strings["Visible To"] = "Visible para"; -$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio."; -$a->strings["Registration successful."] = "Registro exitoso."; -$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; -$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; -$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; -$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; -$a->strings["Note for the admin"] = "Nota para el administrador"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"; -$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; -$a->strings["Your invitation code: "] = ""; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = ""; -$a->strings["New Password:"] = "Contraseña nueva:"; -$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; -$a->strings["Confirm:"] = "Confirmar:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; -$a->strings["Choose a nickname: "] = "Escoge un apodo: "; -$a->strings["Register"] = "Registrarse"; -$a->strings["Import"] = "Importar"; -$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; -$a->strings["Note: This node explicitly contains adult content"] = ""; -$a->strings["Account approved."] = "Cuenta aprobada."; -$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; -$a->strings["Please login."] = "Por favor accede."; -$a->strings["User deleted their account"] = ""; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = ""; -$a->strings["The user id is %d"] = ""; -$a->strings["Remove My Account"] = "Eliminar mi cuenta"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; -$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; -$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus"; -$a->strings["Error"] = "error"; -$a->strings["Only logged in users are permitted to perform a search."] = "Solo usuarios activos tienen permiso para ejecutar búsquedas."; -$a->strings["Too Many Requests"] = "Demasiadas consultas"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Se permite solo una búsqueda por minuto para usuarios no identificados."; -$a->strings["Search"] = "Buscar"; -$a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s"; -$a->strings["Results for: %s"] = "Resultados para: %s"; -$a->strings["Account"] = "Cuenta"; -$a->strings["Profiles"] = "Perfiles"; -$a->strings["Display"] = "Interfaz del usuario"; -$a->strings["Social Networks"] = "Redes sociales"; -$a->strings["Delegations"] = "Delegaciones"; -$a->strings["Connected apps"] = "Aplicaciones conectadas"; -$a->strings["Export personal data"] = "Exportación de datos personales"; -$a->strings["Remove account"] = "Eliminar cuenta"; -$a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; -$a->strings["Update"] = "Actualizar"; -$a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; -$a->strings["Email settings updated."] = "Configuración de correo actualizada."; -$a->strings["Features updated"] = "Actualizaciones"; -$a->strings["Relocate message has been send to your contacts"] = "Mensaje de reubicación ha sido enviado a sus contactos."; -$a->strings["Passwords do not match."] = ""; -$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; -$a->strings["Password changed."] = "Contraseña modificada."; -$a->strings["Password unchanged."] = ""; -$a->strings[" Please use a shorter name."] = " Usa un nombre más corto."; -$a->strings[" Name too short."] = " Nombre demasiado corto."; +$a->strings["Delegation successfully granted."] = ""; +$a->strings["Parent user not found, unavailable or password doesn't match."] = ""; +$a->strings["Delegation successfully revoked."] = ""; +$a->strings["Delegated administrators can view but not change delegation permissions."] = ""; +$a->strings["Delegate user not found."] = ""; +$a->strings["No parent user"] = ""; +$a->strings["Parent User"] = ""; +$a->strings["Additional Accounts"] = ""; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = ""; +$a->strings["Register an additional account"] = ""; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; +$a->strings["Delegates"] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente."; +$a->strings["Existing Page Delegates"] = "Delegados actuales de la página"; +$a->strings["Potential Delegates"] = "Delegados potenciales"; +$a->strings["Add"] = "Añadir"; +$a->strings["No entries."] = "Sin entradas."; +$a->strings["Two-factor authentication successfully disabled."] = ""; $a->strings["Wrong Password"] = "Contraseña incorrecta"; -$a->strings["Invalid email."] = ""; -$a->strings["Cannot change to that email."] = ""; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad."; -$a->strings["Settings updated."] = "Configuración actualizada."; -$a->strings["Add application"] = "Agregar aplicación"; -$a->strings["Consumer Key"] = "Clave del consumidor"; -$a->strings["Consumer Secret"] = "Secreto del consumidor"; -$a->strings["Redirect"] = "Redirigir"; -$a->strings["Icon url"] = "Dirección del ícono"; -$a->strings["You can't edit this application."] = "No puedes editar esta aplicación."; -$a->strings["Connected Apps"] = "Aplicaciones conectadas"; -$a->strings["Edit"] = "Editar"; -$a->strings["Client key starts with"] = "Clave de cliente comienza por"; -$a->strings["No name"] = "Sin nombre"; -$a->strings["Remove authorization"] = "Suprimir la autorización"; -$a->strings["No Addon settings configured"] = ""; -$a->strings["Addon Settings"] = ""; -$a->strings["Additional Features"] = "Características adicionales"; -$a->strings["Diaspora"] = "Diaspora*"; -$a->strings["enabled"] = "habilitado"; -$a->strings["disabled"] = "deshabilitado"; -$a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado de conexión con %s está %s"; -$a->strings["GNU Social (OStatus)"] = "GNUsocial (OStatus)"; -$a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; -$a->strings["General Social Media Settings"] = "Configuración general de social media "; -$a->strings["Disable Content Warning"] = ""; -$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = ""; -$a->strings["Disable intelligent shortening"] = "Deshabilitar recorte inteligente de URL"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica."; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario."; -$a->strings["Default group for OStatus contacts"] = "Grupo por defecto para contactos OStatus"; -$a->strings["Your legacy GNU Social account"] = "Tu cuenta GNU social conectada"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. "; -$a->strings["Repair OStatus subscriptions"] = "Reparar subscripciones de OStatus"; -$a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; -$a->strings["Last successful email check:"] = "Última comprobación del correo con éxito:"; -$a->strings["IMAP server name:"] = "Nombre del servidor IMAP:"; -$a->strings["IMAP port:"] = "Puerto IMAP:"; -$a->strings["Security:"] = "Seguridad:"; -$a->strings["None"] = "Ninguna"; -$a->strings["Email login name:"] = "Nombre de usuario:"; -$a->strings["Email password:"] = "Contraseña:"; -$a->strings["Reply-to address:"] = "Dirección de respuesta:"; -$a->strings["Send public posts to all email contacts:"] = "Enviar publicaciones públicas a todos los contactos de correo:"; -$a->strings["Action after import:"] = "Acción después de importar:"; -$a->strings["Mark as seen"] = "Marcar como leído"; -$a->strings["Move to folder"] = "Mover a un directorio"; -$a->strings["Move to folder:"] = "Mover al directorio:"; +$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = ""; +$a->strings["Authenticator app"] = ""; +$a->strings["Configured"] = ""; +$a->strings["Not Configured"] = ""; +$a->strings["

You haven't finished configuring your authenticator app.

"] = ""; +$a->strings["

Your authenticator app is correctly configured.

"] = ""; +$a->strings["Recovery codes"] = ""; +$a->strings["Remaining valid codes"] = ""; +$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = ""; +$a->strings["App-specific passwords"] = ""; +$a->strings["Generated app-specific passwords"] = ""; +$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = ""; +$a->strings["Current password:"] = ""; +$a->strings["You need to provide your current password to change two-factor authentication settings."] = ""; +$a->strings["Enable two-factor authentication"] = ""; +$a->strings["Disable two-factor authentication"] = ""; +$a->strings["Show recovery codes"] = ""; +$a->strings["Manage app-specific passwords"] = ""; +$a->strings["Finish app configuration"] = ""; +$a->strings["Please enter your password to access this page."] = ""; +$a->strings["Two-factor authentication successfully activated."] = ""; +$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = ""; +$a->strings["Two-factor code verification"] = ""; +$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = ""; +$a->strings["

Or you can open the following URL in your mobile devicde:

%s

"] = ""; +$a->strings["Verify code and enable two-factor authentication"] = ""; +$a->strings["New recovery codes successfully generated."] = ""; +$a->strings["Two-factor recovery codes"] = ""; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = ""; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = ""; +$a->strings["Generate new recovery codes"] = ""; +$a->strings["Next: Verification"] = ""; +$a->strings["App-specific password generation failed: The description is empty."] = ""; +$a->strings["App-specific password generation failed: This description already exists."] = ""; +$a->strings["New app-specific password generated."] = ""; +$a->strings["App-specific passwords successfully revoked."] = ""; +$a->strings["App-specific password successfully revoked."] = ""; +$a->strings["Two-factor app-specific passwords"] = ""; +$a->strings["

App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.

"] = ""; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = ""; +$a->strings["Description"] = ""; +$a->strings["Last Used"] = ""; +$a->strings["Revoke"] = ""; +$a->strings["Revoke All"] = ""; +$a->strings["When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."] = ""; +$a->strings["Generate new app-specific password"] = ""; +$a->strings["Friendiqa on my Fairphone 2..."] = ""; +$a->strings["Generate"] = ""; +$a->strings["The theme you chose isn't available."] = ""; $a->strings["%s - (Unsupported)"] = ""; -$a->strings["%s - (Experimental)"] = ""; -$a->strings["Sunday"] = "Domingo"; -$a->strings["Monday"] = "Lunes"; $a->strings["Display Settings"] = "Configuración Tema/Visualización"; -$a->strings["Display Theme:"] = "Utilizar tema:"; -$a->strings["Mobile Theme:"] = "Tema móvil:"; -$a->strings["Suppress warning of insecure networks"] = "Suprimir el aviso de redes inseguras"; -$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas."; -$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 segundos. Ingrese -1 para deshabilitar."; -$a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:"; -$a->strings["Maximum of 100 items"] = "Máximo 100 elementos"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Cantidad de objetos a visualizar cuando se usa un movil"; -$a->strings["Don't show emoticons"] = "No mostrar emoticones"; -$a->strings["Calendar"] = "Calendario"; -$a->strings["Beginning of week:"] = "Principio de la semana:"; -$a->strings["Don't show notices"] = "No mostrara avisos"; -$a->strings["Infinite scroll"] = "pagina infinita (sroll)"; -$a->strings["Automatic updates only at the top of the network page"] = "Actualizaciones automaticas solo estando al principio de la pagina"; -$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Cuando está deshabilitada, la página de red se actualiza constantemente, lo que podría ser confuso al leer."; -$a->strings["Bandwidth Saver Mode"] = ""; -$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas."; -$a->strings["Smart Threading"] = ""; -$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = ""; $a->strings["General Theme Settings"] = "Ajustes generales de tema"; $a->strings["Custom Theme Settings"] = "Ajustes personalizados de tema"; $a->strings["Content Settings"] = "Ajustes de contenido"; -$a->strings["Theme settings"] = "Configuración del Tema"; -$a->strings["Unable to find your profile. Please contact your admin."] = ""; -$a->strings["Account Types"] = "Tipos de cuenta"; -$a->strings["Personal Page Subtypes"] = "Subtipos de página personal"; -$a->strings["Community Forum Subtypes"] = "Subtipos de foro de comunidad"; -$a->strings["Account for a personal profile."] = "Cuenta para un perfil personal."; -$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Cuenta para una organización que aprueba automáticamente las solicitudes de contacto como «Seguidores»."; -$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Cuenta para un reflector de noticias que aprueba automáticamente las solicitudes de contacto como «Seguidores»."; -$a->strings["Account for community discussions."] = "Cuenta para discusiones de la comunidad."; -$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Cuenta para un perfil personal regular que requiere aprobación manual de «Amigos» y «Seguidores»."; -$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»."; -$a->strings["Automatically approves all contact requests."] = "Aprueba automáticamente todas las solicitudes de contacto."; -$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Cuenta para un perfil popular que aprueba automáticamente las solicitudes de contacto como «Friends»."; -$a->strings["Private Forum [Experimental]"] = "Foro privado [Experimental]"; -$a->strings["Requires manual approval of contact requests."] = "Requiere aprobación manual de solicitudes de contacto."; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; -$a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"; -$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = ""; -$a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; -$a->strings["Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public."] = ""; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; -$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = ""; -$a->strings["Hide your profile details from anonymous viewers?"] = ""; -$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "¿Permites que tus amigos publiquen en tu página de perfil?"; -$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = ""; -$a->strings["Allow friends to tag your posts?"] = "¿Permites a los amigos etiquetar tus publicaciones?"; -$a->strings["Your contacts can add additional tags to your posts."] = ""; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?"; -$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = ""; -$a->strings["Permit unknown people to send you private mail?"] = "¿Permites que desconocidos te manden correos privados?"; -$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = ""; -$a->strings["Profile is not published."] = "El perfil no está publicado."; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Su dirección de identidad es '%s' o '%s'."; -$a->strings["Automatically expire posts after this many days:"] = "Las publicaciones expirarán automáticamente después de estos días:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; -$a->strings["Advanced expiration settings"] = "Configuración avanzada de expiración"; -$a->strings["Advanced Expiration"] = "Expiración avanzada"; -$a->strings["Expire posts:"] = "¿Expiran las publicaciones?"; -$a->strings["Expire personal notes:"] = "¿Expiran las notas personales?"; -$a->strings["Expire starred posts:"] = "¿Expiran los favoritos?"; -$a->strings["Expire photos:"] = "¿Expiran las fotografías?"; -$a->strings["Only expire posts by others:"] = "Solo expiran los mensajes de los demás:"; -$a->strings["Account Settings"] = "Configuración de la cuenta"; -$a->strings["Password Settings"] = "Configuración de la contraseña"; -$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = ""; -$a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; -$a->strings["Current Password:"] = "Contraseña actual:"; -$a->strings["Your current password to confirm the changes"] = "Su contraseña actual para confirmar los cambios."; -$a->strings["Password:"] = "Contraseña:"; -$a->strings["Basic Settings"] = "Configuración básica"; -$a->strings["Full Name:"] = "Nombre completo:"; -$a->strings["Email Address:"] = "Dirección de correo:"; -$a->strings["Your Timezone:"] = "Zona horaria:"; -$a->strings["Your Language:"] = "Tu idioma:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo."; -$a->strings["Default Post Location:"] = "Localización predeterminada:"; -$a->strings["Use Browser Location:"] = "Usar localización del navegador:"; -$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -$a->strings["Maximum Friend Requests/Day:"] = "Máximo número de peticiones de amistad por día:"; -$a->strings["(to prevent spam abuse)"] = "(para prevenir el abuso de spam)"; -$a->strings["Default Post Permissions"] = "Permisos por defecto para las publicaciones"; -$a->strings["(click to open/close)"] = "(pulsa para abrir/cerrar)"; -$a->strings["Default Private Post"] = "Publicación Privada por defecto"; -$a->strings["Default Public Post"] = "Publicación Pública por defecto"; -$a->strings["Default Permissions for New Posts"] = "Permisos por defecto para nuevas publicaciones"; -$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensajes diarios para desconocidos:"; -$a->strings["Notification Settings"] = "Configuración de notificaciones"; -$a->strings["Send a notification email when:"] = "Enviar notificación por correo cuando:"; -$a->strings["You receive an introduction"] = "Recibas una presentación"; -$a->strings["Your introductions are confirmed"] = "Tu presentación sea confirmada"; -$a->strings["Someone writes on your profile wall"] = "Alguien escriba en el muro de mi perfil"; -$a->strings["Someone writes a followup comment"] = "Algien escriba en un comentario que sigo"; -$a->strings["You receive a private message"] = "Recibas un mensaje privado"; -$a->strings["You receive a friend suggestion"] = "Recibas una sugerencia de amistad"; -$a->strings["You are tagged in a post"] = "Seas etiquetado en una publicación"; -$a->strings["You are poked/prodded/etc. in a post"] = "Te han tocado/empujado/etc. en una publicación"; -$a->strings["Activate desktop notifications"] = "Activar notificaciones en pantalla."; -$a->strings["Show desktop popup on new notifications"] = "Mostrar notificaciones emergentes en caso de nuevos eventos."; -$a->strings["Text-only notification emails"] = "Notificaciones e-mail de solo texto"; -$a->strings["Send text only notification emails, without the html part"] = "Enviar las notificaciones por correo con formato de solo texto sin html."; -$a->strings["Show detailled notifications"] = "Mostrar notificaciones detalladas"; -$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = ""; -$a->strings["Advanced Account/Page Type Settings"] = "Configuración avanzada de tipo de Cuenta/Página"; -$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta para situaciones especiales"; -$a->strings["Relocate"] = "Relocalizar"; -$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."] = "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"; -$a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s"; -$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Friend Suggestions"] = "Sugerencias de amigos"; -$a->strings["Tag(s) removed"] = ""; -$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; -$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Display Theme:"] = "Utilizar tema:"; +$a->strings["Mobile Theme:"] = "Tema móvil:"; +$a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:"; +$a->strings["Maximum of 100 items"] = "Máximo 100 elementos"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Cantidad de objetos a visualizar cuando se usa un movil"; +$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 segundos. Ingrese -1 para deshabilitar."; +$a->strings["Automatic updates only at the top of the post stream pages"] = ""; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = ""; +$a->strings["Don't show emoticons"] = "No mostrar emoticones"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = ""; +$a->strings["Infinite scroll"] = "pagina infinita (sroll)"; +$a->strings["Automatic fetch new items when reaching the page end."] = ""; +$a->strings["Disable Smart Threading"] = ""; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = ""; +$a->strings["Hide the Dislike feature"] = ""; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = ""; +$a->strings["Beginning of week:"] = "Principio de la semana:"; $a->strings["Export account"] = "Exportar cuenta"; $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 la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor."; $a->strings["Export all"] = "Exportar todo"; -$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 la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)"; -$a->strings["User imports on closed servers can only be done by an administrator."] = ""; -$a->strings["Move account"] = "Mover cuenta"; -$a->strings["You can import an account from another Friendica server."] = "Puedes importar una cuenta desde otro servidor de 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."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*"; -$a->strings["Account file"] = "Archivo de la cuenta"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; -$a->strings["You aren't following this contact."] = ""; -$a->strings["Unfollowing is currently not supported by your network."] = "Dejar de Seguir no es compatible con su red actualmente."; -$a->strings["Contact unfollowed"] = "Contacto no seguido"; -$a->strings["Disconnect/Unfollow"] = "Desconectar/Dejar de seguir"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; -$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?"; -$a->strings["Delete Video"] = "Borrar vídeo"; -$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; -$a->strings["View Video"] = "Ver vídeo"; -$a->strings["Recent Videos"] = "Vídeos recientes"; -$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; -$a->strings["No contacts."] = "Ningún contacto."; -$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; -$a->strings["Contacts"] = "Contactos"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; -$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; -$a->strings["No recipient."] = "Sin receptor."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; -$a->strings["Invalid request."] = "Consulta invalida"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; -$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; -$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; -$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; -$a->strings["Wall Photos"] = "Foto del Muro"; -$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; -$a->strings["show fewer"] = "ver menos"; -$a->strings["toggle mobile"] = "Cambiar a versión móvil"; -$a->strings["No system theme config value set."] = ""; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; -$a->strings["Frequently"] = ""; -$a->strings["Hourly"] = ""; -$a->strings["Twice daily"] = ""; -$a->strings["Daily"] = ""; -$a->strings["Weekly"] = ""; -$a->strings["Monthly"] = ""; -$a->strings["DFRN"] = ""; -$a->strings["OStatus"] = ""; -$a->strings["RSS/Atom"] = ""; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = ""; -$a->strings["XMPP/IM"] = ""; -$a->strings["MySpace"] = ""; -$a->strings["Google+"] = ""; -$a->strings["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["GNU Social Connector"] = ""; -$a->strings["ActivityPub"] = ""; -$a->strings["pnut"] = ""; -$a->strings["Male"] = ""; -$a->strings["Female"] = ""; -$a->strings["Currently Male"] = ""; -$a->strings["Currently Female"] = ""; -$a->strings["Mostly Male"] = ""; -$a->strings["Mostly Female"] = ""; -$a->strings["Transgender"] = ""; -$a->strings["Intersex"] = ""; -$a->strings["Transsexual"] = ""; -$a->strings["Hermaphrodite"] = ""; -$a->strings["Neuter"] = ""; -$a->strings["Non-specific"] = "Sin especificar"; -$a->strings["Other"] = "Otro"; -$a->strings["Males"] = "Hombres"; -$a->strings["Females"] = "Mujeres"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbiana"; -$a->strings["No Preference"] = "Sin preferencias"; -$a->strings["Bisexual"] = "Bisexual"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Célibe"; -$a->strings["Virgin"] = "Virgen"; -$a->strings["Deviant"] = "Desviado"; -$a->strings["Fetish"] = "Fetichista"; -$a->strings["Oodles"] = "Orgiástico"; -$a->strings["Nonsexual"] = "Asexual"; -$a->strings["Single"] = "Soltero"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponible"; -$a->strings["Unavailable"] = "No disponible"; -$a->strings["Has crush"] = "Enamorado"; -$a->strings["Infatuated"] = "Loco/a por alguien"; -$a->strings["Dating"] = "De citas"; -$a->strings["Unfaithful"] = "Infiel"; -$a->strings["Sex Addict"] = "Adicto al sexo"; -$a->strings["Friends"] = "Amigos"; -$a->strings["Friends/Benefits"] = "Amigos con beneficios"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Comprometido/a"; -$a->strings["Married"] = "Casado/a"; -$a->strings["Imaginarily married"] = "Casado imaginario"; -$a->strings["Partners"] = "Socios"; -$a->strings["Cohabiting"] = "Cohabitando"; -$a->strings["Common law"] = "Pareja de hecho"; -$a->strings["Happy"] = "Feliz"; -$a->strings["Not looking"] = "No busca relación"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Traicionado/a"; -$a->strings["Separated"] = "Separado/a"; -$a->strings["Unstable"] = "Inestable"; -$a->strings["Divorced"] = "Divorciado/a"; -$a->strings["Imaginarily divorced"] = "Divorciado imaginario"; -$a->strings["Widowed"] = "Viudo/a"; -$a->strings["Uncertain"] = "Incierto"; -$a->strings["It's complicated"] = "Es complicado"; -$a->strings["Don't care"] = "No te importa"; -$a->strings["Ask me"] = "Pregúntame"; -$a->strings["General Features"] = "Opciones generales"; -$a->strings["Multiple Profiles"] = "Perfiles multiples"; -$a->strings["Ability to create multiple profiles"] = "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica."; -$a->strings["Photo Location"] = "Localización foto"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa."; -$a->strings["Export Public Calendar"] = "Exportar Calendario Público"; -$a->strings["Ability for visitors to download the public calendar"] = "Posibilidad de los visitantes de descargar el calendario público"; -$a->strings["Post Composition Features"] = "Opciones de edición de publicaciones."; -$a->strings["Auto-mention Forums"] = "Auto-mencionar foros"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."; -$a->strings["Network Sidebar"] = ""; -$a->strings["Ability to select posts by date ranges"] = "Habilidad de seleccionar publicaciones por fecha"; -$a->strings["Protocol Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected protocols"] = ""; -$a->strings["Network Tabs"] = "Pestañas de redes"; -$a->strings["Network New Tab"] = "Pestaña nuevo en la red"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)"; -$a->strings["Network Shared Links Tab"] = "Pestaña publicaciones con enlaces"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Habilitar para visualizar solo publicaciones que contienen enlaces"; -$a->strings["Post/Comment Tools"] = "Herramienta de publicaciones/respuestas"; -$a->strings["Post Categories"] = "Categorías de publicaciones"; -$a->strings["Add categories to your posts"] = "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."; -$a->strings["Advanced Profile Settings"] = "Ajustes avanzados del perfil"; -$a->strings["List Forums"] = "Listar foros"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."; -$a->strings["Tag Cloud"] = ""; -$a->strings["Provide a personal tag cloud on your profile page"] = ""; -$a->strings["Display Membership Date"] = ""; -$a->strings["Display membership date in profile"] = ""; -$a->strings["Forums"] = "Foros"; -$a->strings["External link to forum"] = "Enlace externo al foro"; -$a->strings["Nothing new here"] = "Nada nuevo por aquí"; -$a->strings["Clear notifications"] = "Limpiar notificaciones"; -$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido"; -$a->strings["Logout"] = "Salir"; -$a->strings["End this session"] = "Cerrar la sesión"; -$a->strings["Status"] = "Estado"; -$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; -$a->strings["Your profile page"] = "Tu página de perfil"; -$a->strings["Your photos"] = "Tus fotos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Your videos"] = "Tus videos"; -$a->strings["Your events"] = "Tus eventos"; -$a->strings["Personal notes"] = "Notas personales"; -$a->strings["Your personal notes"] = "Tus notas personales"; -$a->strings["Sign in"] = "Date de alta"; -$a->strings["Home"] = "Inicio"; -$a->strings["Home Page"] = "Página de inicio"; -$a->strings["Create an account"] = "Crea una cuenta"; -$a->strings["Help and documentation"] = "Ayuda y documentación"; -$a->strings["Apps"] = "Aplicaciones"; -$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; -$a->strings["Search site content"] = " Busca contenido en la página"; -$a->strings["Full Text"] = "Texto completo"; -$a->strings["Tags"] = "Tags"; -$a->strings["Community"] = "Comunidad"; -$a->strings["Conversations on this and other servers"] = ""; -$a->strings["Events and Calendar"] = "Eventos y Calendario"; -$a->strings["Directory"] = "Directorio"; -$a->strings["People directory"] = "Directorio de usuarios"; -$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; -$a->strings["Terms of Service of this Friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; -$a->strings["Network Reset"] = "Reseteo de la red"; -$a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros"; -$a->strings["Introductions"] = "Presentaciones"; -$a->strings["Friend Requests"] = "Solicitudes de amistad"; -$a->strings["See all notifications"] = "Ver todas las notificaciones"; -$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; -$a->strings["Private mail"] = "Correo privado"; -$a->strings["Inbox"] = "Entrada"; -$a->strings["Outbox"] = "Enviados"; -$a->strings["Manage"] = "Administrar"; -$a->strings["Manage other pages"] = "Administrar otras páginas"; -$a->strings["Account settings"] = "Configuración de tu cuenta"; -$a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles"; -$a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; -$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; -$a->strings["Navigation"] = "Navegación"; -$a->strings["Site map"] = "Mapa del sitio"; -$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; -$a->strings["Embedded content"] = "Contenido integrado"; -$a->strings["newer"] = "más nuevo"; -$a->strings["older"] = "más antiguo"; -$a->strings["prev"] = "ant."; -$a->strings["last"] = "última"; -$a->strings["view full size"] = "Ver a tamaño completo"; -$a->strings["Image/photo"] = "Imagen/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 escribió:"; -$a->strings["Encrypted content"] = "Contenido cifrado"; -$a->strings["Invalid source protocol"] = "Protocolo de fuente inválido"; -$a->strings["Invalid link protocol"] = "Protocolo de enlace inválido"; -$a->strings["Loading more entries..."] = "Cargar mas entradas .."; -$a->strings["The end"] = "El fin"; -$a->strings["No contacts"] = "Sin contactos"; -$a->strings["%d Contact"] = [ - 0 => "%d Contacto", - 1 => "%d Contactos", -]; -$a->strings["View Contacts"] = "Ver contactos"; -$a->strings["Follow"] = ""; -$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; -$a->strings["Export"] = "Exportar"; -$a->strings["Export calendar as ical"] = "Exportar calendario como ical"; -$a->strings["Export calendar as csv"] = "Exportar calendario como csv"; -$a->strings["Add New Contact"] = "Añadir nuevo contacto"; -$a->strings["Enter address or web location"] = "Escribe la dirección o página web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel"; -$a->strings["%d invitation available"] = [ - 0 => "%d invitación disponible", - 1 => "%d invitaviones disponibles", -]; -$a->strings["Find People"] = "Buscar personas"; -$a->strings["Enter name or interest"] = "Introduzce nombre o intereses"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: Robert Morgenstein, Pesca"; -$a->strings["Similar Interests"] = "Intereses similares"; -$a->strings["Random Profile"] = "Perfil aleatorio"; -$a->strings["Invite Friends"] = "Invitar amigos"; -$a->strings["Local Directory"] = "Directorio local"; -$a->strings["Protocols"] = ""; -$a->strings["All Protocols"] = ""; -$a->strings["Saved Folders"] = "Directorios guardados"; -$a->strings["Everything"] = "Todo"; -$a->strings["Categories"] = "Categorías"; -$a->strings["%d contact in common"] = [ - 0 => "%d contacto en común", - 1 => "%d contactos en común", -]; -$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; -$a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado."; -$a->strings["Visible to everybody"] = "Visible para cualquiera"; -$a->strings["show"] = "mostrar"; -$a->strings["don't show"] = "no mostrar"; -$a->strings["Close"] = "Cerrado"; -$a->strings["Welcome "] = "Bienvenido "; -$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; -$a->strings["Welcome back "] = "Bienvenido de nuevo "; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = ""; -$a->strings["The contact entries have been archived"] = ""; -$a->strings["Enter new password: "] = ""; -$a->strings["Post update version number has been set to %s."] = ""; -$a->strings["Check for pending update actions."] = ""; -$a->strings["Done."] = ""; -$a->strings["Execute pending post updates."] = ""; -$a->strings["All pending post updates are done."] = ""; -$a->strings["The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulta el archivo \"INSTALL.txt\"."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = ""; -$a->strings["PHP executable path"] = "Dirección al ejecutable PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."; -$a->strings["Command line PHP"] = "Línea de comandos PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)"; -$a->strings["Found PHP version: "] = "Versión PHP encontrada:"; -$a->strings["PHP cli binary"] = "PHP cli binario"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."; -$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generar claves de encriptación"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado."; -$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite de Apache"; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: Módulo PDO o MySQLi PHP requerido pero no instalado."; -$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: El dispositivo MySQL para PDO no está instalado."; -$a->strings["PDO or MySQLi PHP module"] = "Módulo PDO o MySQLi PHP"; -$a->strings["Error, XML PHP module required but not installed."] = "Error, módulo XML PHP requerido pero no instalado."; -$a->strings["XML PHP module"] = "Módulo XML PHP"; -$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo de PHP libcurl es necesario, pero no está instalado."; -$a->strings["GD graphics PHP module"] = "Módulo PHP gráficos GD"; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado."; -$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero no está instalado."; -$a->strings["mb_string PHP module"] = "Módulo PHP mb_string"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado."; -$a->strings["iconv PHP module"] = ""; -$a->strings["Error: iconv PHP module required but not installed."] = "Error: módulo iconv PHP requerido pero no instalado."; -$a->strings["POSIX PHP module"] = ""; -$a->strings["Error: POSIX PHP module required but not installed."] = ""; -$a->strings["JSON PHP module"] = ""; -$a->strings["Error: JSON PHP module required but not installed."] = ""; -$a->strings["The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."] = ""; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."] = ""; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones."; -$a->strings["config/local.config.php is writable"] = ""; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar."; -$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 poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta."; -$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 medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene."; -$a->strings["view/smarty3 is writable"] = "Se puede escribir en /view/smarty3"; -$a->strings["Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess."] = ""; -$a->strings["Error message from Curl when fetching"] = ""; -$a->strings["Url rewrite is working"] = "Reescribiendo la dirección..."; -$a->strings["ImageMagick PHP extension is not installed"] = "No está instalada la extensión ImageMagick PHP"; -$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta GIF"; -$a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos."; -$a->strings["Database already in use."] = "Base de datos ya se encuentra en uso"; -$a->strings["Tuesday"] = "Martes"; -$a->strings["Wednesday"] = "Miércoles"; -$a->strings["Thursday"] = "Jueves"; -$a->strings["Friday"] = "Viernes"; -$a->strings["Saturday"] = "Sábado"; -$a->strings["January"] = "Enero"; -$a->strings["February"] = "Febrero"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Abril"; -$a->strings["May"] = "Mayo"; -$a->strings["June"] = "Junio"; -$a->strings["July"] = "Julio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Septiembre"; -$a->strings["October"] = "Octubre"; -$a->strings["November"] = "Noviembre"; -$a->strings["December"] = "Diciembre"; -$a->strings["Mon"] = "Lun"; -$a->strings["Tue"] = "Mar"; -$a->strings["Wed"] = "Mie"; -$a->strings["Thu"] = "Jue"; -$a->strings["Fri"] = "Vie"; -$a->strings["Sat"] = "Sab"; -$a->strings["Sun"] = "Dom"; -$a->strings["Jan"] = "Ene"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Abr"; -$a->strings["Jul"] = "Jul"; -$a->strings["Aug"] = "Ago"; -$a->strings["Sep"] = "Sep"; -$a->strings["Oct"] = "Oct"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dec"; -$a->strings["poke"] = "tocar"; -$a->strings["poked"] = "tocó a"; -$a->strings["ping"] = "hacer \"ping\""; -$a->strings["pinged"] = "hizo \"ping\" a"; -$a->strings["prod"] = "empujar"; -$a->strings["prodded"] = "empujó a"; -$a->strings["slap"] = "abofetear"; -$a->strings["slapped"] = "abofeteó a"; -$a->strings["finger"] = "meter dedo"; -$a->strings["fingered"] = "le metió un dedo a"; -$a->strings["rebuff"] = "desairar"; -$a->strings["rebuffed"] = "desairó a"; -$a->strings["System"] = "Sistema"; -$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; -$a->strings["%s created a new post"] = "%s creó una nueva publicación"; -$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; -$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; -$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's"; -$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's"; -$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's"; -$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; -$a->strings["Friend Suggestion"] = "Propuestas de amistad"; -$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["New Follower"] = "Nuevo seguidor"; -$a->strings["Error 400 - Bad Request"] = ""; -$a->strings["Error 401 - Unauthorized"] = ""; -$a->strings["Error 403 - Forbidden"] = ""; -$a->strings["Error 404 - Not Found"] = ""; -$a->strings["Error 500 - Internal Server Error"] = ""; -$a->strings["Error 503 - Service Unavailable"] = ""; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = ""; -$a->strings["Authentication is required and has failed or has not yet been provided."] = ""; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = ""; -$a->strings["The requested resource could not be found but may be available in the future."] = ""; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = ""; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = ""; -$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = ""; -$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; -$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; -$a->strings["User creation error"] = "Error al crear la cuenta"; -$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; -$a->strings["%d contact not imported"] = [ - 0 => "%d contactos no encontrado", - 1 => "%d contactos no importado", -]; -$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; -$a->strings["There are no tables on MyISAM."] = "No hay tablas en MyISAM"; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d ocurrido durante la actualización de la base de datos:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Errores encontrados al realizar cambios en la base de datos: "; -$a->strings["%s: Database update"] = ""; -$a->strings["%s: updating %s table."] = "%s: actualizando %s tabla."; -$a->strings["Legacy module file not found: %s"] = ""; +$a->strings["Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["Export Contacts to CSV"] = ""; +$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = ""; +$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento"; +$a->strings["%s is now following %s."] = "%s sigue ahora a %s."; +$a->strings["following"] = "siguiendo"; +$a->strings["%s stopped following %s."] = "%s dejó de seguir a %s."; +$a->strings["stopped following"] = "dejó de seguir"; +$a->strings["Attachments:"] = "Archivos adjuntos:"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["thanks"] = ""; +$a->strings["Friendica Notification"] = "Notificación de Friendica"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; +$a->strings["never"] = "nunca"; +$a->strings["less than a second ago"] = "hace menos de un segundo"; +$a->strings["year"] = "año"; +$a->strings["years"] = "años"; +$a->strings["months"] = "meses"; +$a->strings["weeks"] = "semanas"; +$a->strings["days"] = "días"; +$a->strings["hour"] = "hora"; +$a->strings["hours"] = "horas"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutos"; +$a->strings["second"] = "segundo"; +$a->strings["seconds"] = "segundos"; +$a->strings["in %1\$d %2\$s"] = ""; +$a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +$a->strings["Database storage failed to update %s"] = ""; +$a->strings["Database storage failed to insert data"] = ""; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = ""; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = ""; +$a->strings["Storage base path"] = ""; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = ""; +$a->strings["Enter a valid existing folder"] = ""; +$a->strings["activity"] = "Actividad"; +$a->strings["post"] = "Publicación"; +$a->strings["Content warning: %s"] = ""; +$a->strings["bytes"] = "bytes"; +$a->strings["View on separate page"] = "Ver en pagina aparte"; +$a->strings["view on separate page"] = "ver en pagina aparte"; +$a->strings["link to source"] = "Enlace al original"; +$a->strings["[no subject]"] = "[sin asunto]"; +$a->strings["UnFollow"] = ""; $a->strings["Drop Contact"] = "Eliminar contacto"; $a->strings["Organisation"] = "Organización"; $a->strings["News"] = "Noticias"; @@ -1894,74 +2127,18 @@ $a->strings["Unable to retrieve contact information."] = "No ha sido posible rec $a->strings["Starts:"] = "Inicio:"; $a->strings["Finishes:"] = "Final:"; $a->strings["all-day"] = "todo el día"; -$a->strings["Jun"] = "Jun"; $a->strings["Sept"] = "Sept"; $a->strings["No events to display"] = "No hay eventos a mostrar"; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editar evento"; $a->strings["Duplicate event"] = "Duplicar evento"; $a->strings["Delete event"] = "Borrar evento"; -$a->strings["link to source"] = "Enlace al original"; $a->strings["D g:i A"] = "D g:i A"; $a->strings["g:i A"] = "g:i A"; $a->strings["Show map"] = "Mostrar mapa"; $a->strings["Hide map"] = "Ocultar mapa"; $a->strings["%s's birthday"] = "Cumpleaños de %s"; $a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s"; -$a->strings["Item filed"] = "Elemento archivado"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; -$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; -$a->strings["Everybody"] = "Todo el mundo"; -$a->strings["edit"] = "editar"; -$a->strings["Edit group"] = "Editar grupo"; -$a->strings["Create a new group"] = "Crear un nuevo grupo"; -$a->strings["Edit groups"] = "Editar grupo"; -$a->strings["activity"] = "Actividad"; -$a->strings["comment"] = [ - 0 => "", - 1 => "Comentario", -]; -$a->strings["post"] = "Publicación"; -$a->strings["Content warning: %s"] = ""; -$a->strings["bytes"] = "bytes"; -$a->strings["View on separate page"] = "Ver en pagina aparte"; -$a->strings["view on separate page"] = "ver en pagina aparte"; -$a->strings["[no subject]"] = "[sin asunto]"; -$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible."; -$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; -$a->strings["Edit profile"] = "Editar perfil"; -$a->strings["Atom feed"] = "Atom feed"; -$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[hoy]"; -$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; -$a->strings["[No description]"] = "[Sin descripción]"; -$a->strings["Event Reminders"] = "Recordatorios de eventos"; -$a->strings["Upcoming events the next 7 days:"] = ""; -$a->strings["Member since:"] = ""; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Fecha de nacimiento:"; -$a->strings["Age:"] = "Edad:"; -$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -$a->strings["Religion:"] = "Religión:"; -$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; -$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; -$a->strings["Musical interests:"] = "Intereses musicales:"; -$a->strings["Books, literature:"] = "Libros, literatura:"; -$a->strings["Television:"] = "Televisión:"; -$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; -$a->strings["Love/Romance:"] = "Amor/Romance:"; -$a->strings["Work/employment:"] = "Trabajo/ocupación:"; -$a->strings["School/education:"] = "Escuela/estudios:"; -$a->strings["Forums:"] = "Foros:"; -$a->strings["Profile Details"] = "Detalles del Perfil"; -$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; -$a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; $a->strings["Login failed"] = ""; $a->strings["Not enough information to authenticate"] = ""; $a->strings["Password can't be empty"] = ""; @@ -1972,8 +2149,6 @@ $a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas n $a->strings["An invitation is required."] = "Se necesita invitación."; $a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; $a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; -$a->strings["The error message was:"] = "El mensaje del error fue:"; $a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; $a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = ""; $a->strings["Username should be at least %s character."] = [ @@ -1993,236 +2168,160 @@ $a->strings["Your nickname can only contain a-z, 0-9 and _."] = ""; $a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; $a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; -$a->strings["default"] = "predeterminado"; $a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; $a->strings["An error occurred creating your self contact. Please try again."] = ""; +$a->strings["Friends"] = "Amigos"; $a->strings["An error occurred creating your default contact group. Please try again."] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Detalles de registro para %s"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = ""; $a->strings["Registration at %s"] = "Registro en %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = ""; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = ""; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["%d contact edited."] = [ - 0 => "%d contacto editado.", - 1 => "%d contacts edited.", +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; +$a->strings["Everybody"] = "Todo el mundo"; +$a->strings["edit"] = "editar"; +$a->strings["add"] = "añadir"; +$a->strings["Edit group"] = "Editar grupo"; +$a->strings["Create a new group"] = "Crear un nuevo grupo"; +$a->strings["Edit groups"] = "Editar grupo"; +$a->strings["Change profile photo"] = "Cambiar foto del perfil"; +$a->strings["Atom feed"] = "Atom feed"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hoy]"; +$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; +$a->strings["[No description]"] = "[Sin descripción]"; +$a->strings["Event Reminders"] = "Recordatorios de eventos"; +$a->strings["Upcoming events the next 7 days:"] = ""; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +$a->strings["Add New Contact"] = "Añadir nuevo contacto"; +$a->strings["Enter address or web location"] = "Escribe la dirección o página web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel"; +$a->strings["Connect"] = "Conectar"; +$a->strings["%d invitation available"] = [ + 0 => "%d invitación disponible", + 1 => "%d invitaviones disponibles", ]; -$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; -$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; -$a->strings["Contact updated."] = "Contacto actualizado."; -$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; -$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; -$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; -$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; -$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; -$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; -$a->strings["Drop contact"] = "Eliminar contacto"; -$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?"; -$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; -$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; -$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; -$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; -$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; -$a->strings["Never"] = "Nunca"; -$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; -$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; -$a->strings["Suggest friends"] = "Sugerir amigos"; -$a->strings["Network type: %s"] = "Tipo de red: %s"; -$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; -$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = ""; -$a->strings["Fetch information"] = "Recaudar informacion"; -$a->strings["Fetch keywords"] = ""; -$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; -$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; -$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; -$a->strings["Contact Settings"] = "Ajustes del contacto"; -$a->strings["Contact"] = "Contacto"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; -$a->strings["Their personal note"] = "Su nota personal"; -$a->strings["Edit contact notes"] = "Editar notas del contacto"; -$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; -$a->strings["Ignore contact"] = "Ignorar contacto"; -$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección"; -$a->strings["View conversations"] = "Ver conversaciones"; -$a->strings["Last update:"] = "Última actualización:"; -$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; -$a->strings["Update now"] = "Actualizar ahora"; -$a->strings["Unignore"] = "Quitar de Ignorados"; -$a->strings["Currently blocked"] = "Bloqueados"; -$a->strings["Currently ignored"] = "Ignorados"; -$a->strings["Currently archived"] = "Archivados"; -$a->strings["Awaiting connection acknowledge"] = ""; -$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; -$a->strings["Notification for new posts"] = "Notificacion de nuevos temas."; -$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; -$a->strings["Blacklisted keywords"] = "Lista negra de palabras"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; -$a->strings["Actions"] = "Acciones"; -$a->strings["Suggestions"] = "Sugerencias"; -$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; -$a->strings["Show all contacts"] = "Mostrar todos los contactos"; -$a->strings["Unblocked"] = "Desbloqueados"; -$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear"; -$a->strings["Blocked"] = "Bloqueados"; -$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; -$a->strings["Ignored"] = "Ignorados"; -$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; -$a->strings["Archived"] = "Archivados"; -$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; -$a->strings["Hidden"] = "Ocultos"; -$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; -$a->strings["Organize your contact groups"] = ""; -$a->strings["Search your contacts"] = "Buscar en tus contactos"; -$a->strings["Archive"] = "Archivo"; -$a->strings["Unarchive"] = "Sin archivar"; -$a->strings["Batch Actions"] = "Accones en lote"; -$a->strings["Conversations started by this contact"] = ""; -$a->strings["Posts and Comments"] = ""; -$a->strings["View all contacts"] = "Ver todos los contactos"; -$a->strings["View all common friends"] = "Ver todos los conocidos en común "; -$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; -$a->strings["Mutual Friendship"] = "Amistad recíproca"; -$a->strings["is a fan of yours"] = "es tu fan"; -$a->strings["you are a fan of"] = "eres fan de"; -$a->strings["Edit contact"] = "Modificar contacto"; -$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; -$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; -$a->strings["Toggle Archive status"] = "Cambiar archivados"; -$a->strings["Delete contact"] = "Eliminar contacto"; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["System check"] = "Verificación del sistema"; -$a->strings["Check again"] = "Compruebalo de nuevo"; -$a->strings["Database connection"] = "Conexión con la base de datos"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar."; -$a->strings["Database Server Name"] = "Nombre del servidor de la base de datos"; -$a->strings["Database Login Name"] = "Usuario de la base de datos"; -$a->strings["Database Login Password"] = "Contraseña de la base de datos"; -$a->strings["For security reasons the password must not be empty"] = "Por razones de seguridad la contraseña no debe estar vacía"; -$a->strings["Database Name"] = "Nombre de la base de datos"; -$a->strings["Site administrator email address"] = "Dirección de correo del administrador de la web"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web."; -$a->strings["Please select a default timezone for your website"] = "Por favor, selecciona la zona horaria predeterminada para tu web"; -$a->strings["Site settings"] = "Configuración de la página web"; -$a->strings["System Language:"] = "Sistema de idioma:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails."; -$a->strings["Your Friendica site database has been installed."] = "La base de datos de su sitio web de Friendica ha sido instalada."; -$a->strings["Installation finished"] = ""; -$a->strings["

What next

"] = "

¿Ahora qué?

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = ""; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; -$a->strings["Item Guid"] = ""; -$a->strings["Create a New Account"] = "Crear una nueva cuenta"; -$a->strings["Password: "] = "Contraseña: "; -$a->strings["Remember me"] = "Recordarme"; -$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; -$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; -$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; -$a->strings["terms of service"] = "Términos de uso"; -$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; -$a->strings["privacy policy"] = "Política de privacidad"; -$a->strings["Logged out."] = "Sesión finalizada"; -$a->strings["Bad Request."] = ""; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = ""; -$a->strings["Privacy Statement"] = ""; -$a->strings["This entry was edited"] = "Esta entrada fue editada"; -$a->strings["Delete locally"] = ""; -$a->strings["Delete globally"] = ""; -$a->strings["Remove locally"] = ""; -$a->strings["save to folder"] = "grabado en directorio"; -$a->strings["I will attend"] = "Voy a estar presente"; -$a->strings["I will not attend"] = "No voy a estar presente"; -$a->strings["I might attend"] = "Puede que voy a estar presente"; -$a->strings["ignore thread"] = "ignorar publicación"; -$a->strings["unignore thread"] = "revertir ignorar publicacion"; -$a->strings["toggle ignore status"] = "cambiar estatus de observación"; -$a->strings["add star"] = "Añadir estrella"; -$a->strings["remove star"] = "Quitar estrella"; -$a->strings["toggle star status"] = "Añadir a destacados"; -$a->strings["starred"] = "marcados con estrellas"; -$a->strings["add tag"] = "añadir etiqueta"; -$a->strings["like"] = "me gusta"; -$a->strings["dislike"] = "no me gusta"; -$a->strings["Share this"] = "Compartir esto"; -$a->strings["share"] = "compartir"; -$a->strings["to"] = "a"; -$a->strings["via"] = "vía"; -$a->strings["Wall-to-Wall"] = "Muro-A-Muro"; -$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; -$a->strings["%d comment"] = [ - 0 => "%d comentario", - 1 => "%d comentarios", +$a->strings["Everyone"] = ""; +$a->strings["Relationships"] = ""; +$a->strings["Protocols"] = ""; +$a->strings["All Protocols"] = ""; +$a->strings["Saved Folders"] = "Directorios guardados"; +$a->strings["Everything"] = "Todo"; +$a->strings["Categories"] = "Categorías"; +$a->strings["%d contact in common"] = [ + 0 => "%d contacto en común", + 1 => "%d contactos en común", ]; -$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; -$a->strings["Attachments:"] = "Archivos adjuntos:"; -$a->strings["%s is now following %s."] = "%s sigue ahora a %s."; -$a->strings["following"] = "siguiendo"; -$a->strings["%s stopped following %s."] = "%s dejó de seguir a %s."; -$a->strings["stopped following"] = "dejó de seguir"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "hace menos de un segundo"; -$a->strings["year"] = "año"; -$a->strings["years"] = "años"; -$a->strings["months"] = "meses"; -$a->strings["weeks"] = "semanas"; -$a->strings["days"] = "días"; -$a->strings["hour"] = "hora"; -$a->strings["hours"] = "horas"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minutos"; -$a->strings["second"] = "segundo"; -$a->strings["seconds"] = "segundos"; -$a->strings["in %1\$d %2\$s"] = ""; -$a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -$a->strings["(no subject)"] = "(sin asunto)"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = ""; -$a->strings["%s: Updating post-type."] = ""; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variaciones"; -$a->strings["Custom"] = ""; -$a->strings["Note"] = "Nota"; -$a->strings["Check image permissions if all users are allowed to see the image"] = ""; -$a->strings["Select color scheme"] = ""; -$a->strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; -$a->strings["Navigation bar icon color "] = "Color de icono de la barra de navegación"; -$a->strings["Link color"] = "Color de enlace"; -$a->strings["Set the background color"] = "Seleccionar el color de fondo"; -$a->strings["Content background opacity"] = ""; -$a->strings["Set the background image"] = "Seleccionar la imagen de fondo"; -$a->strings["Background image style"] = ""; -$a->strings["Login page background image"] = ""; -$a->strings["Login page background color"] = ""; -$a->strings["Leave background image and color empty for theme defaults"] = ""; -$a->strings["Top Banner"] = ""; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = ""; -$a->strings["Full screen"] = ""; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = ""; -$a->strings["Single row mosaic"] = ""; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = ""; -$a->strings["Mosaic"] = ""; -$a->strings["Repeat image to fill the screen."] = ""; -$a->strings["Guest"] = "Invitado"; -$a->strings["Visitor"] = "Visitante"; -$a->strings["Alignment"] = "Alineación"; -$a->strings["Left"] = "Izquierda"; -$a->strings["Center"] = "Centrado"; -$a->strings["Color scheme"] = "Esquema de color"; -$a->strings["Posts font size"] = "Tamaño de letra del titulo de las publicaciones"; -$a->strings["Textareas font size"] = "Tamaño de letra del área de texto"; -$a->strings["Comma separated list of helper forums"] = "Lista separada por comas de foros de ayuda."; -$a->strings["Set style"] = "Definir estilo"; -$a->strings["Community Pages"] = "Páginas de Comunidad"; -$a->strings["Community Profiles"] = "Perfiles de la Comunidad"; -$a->strings["Help or @NewHere ?"] = "¿Ayuda o @NuevoAquí?"; -$a->strings["Connect Services"] = "Servicios conectados"; -$a->strings["Find Friends"] = "Buscar amigos"; -$a->strings["Last users"] = "Últimos usuarios"; -$a->strings["Quick Start"] = "Inicio rápido"; +$a->strings["Archives"] = "Archivos"; +$a->strings["Frequently"] = ""; +$a->strings["Hourly"] = ""; +$a->strings["Twice daily"] = ""; +$a->strings["Daily"] = ""; +$a->strings["Weekly"] = ""; +$a->strings["Monthly"] = ""; +$a->strings["DFRN"] = ""; +$a->strings["OStatus"] = ""; +$a->strings["RSS/Atom"] = ""; +$a->strings["Zot!"] = ""; +$a->strings["LinkedIn"] = ""; +$a->strings["XMPP/IM"] = ""; +$a->strings["MySpace"] = ""; +$a->strings["Google+"] = ""; +$a->strings["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Discourse"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["GNU Social Connector"] = ""; +$a->strings["ActivityPub"] = ""; +$a->strings["pnut"] = ""; +$a->strings["%s (via %s)"] = ""; +$a->strings["General Features"] = "Opciones generales"; +$a->strings["Photo Location"] = "Localización foto"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa."; +$a->strings["Trending Tags"] = ""; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = ""; +$a->strings["Post Composition Features"] = "Opciones de edición de publicaciones."; +$a->strings["Auto-mention Forums"] = "Auto-mencionar foros"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."; +$a->strings["Explicit Mentions"] = ""; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = ""; +$a->strings["Post/Comment Tools"] = "Herramienta de publicaciones/respuestas"; +$a->strings["Post Categories"] = "Categorías de publicaciones"; +$a->strings["Add categories to your posts"] = "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."; +$a->strings["Advanced Profile Settings"] = "Ajustes avanzados del perfil"; +$a->strings["List Forums"] = "Listar foros"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."; +$a->strings["Tag Cloud"] = ""; +$a->strings["Provide a personal tag cloud on your profile page"] = ""; +$a->strings["Display Membership Date"] = ""; +$a->strings["Display membership date in profile"] = ""; +$a->strings["Nothing new here"] = "Nada nuevo por aquí"; +$a->strings["Clear notifications"] = "Limpiar notificaciones"; +$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido"; +$a->strings["End this session"] = "Cerrar la sesión"; +$a->strings["Sign in"] = "Date de alta"; +$a->strings["Personal notes"] = "Notas personales"; +$a->strings["Your personal notes"] = "Tus notas personales"; +$a->strings["Home"] = "Inicio"; +$a->strings["Home Page"] = "Página de inicio"; +$a->strings["Create an account"] = "Crea una cuenta"; +$a->strings["Help and documentation"] = "Ayuda y documentación"; +$a->strings["Apps"] = "Aplicaciones"; +$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; +$a->strings["Search site content"] = " Busca contenido en la página"; +$a->strings["Full Text"] = "Texto completo"; +$a->strings["Tags"] = "Tags"; +$a->strings["Community"] = "Comunidad"; +$a->strings["Conversations on this and other servers"] = ""; +$a->strings["Directory"] = "Directorio"; +$a->strings["People directory"] = "Directorio de usuarios"; +$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; +$a->strings["Terms of Service of this Friendica instance"] = ""; +$a->strings["Introductions"] = "Presentaciones"; +$a->strings["Friend Requests"] = "Solicitudes de amistad"; +$a->strings["See all notifications"] = "Ver todas las notificaciones"; +$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; +$a->strings["Inbox"] = "Entrada"; +$a->strings["Outbox"] = "Enviados"; +$a->strings["Accounts"] = ""; +$a->strings["Manage other pages"] = "Administrar otras páginas"; +$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; +$a->strings["Navigation"] = "Navegación"; +$a->strings["Site map"] = "Mapa del sitio"; +$a->strings["Remove term"] = "Eliminar término"; +$a->strings["Saved Searches"] = "Búsquedas guardadas"; +$a->strings["Export"] = "Exportar"; +$a->strings["Export calendar as ical"] = "Exportar calendario como ical"; +$a->strings["Export calendar as csv"] = "Exportar calendario como csv"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "", + 1 => "", +]; +$a->strings["More Trending Tags"] = ""; +$a->strings["No contacts"] = "Sin contactos"; +$a->strings["%d Contact"] = [ + 0 => "%d Contacto", + 1 => "%d Contactos", +]; +$a->strings["View Contacts"] = "Ver contactos"; +$a->strings["newer"] = "más nuevo"; +$a->strings["older"] = "más antiguo"; +$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; +$a->strings["Embedded content"] = "Contenido integrado"; +$a->strings["prev"] = "ant."; +$a->strings["last"] = "última"; +$a->strings["Loading more entries..."] = "Cargar mas entradas .."; +$a->strings["The end"] = "El fin"; +$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; +$a->strings["Image/photo"] = "Imagen/Foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 escribió:"; +$a->strings["Encrypted content"] = "Contenido cifrado"; +$a->strings["Invalid source protocol"] = "Protocolo de fuente inválido"; +$a->strings["Invalid link protocol"] = "Protocolo de enlace inválido"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; From c3bfa9f1c151e12b8854e189140f35aec928e512 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 16:42:01 +0000 Subject: [PATCH 17/44] Don't probe on local profiles via network --- src/Network/Probe.php | 54 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/src/Network/Probe.php b/src/Network/Probe.php index c841b9ce46..467c79a152 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -23,13 +23,13 @@ namespace Friendica\Network; use DOMDocument; use DomXPath; -use Friendica\Core\Cache\Duration; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\Core\Protocol; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\DI; +use Friendica\Model\Contact; use Friendica\Model\GServer; use Friendica\Model\Profile; use Friendica\Model\User; @@ -330,6 +330,14 @@ class Probe */ public static function uri($uri, $network = '', $uid = -1) { + // Local profiles aren't probed via network + if (empty($network) && strpos($uri, DI::baseUrl()->getHostname())) { + $data = self::localProbe($uri); + if (!empty($data)) { + return $data; + } + } + if ($uid == -1) { $uid = local_user(); } @@ -2156,4 +2164,48 @@ class Probe return ''; } + + public static function localProbe($url) + { + $fields = ['uid', 'url', 'name', 'nick', 'addr', 'alias', 'photo', 'contact-type', 'keywords', + 'location', 'about', 'notify', 'poll', 'request', 'confirm', 'poco', 'pubkey', 'gsid']; + $self = Contact::selectFirst($fields, ['self' => true, 'nurl' => Strings::normaliseLink($url)]); + if (empty($self)) { + $self = Contact::selectFirst($fields, ['self' => true, 'addr' => $url]); + } + if (empty($self)) { + $self = Contact::selectFirst($fields, ['self' => true, 'alias' => [$url, Strings::normaliseLink($url)]]); + } + if (empty($self)) { + return []; + } + + $profile = Profile::getByUID($self['uid']); + if (empty($profile)) { + return []; + } + + $approfile = ActivityPub\Transmitter::getProfile($self['uid']); + if (empty($approfile)) { + return []; + } + + if (empty($self['gsid'])) { + $self['gsid'] = GServer::getID($approfile['generator']['url']); + } + + $data = ['name' => $self['name'], 'nick' => $self['nick'], 'guid' => $approfile['diaspora:guid'], + 'url' => $self['url'], 'addr' => $self['addr'], 'alias' => $self['alias'], + 'photo' => $self['photo'], 'account-type' => $self['contact-type'], + 'community' => ($self['contact-type'] == Contact::TYPE_COMMUNITY), + 'keywords' => $self['keywords'], 'location' => $self['location'], 'about' => $self['about'], + 'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $self['notify'], + 'poll' => $self['poll'], 'request' => $self['request'], 'confirm' => $self['confirm'], + 'subscribe' => $approfile['generator']['url'] . '/follow?url={uri}', 'poco' => $self['poco'], + 'following' => $approfile['following'], 'followers' => $approfile['followers'], + 'inbox' => $approfile['inbox'], 'outbox' => $approfile['outbox'], + 'sharedinbox' => $approfile['endpoints']['sharedInbox'], 'network' => Protocol::DFRN, + 'pubkey' => $self['pubkey'], 'baseurl' => $approfile['generator']['url'], 'gsid' => $self['gsid']]; + return self::rearrangeData($data); + } } From f1a8db4e7638f0d0021cd2a349d86d620e5beaea Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 17:30:48 +0000 Subject: [PATCH 18/44] Use the owner data to collect all data --- src/Network/Probe.php | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 467c79a152..01cd886fb1 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -2167,20 +2167,18 @@ class Probe public static function localProbe($url) { - $fields = ['uid', 'url', 'name', 'nick', 'addr', 'alias', 'photo', 'contact-type', 'keywords', - 'location', 'about', 'notify', 'poll', 'request', 'confirm', 'poco', 'pubkey', 'gsid']; - $self = Contact::selectFirst($fields, ['self' => true, 'nurl' => Strings::normaliseLink($url)]); - if (empty($self)) { - $self = Contact::selectFirst($fields, ['self' => true, 'addr' => $url]); + $self = Contact::selectFirst(['uid'], ['self' => true, 'nurl' => Strings::normaliseLink($url)]); + if (empty($self['uid'])) { + $self = Contact::selectFirst(['uid'], ['self' => true, 'addr' => $url]); } - if (empty($self)) { - $self = Contact::selectFirst($fields, ['self' => true, 'alias' => [$url, Strings::normaliseLink($url)]]); + if (empty($self['uid'])) { + $self = Contact::selectFirst(['uid'], ['self' => true, 'alias' => [$url, Strings::normaliseLink($url)]]); } - if (empty($self)) { + if (empty($self['uid'])) { return []; } - $profile = Profile::getByUID($self['uid']); + $profile = User::getOwnerDataById($self['uid']); if (empty($profile)) { return []; } @@ -2190,22 +2188,22 @@ class Probe return []; } - if (empty($self['gsid'])) { - $self['gsid'] = GServer::getID($approfile['generator']['url']); + if (empty($profile['gsid'])) { + $profile['gsid'] = GServer::getID($approfile['generator']['url']); } - $data = ['name' => $self['name'], 'nick' => $self['nick'], 'guid' => $approfile['diaspora:guid'], - 'url' => $self['url'], 'addr' => $self['addr'], 'alias' => $self['alias'], - 'photo' => $self['photo'], 'account-type' => $self['contact-type'], - 'community' => ($self['contact-type'] == Contact::TYPE_COMMUNITY), - 'keywords' => $self['keywords'], 'location' => $self['location'], 'about' => $self['about'], - 'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $self['notify'], - 'poll' => $self['poll'], 'request' => $self['request'], 'confirm' => $self['confirm'], - 'subscribe' => $approfile['generator']['url'] . '/follow?url={uri}', 'poco' => $self['poco'], + $data = ['name' => $profile['name'], 'nick' => $profile['nick'], 'guid' => $approfile['diaspora:guid'], + 'url' => $profile['url'], 'addr' => $profile['addr'], 'alias' => $profile['alias'], + 'photo' => $profile['photo'], 'account-type' => $profile['contact-type'], + 'community' => ($profile['contact-type'] == Contact::TYPE_COMMUNITY), + 'keywords' => $profile['keywords'], 'location' => $profile['location'], 'about' => $profile['about'], + 'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $profile['notify'], + 'poll' => $profile['poll'], 'request' => $profile['request'], 'confirm' => $profile['confirm'], + 'subscribe' => $approfile['generator']['url'] . '/follow?url={uri}', 'poco' => $profile['poco'], 'following' => $approfile['following'], 'followers' => $approfile['followers'], 'inbox' => $approfile['inbox'], 'outbox' => $approfile['outbox'], 'sharedinbox' => $approfile['endpoints']['sharedInbox'], 'network' => Protocol::DFRN, - 'pubkey' => $self['pubkey'], 'baseurl' => $approfile['generator']['url'], 'gsid' => $self['gsid']]; + 'pubkey' => $profile['upubkey'], 'baseurl' => $approfile['generator']['url'], 'gsid' => $profile['gsid']]; return self::rearrangeData($data); } } From 5aba1df497379db0273249b8de5ca00aa4dc26bb Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 19:45:01 +0000 Subject: [PATCH 19/44] Use "User::getIdForURL" --- src/Model/User.php | 20 +++++++++++++++----- src/Network/Probe.php | 25 ++++++++++++------------- 2 files changed, 27 insertions(+), 18 deletions(-) diff --git a/src/Model/User.php b/src/Model/User.php index 9f3cadb376..38fe3b0ec4 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -162,14 +162,24 @@ class User * @return integer user id * @throws Exception */ - public static function getIdForURL($url) + public static function getIdForURL(string $url) { - $self = DBA::selectFirst('contact', ['uid'], ['nurl' => Strings::normaliseLink($url), 'self' => true]); - if (!DBA::isResult($self)) { - return false; - } else { + $self = Contact::selectFirst(['uid'], ['self' => true, 'nurl' => Strings::normaliseLink($url)]); + if (!empty($self['uid'])) { return $self['uid']; } + + $self = Contact::selectFirst(['uid'], ['self' => true, 'addr' => $url]); + if (!empty($self['uid'])) { + return $self['uid']; + } + + $self = Contact::selectFirst(['uid'], ['self' => true, 'alias' => [$url, Strings::normaliseLink($url)]]); + if (!empty($self['uid'])) { + return $self['uid']; + } + + return 0; } /** diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 01cd886fb1..9f6b3a485e 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -29,7 +29,6 @@ use Friendica\Core\Protocol; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\DI; -use Friendica\Model\Contact; use Friendica\Model\GServer; use Friendica\Model\Profile; use Friendica\Model\User; @@ -2165,25 +2164,25 @@ class Probe return ''; } - public static function localProbe($url) + /** + * Probe data from local profiles without network traffic + * + * @param string $url + * @return array probed data + */ + public static function localProbe(string $url) { - $self = Contact::selectFirst(['uid'], ['self' => true, 'nurl' => Strings::normaliseLink($url)]); - if (empty($self['uid'])) { - $self = Contact::selectFirst(['uid'], ['self' => true, 'addr' => $url]); - } - if (empty($self['uid'])) { - $self = Contact::selectFirst(['uid'], ['self' => true, 'alias' => [$url, Strings::normaliseLink($url)]]); - } - if (empty($self['uid'])) { + $uid = User::getIdForURL($url); + if (empty($uid)) { return []; } - $profile = User::getOwnerDataById($self['uid']); + $profile = User::getOwnerDataById($uid); if (empty($profile)) { return []; } - $approfile = ActivityPub\Transmitter::getProfile($self['uid']); + $approfile = ActivityPub\Transmitter::getProfile($uid); if (empty($approfile)) { return []; } @@ -2195,7 +2194,7 @@ class Probe $data = ['name' => $profile['name'], 'nick' => $profile['nick'], 'guid' => $approfile['diaspora:guid'], 'url' => $profile['url'], 'addr' => $profile['addr'], 'alias' => $profile['alias'], 'photo' => $profile['photo'], 'account-type' => $profile['contact-type'], - 'community' => ($profile['contact-type'] == Contact::TYPE_COMMUNITY), + 'community' => ($profile['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY), 'keywords' => $profile['keywords'], 'location' => $profile['location'], 'about' => $profile['about'], 'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $profile['notify'], 'poll' => $profile['poll'], 'request' => $profile['request'], 'confirm' => $profile['confirm'], From 76bcf27130437c0d27ea543ac4e1f63c412fdc90 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 19:48:14 +0000 Subject: [PATCH 20/44] "localProbe" is used only locally --- src/Network/Probe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 9f6b3a485e..3524d00721 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -2170,7 +2170,7 @@ class Probe * @param string $url * @return array probed data */ - public static function localProbe(string $url) + private static function localProbe(string $url) { $uid = User::getIdForURL($url); if (empty($uid)) { From d9fc0ae0ea1546b657f902ba56e8a5e19246c51e Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 20:30:24 +0000 Subject: [PATCH 21/44] Using a constant value for the default avatar --- mod/dfrn_confirm.php | 2 +- src/Content/Nav.php | 3 ++- src/Factory/Notification/Introduction.php | 2 +- src/Model/Contact.php | 22 +++++++++++++--------- src/Model/Photo.php | 6 +++--- src/Module/Photo.php | 8 ++++---- src/Network/Probe.php | 3 ++- src/Util/Network.php | 3 ++- 8 files changed, 28 insertions(+), 21 deletions(-) diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index bd52a67cff..e909428d1e 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -481,7 +481,7 @@ function dfrn_confirm_post(App $a, $handsfree = null) if (DBA::isResult($contact)) { $photo = $contact['photo']; } else { - $photo = DI::baseUrl() . '/images/person-300.jpg'; + $photo = DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO; } Contact::updateAvatar($dfrn_record, $photo); diff --git a/src/Content/Nav.php b/src/Content/Nav.php index 335f81bf3d..9e34cefc75 100644 --- a/src/Content/Nav.php +++ b/src/Content/Nav.php @@ -27,6 +27,7 @@ use Friendica\Core\Renderer; use Friendica\Core\Session; use Friendica\Database\DBA; use Friendica\DI; +use Friendica\Model\Contact; use Friendica\Model\Profile; use Friendica\Model\User; @@ -183,7 +184,7 @@ class Nav // user info $contact = DBA::selectFirst('contact', ['micro'], ['uid' => $a->user['uid'], 'self' => true]); $userinfo = [ - 'icon' => (DBA::isResult($contact) ? DI::baseUrl()->remove($contact['micro']) : 'images/person-48.jpg'), + 'icon' => (DBA::isResult($contact) ? DI::baseUrl()->remove($contact['micro']) : Contact::DEFAULT_AVATAR_MICRO), 'name' => $a->user['username'], ]; } else { diff --git a/src/Factory/Notification/Introduction.php b/src/Factory/Notification/Introduction.php index a16926f967..efee886f91 100644 --- a/src/Factory/Notification/Introduction.php +++ b/src/Factory/Notification/Introduction.php @@ -132,7 +132,7 @@ class Introduction extends BaseFactory 'madeby_zrl' => Contact::magicLink($notification['url']), 'madeby_addr' => $notification['addr'], 'contact_id' => $notification['contact-id'], - 'photo' => (!empty($notification['fphoto']) ? Proxy::proxifyUrl($notification['fphoto'], false, Proxy::SIZE_SMALL) : "images/person-300.jpg"), + 'photo' => (!empty($notification['fphoto']) ? Proxy::proxifyUrl($notification['fphoto'], false, Proxy::SIZE_SMALL) : Contact::DEFAULT_AVATAR_PHOTO), 'name' => $notification['fname'], 'url' => $notification['furl'], 'zrl' => Contact::magicLink($notification['furl']), diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 0e3b5724cb..53bd894744 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -51,6 +51,10 @@ use Friendica\Util\Strings; */ class Contact { + const DEFAULT_AVATAR_PHOTO = '/images/person-300.jpg'; + const DEFAULT_AVATAR_THUMB = '/images/person-80.jpg'; + const DEFAULT_AVATAR_MICRO = '/images/person-48.jpg'; + /** * @deprecated since version 2019.03 * @see User::PAGE_FLAGS_NORMAL @@ -644,9 +648,9 @@ class Contact $fields['micro'] = $prefix . '6' . $suffix; } else { // We hadn't found a photo entry, so we use the default avatar - $fields['photo'] = DI::baseUrl() . '/images/person-300.jpg'; - $fields['thumb'] = DI::baseUrl() . '/images/person-80.jpg'; - $fields['micro'] = DI::baseUrl() . '/images/person-48.jpg'; + $fields['photo'] = DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO; + $fields['thumb'] = DI::baseUrl() . self::DEFAULT_AVATAR_THUMB; + $fields['micro'] = DI::baseUrl() . self::DEFAULT_AVATAR_MICRO; } $fields['avatar'] = DI::baseUrl() . '/photo/profile/' .$uid . '.' . $file_suffix; @@ -1467,7 +1471,7 @@ class Contact */ public static function getPhoto(array $contact, string $avatar = '') { - return self::getAvatarPath($contact, 'photo', DI::baseUrl() . '/images/person-300.jpg', Proxy::SIZE_SMALL, $avatar); + return self::getAvatarPath($contact, 'photo', DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO, Proxy::SIZE_SMALL, $avatar); } /** @@ -1479,7 +1483,7 @@ class Contact */ public static function getThumb(array $contact, string $avatar = '') { - return self::getAvatarPath($contact, 'thumb', DI::baseUrl() . '/images/person-80.jpg', Proxy::SIZE_THUMB, $avatar); + return self::getAvatarPath($contact, 'thumb', DI::baseUrl() . self::DEFAULT_AVATAR_THUMB, Proxy::SIZE_THUMB, $avatar); } /** @@ -1491,7 +1495,7 @@ class Contact */ public static function getMicro(array $contact, string $avatar = '') { - return self::getAvatarPath($contact, 'micro', DI::baseUrl() . '/images/person-48.jpg', Proxy::SIZE_MICRO, $avatar); + return self::getAvatarPath($contact, 'micro', DI::baseUrl() . self::DEFAULT_AVATAR_MICRO, Proxy::SIZE_MICRO, $avatar); } /** @@ -1530,13 +1534,13 @@ class Contact /// add the default avatars if the fields aren't filled if (isset($contact['photo']) && empty($contact['photo'])) { - $contact['photo'] = DI::baseUrl() . '/images/person-300.jpg'; + $contact['photo'] = DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO; } if (isset($contact['thumb']) && empty($contact['thumb'])) { - $contact['thumb'] = DI::baseUrl() . '/images/person-80.jpg'; + $contact['thumb'] = DI::baseUrl() . self::DEFAULT_AVATAR_THUMB; } if (isset($contact['micro']) && empty($contact['micro'])) { - $contact['micro'] = DI::baseUrl() . '/images/person-48.jpg'; + $contact['micro'] = DI::baseUrl() . self::DEFAULT_AVATAR_MICRO; } return $contact; diff --git a/src/Model/Photo.php b/src/Model/Photo.php index 7d984a8ce6..fecf6ffb7d 100644 --- a/src/Model/Photo.php +++ b/src/Model/Photo.php @@ -492,9 +492,9 @@ class Photo } if ($photo_failure) { - $image_url = DI::baseUrl() . "/images/person-300.jpg"; - $thumb = DI::baseUrl() . "/images/person-80.jpg"; - $micro = DI::baseUrl() . "/images/person-48.jpg"; + $image_url = DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO; + $thumb = DI::baseUrl() . Contact::DEFAULT_AVATAR_THUMB; + $micro = DI::baseUrl() . Contact::DEFAULT_AVATAR_MICRO; } return [$image_url, $thumb, $micro]; diff --git a/src/Module/Photo.php b/src/Module/Photo.php index 826d86bdd5..0a0b6d3208 100644 --- a/src/Module/Photo.php +++ b/src/Module/Photo.php @@ -23,8 +23,8 @@ namespace Friendica\Module; use Friendica\BaseModule; use Friendica\Core\Logger; -use Friendica\Core\System; use Friendica\DI; +use Friendica\Model\Contact; use Friendica\Model\Photo as MPhoto; /** @@ -139,16 +139,16 @@ class Photo extends BaseModule case "profile": case "custom": $scale = 4; - $default = "images/person-300.jpg"; + $default = Contact::DEFAULT_AVATAR_PHOTO; break; case "micro": $scale = 6; - $default = "images/person-48.jpg"; + $default = Contact::DEFAULT_AVATAR_MICRO; break; case "avatar": default: $scale = 5; - $default = "images/person-80.jpg"; + $default = Contact::DEFAULT_AVATAR_THUMB; } $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]); diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 3524d00721..137f245755 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -29,6 +29,7 @@ use Friendica\Core\Protocol; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\DI; +use Friendica\Model\Contact; use Friendica\Model\GServer; use Friendica\Model\Profile; use Friendica\Model\User; @@ -369,7 +370,7 @@ class Probe } if (empty($data['photo'])) { - $data['photo'] = DI::baseUrl() . '/images/person-300.jpg'; + $data['photo'] = DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO; } if (empty($data['name'])) { diff --git a/src/Util/Network.php b/src/Util/Network.php index 7795b0cd29..6694fd4f0c 100644 --- a/src/Util/Network.php +++ b/src/Util/Network.php @@ -24,6 +24,7 @@ namespace Friendica\Util; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\DI; +use Friendica\Model\Contact; class Network { @@ -235,7 +236,7 @@ class Network Hook::callAll('avatar_lookup', $avatar); if (! $avatar['success']) { - $avatar['url'] = DI::baseUrl() . '/images/person-300.jpg'; + $avatar['url'] = DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO; } Logger::log('Avatar: ' . $avatar['email'] . ' ' . $avatar['url'], Logger::DEBUG); From ce2af84cba85c61b3130e963e9425c2fc0c4f055 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Aug 2020 22:18:48 +0000 Subject: [PATCH 22/44] Use a constant for the contact photos / dom't cache them --- mod/fbrowser.php | 9 +++++---- mod/photos.php | 16 ++++++++-------- src/Model/Contact.php | 10 ++++++++++ src/Model/Photo.php | 18 ++++++++++-------- 4 files changed, 33 insertions(+), 20 deletions(-) diff --git a/mod/fbrowser.php b/mod/fbrowser.php index 984747bcd8..14141d4004 100644 --- a/mod/fbrowser.php +++ b/mod/fbrowser.php @@ -9,6 +9,7 @@ use Friendica\App; use Friendica\Core\Renderer; use Friendica\Database\DBA; use Friendica\DI; +use Friendica\Model\Photo; use Friendica\Util\Images; use Friendica\Util\Strings; @@ -47,8 +48,8 @@ function fbrowser_content(App $a) if ($a->argc==2) { $photos = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' ", intval(local_user()), - DBA::escape('Contact Photos'), - DBA::escape(DI::l10n()->t('Contact Photos')) + DBA::escape(Photo::CONTACT_PHOTOS), + DBA::escape(DI::l10n()->t(Photo::CONTACT_PHOTOS)) ); $albums = array_column($photos, 'album'); @@ -66,8 +67,8 @@ function fbrowser_content(App $a) FROM `photo` WHERE `uid` = %d $sql_extra AND `album` != '%s' AND `album` != '%s' GROUP BY `resource-id` $sql_extra2", intval(local_user()), - DBA::escape('Contact Photos'), - DBA::escape(DI::l10n()->t('Contact Photos')) + DBA::escape(Photo::CONTACT_PHOTOS), + DBA::escape(DI::l10n()->t(Photo::CONTACT_PHOTOS)) ); function _map_files1($rr) diff --git a/mod/photos.php b/mod/photos.php index e5ab6b8dce..b00663df3a 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -193,7 +193,7 @@ function photos_post(App $a) } $album = hex2bin($a->argv[3]); - if ($album === DI::l10n()->t('Profile Photos') || $album === 'Contact Photos' || $album === DI::l10n()->t('Contact Photos')) { + if ($album === DI::l10n()->t('Profile Photos') || $album === Photo::CONTACT_PHOTOS || $album === DI::l10n()->t(Photo::CONTACT_PHOTOS)) { DI::baseUrl()->redirect($_SESSION['photo_return']); return; // NOTREACHED } @@ -937,7 +937,7 @@ function photos_content(App $a) $albumselect .= ''; if (!empty($a->data['albums'])) { foreach ($a->data['albums'] as $album) { - if (($album['album'] === '') || ($album['album'] === 'Contact Photos') || ($album['album'] === DI::l10n()->t('Contact Photos'))) { + if (($album['album'] === '') || ($album['album'] === Photo::CONTACT_PHOTOS) || ($album['album'] === DI::l10n()->t(Photo::CONTACT_PHOTOS))) { continue; } $selected = (($selname === $album['album']) ? ' selected="selected" ' : ''); @@ -1050,7 +1050,7 @@ function photos_content(App $a) // edit album name if ($cmd === 'edit') { - if (($album !== DI::l10n()->t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== DI::l10n()->t('Contact Photos'))) { + if (($album !== DI::l10n()->t('Profile Photos')) && ($album !== Photo::CONTACT_PHOTOS) && ($album !== DI::l10n()->t(Photo::CONTACT_PHOTOS))) { if ($can_post) { $edit_tpl = Renderer::getMarkupTemplate('album_edit.tpl'); @@ -1067,7 +1067,7 @@ function photos_content(App $a) } } } else { - if (($album !== DI::l10n()->t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== DI::l10n()->t('Contact Photos')) && $can_post) { + if (($album !== DI::l10n()->t('Profile Photos')) && ($album !== Photo::CONTACT_PHOTOS) && ($album !== DI::l10n()->t(Photo::CONTACT_PHOTOS)) && $can_post) { $edit = [DI::l10n()->t('Edit Album'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit']; $drop = [DI::l10n()->t('Drop Album'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/drop']; } @@ -1550,8 +1550,8 @@ function photos_content(App $a) $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra GROUP BY `resource-id`", intval($a->data['user']['uid']), - DBA::escape('Contact Photos'), - DBA::escape(DI::l10n()->t('Contact Photos')) + DBA::escape(Photo::CONTACT_PHOTOS), + DBA::escape(DI::l10n()->t(Photo::CONTACT_PHOTOS)) ); if (DBA::isResult($r)) { $total = count($r); @@ -1565,8 +1565,8 @@ function photos_content(App $a) WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d", intval($a->data['user']['uid']), - DBA::escape('Contact Photos'), - DBA::escape(DI::l10n()->t('Contact Photos')), + DBA::escape(Photo::CONTACT_PHOTOS), + DBA::escape(DI::l10n()->t(Photo::CONTACT_PHOTOS)), $pager->getStart(), $pager->getItemsPerPage() ); diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 53bd894744..4f7cd2598b 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1584,6 +1584,16 @@ class Contact $update = ($contact['avatar'] != $avatar) || $force; + if (strpos($avatar, self::DEFAULT_AVATAR_PHOTO)) { + $fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(), + 'photo' => DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO, + 'thumb' => DI::baseUrl() . self::DEFAULT_AVATAR_THUMB, + 'micro' => DI::baseUrl() . self::DEFAULT_AVATAR_MICRO]; + DBA::update('contact', $fields, ['id' => $cid]); + Photo::delete(['uid' => $uid, 'contact-id' => $cid, 'album' => Photo::CONTACT_PHOTOS]); + return; + } + if (!$update) { foreach ($data as $image_uri) { $image_rid = Photo::ridFromURI($image_uri); diff --git a/src/Model/Photo.php b/src/Model/Photo.php index fecf6ffb7d..f09e88ce7d 100644 --- a/src/Model/Photo.php +++ b/src/Model/Photo.php @@ -41,6 +41,8 @@ require_once "include/dba.php"; */ class Photo { + const CONTACT_PHOTOS = 'Contact Photos'; + /** * Select rows from the photo table and returns them as array * @@ -408,7 +410,7 @@ class Photo $micro = ""; $photo = DBA::selectFirst( - "photo", ["resource-id"], ["uid" => $uid, "contact-id" => $cid, "scale" => 4, "album" => "Contact Photos"] + "photo", ["resource-id"], ["uid" => $uid, "contact-id" => $cid, "scale" => 4, "album" => self::CONTACT_PHOTOS] ); if (!empty($photo['resource-id'])) { $resource_id = $photo["resource-id"]; @@ -437,7 +439,7 @@ class Photo if ($Image->isValid()) { $Image->scaleToSquare(300); - $r = self::store($Image, $uid, $cid, $resource_id, $filename, "Contact Photos", 4); + $r = self::store($Image, $uid, $cid, $resource_id, $filename, self::CONTACT_PHOTOS, 4); if ($r === false) { $photo_failure = true; @@ -445,7 +447,7 @@ class Photo $Image->scaleDown(80); - $r = self::store($Image, $uid, $cid, $resource_id, $filename, "Contact Photos", 5); + $r = self::store($Image, $uid, $cid, $resource_id, $filename, self::CONTACT_PHOTOS, 5); if ($r === false) { $photo_failure = true; @@ -453,7 +455,7 @@ class Photo $Image->scaleDown(48); - $r = self::store($Image, $uid, $cid, $resource_id, $filename, "Contact Photos", 6); + $r = self::store($Image, $uid, $cid, $resource_id, $filename, self::CONTACT_PHOTOS, 6); if ($r === false) { $photo_failure = true; @@ -561,8 +563,8 @@ class Photo WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra GROUP BY `album` ORDER BY `created` DESC", intval($uid), - DBA::escape("Contact Photos"), - DBA::escape(DI::l10n()->t("Contact Photos")) + DBA::escape(self::CONTACT_PHOTOS), + DBA::escape(DI::l10n()->t(self::CONTACT_PHOTOS)) ); } else { // This query doesn't do the count and is much faster @@ -570,8 +572,8 @@ class Photo FROM `photo` USE INDEX (`uid_album_scale_created`) WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra", intval($uid), - DBA::escape("Contact Photos"), - DBA::escape(DI::l10n()->t("Contact Photos")) + DBA::escape(self::CONTACT_PHOTOS), + DBA::escape(DI::l10n()->t(self::CONTACT_PHOTOS)) ); } DI::cache()->set($key, $albums, Duration::DAY); From 29494ea721b9ea2b2feee0f2950ecf7c1b8e4a69 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 04:11:20 +0000 Subject: [PATCH 23/44] Avoid local network requests --- src/Model/Contact.php | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 4f7cd2598b..7772bad878 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1576,6 +1576,19 @@ class Contact return; } + // Replace cached avatar pictures from the default avatar with the default avatars in different sizes + if (strpos($avatar, self::DEFAULT_AVATAR_PHOTO)) { + $fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(), + 'photo' => DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO, + 'thumb' => DI::baseUrl() . self::DEFAULT_AVATAR_THUMB, + 'micro' => DI::baseUrl() . self::DEFAULT_AVATAR_MICRO]; + if ($fields['photo'] . $fields['thumb'] . $fields['micro'] != $contact['photo'] . $contact['thumb'] . $contact['micro']) { + DBA::update('contact', $fields, ['id' => $cid]); + Photo::delete(['uid' => $uid, 'contact-id' => $cid, 'album' => Photo::CONTACT_PHOTOS]); + } + return; + } + $data = [ $contact['photo'] ?? '', $contact['thumb'] ?? '', @@ -1584,16 +1597,6 @@ class Contact $update = ($contact['avatar'] != $avatar) || $force; - if (strpos($avatar, self::DEFAULT_AVATAR_PHOTO)) { - $fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(), - 'photo' => DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO, - 'thumb' => DI::baseUrl() . self::DEFAULT_AVATAR_THUMB, - 'micro' => DI::baseUrl() . self::DEFAULT_AVATAR_MICRO]; - DBA::update('contact', $fields, ['id' => $cid]); - Photo::delete(['uid' => $uid, 'contact-id' => $cid, 'album' => Photo::CONTACT_PHOTOS]); - return; - } - if (!$update) { foreach ($data as $image_uri) { $image_rid = Photo::ridFromURI($image_uri); From eb95314aaa42bf097dbd54aac5b9f97fb4380b9c Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 04:45:31 +0000 Subject: [PATCH 24/44] Avoid locally probing last item via network --- src/Model/User.php | 5 +++++ src/Network/Probe.php | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/src/Model/User.php b/src/Model/User.php index 38fe3b0ec4..990df65dbd 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -164,6 +164,11 @@ class User */ public static function getIdForURL(string $url) { + // Avoid any database requests when the hostname isn't even part of the url. + if (!strpos($url, DI::baseUrl()->getHostname())) { + return 0; + } + $self = Contact::selectFirst(['uid'], ['self' => true, 'nurl' => Strings::normaliseLink($url)]); if (!empty($self['uid'])) { return $self['uid']; diff --git a/src/Network/Probe.php b/src/Network/Probe.php index 137f245755..99e62fb466 100644 --- a/src/Network/Probe.php +++ b/src/Network/Probe.php @@ -2012,6 +2012,14 @@ class Probe */ public static function getLastUpdate(array $data) { + $uid = User::getIdForURL($data['url']); + if (!empty($uid)) { + $contact = Contact::selectFirst(['url', 'last-item'], ['self' => true, 'uid' => $uid]); + if (!empty($contact['last-item'])) { + return $contact['last-item']; + } + } + if ($lastUpdate = self::updateFromNoScrape($data)) { return $lastUpdate; } From 3d1829ede577de8ca37bf29128f666827ffdf0f3 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 05:18:19 +0000 Subject: [PATCH 25/44] Don't poll locally / user self data --- src/Model/Contact.php | 8 ++++++++ src/Worker/OnePoll.php | 9 +++++++++ 2 files changed, 17 insertions(+) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 7772bad878..ed8bc7d55c 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1576,12 +1576,20 @@ class Contact return; } + $local_uid = User::getIdForURL($contact['url']); + if (!empty($local_uid)) { + $fields = self::selectFirst(['avatar', 'avatar-date', 'photo', 'thumb', 'micro'], ['self' => true, 'uid' => $local_uid]); + } + // Replace cached avatar pictures from the default avatar with the default avatars in different sizes if (strpos($avatar, self::DEFAULT_AVATAR_PHOTO)) { $fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(), 'photo' => DI::baseUrl() . self::DEFAULT_AVATAR_PHOTO, 'thumb' => DI::baseUrl() . self::DEFAULT_AVATAR_THUMB, 'micro' => DI::baseUrl() . self::DEFAULT_AVATAR_MICRO]; + } + + if (!empty($fields)) { if ($fields['photo'] . $fields['thumb'] . $fields['micro'] != $contact['photo'] . $contact['thumb'] . $contact['micro']) { DBA::update('contact', $fields, ['id' => $cid]); Photo::delete(['uid' => $uid, 'contact-id' => $cid, 'album' => Photo::CONTACT_PHOTOS]); diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index 4dfbf7cadb..867b11fd30 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -103,6 +103,15 @@ class OnePoll return; } + // Don't poll local contacts + if (Contact::isLocalById($contact['id'])) { + Logger::info('Local contacts are not polled', ['id' => $contact['id']]); + + // set the last-update so we don't keep polling + DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]); + return; + } + // We don't poll AP contacts by now if ($protocol === Protocol::ACTIVITYPUB) { Logger::log("Don't poll AP contact"); From 38ed5c943d0fe72f95a842ad35c89433c9e4b888 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 05:24:53 +0000 Subject: [PATCH 26/44] Avoid probing non existing profiles --- src/Content/Text/BBCode.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index cae3e941a7..5b22746ce6 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1973,8 +1973,7 @@ class BBCode */ private static function bbCodeMention2DiasporaCallback($match) { - $contact = Contact::getByURL($match[3], null, ['addr']); - + $contact = Contact::getByURL($match[3], false, ['addr']); if (empty($contact['addr'])) { return $match[0]; } From b82f22aa0e18d33811ae2644c9c599c8165a1d21 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 08:20:31 +0000 Subject: [PATCH 27/44] Fix missing field --- src/Model/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index ed8bc7d55c..9b0f6829d1 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1560,7 +1560,7 @@ class Contact */ public static function updateAvatar(int $cid, string $avatar, bool $force = false) { - $contact = DBA::selectFirst('contact', ['uid', 'avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid, 'self' => false]); + $contact = DBA::selectFirst('contact', ['uid', 'avatar', 'photo', 'thumb', 'micro', 'nurl', 'url'], ['id' => $cid, 'self' => false]); if (!DBA::isResult($contact)) { return; } From 52a933c4c93acea3686e40cb761e6eb5762688be Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 12:47:14 +0000 Subject: [PATCH 28/44] Different check for being local --- src/Worker/OnePoll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index 867b11fd30..7d69517319 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -104,7 +104,7 @@ class OnePoll } // Don't poll local contacts - if (Contact::isLocalById($contact['id'])) { + if (User::getIdForURL($contact['url'])) { Logger::info('Local contacts are not polled', ['id' => $contact['id']]); // set the last-update so we don't keep polling From 66bfb9e76feed2996e83bd4758c282337d99701d Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 18:16:48 +0000 Subject: [PATCH 29/44] Cache clearing rearrangements --- src/Worker/ClearCache.php | 35 +++++++---------------------------- src/Worker/Cron.php | 39 +++++++++++++++++++++++++++++++++++---- 2 files changed, 42 insertions(+), 32 deletions(-) diff --git a/src/Worker/ClearCache.php b/src/Worker/ClearCache.php index d87fd46cce..c19d13194a 100644 --- a/src/Worker/ClearCache.php +++ b/src/Worker/ClearCache.php @@ -21,7 +21,6 @@ namespace Friendica\Worker; -use Friendica\Core\Logger; use Friendica\Database\DBA; use Friendica\DI; use Friendica\Model\Photo; @@ -35,21 +34,12 @@ class ClearCache public static function execute() { $a = DI::app(); - $last = DI::config()->get('system', 'cache_last_cleared'); - - if ($last) { - $next = $last + (3600); // Once per hour - $clear_cache = ($next <= time()); - } else { - $clear_cache = true; - } - - if (!$clear_cache) { - return; - } // clear old cache DI::cache()->clear(); + if (!DI::config()->get('system', 'optimize_tables')) { + DBA::e("OPTIMIZE TABLE `cache`"); + } // clear old item cache files clear_cache(); @@ -76,25 +66,14 @@ class ClearCache // Delete the cached OEmbed entries that are older than three month DBA::delete('oembed', ["`created` < NOW() - INTERVAL 3 MONTH"]); + if (!DI::config()->get('system', 'optimize_tables')) { + DBA::e("OPTIMIZE TABLE `oembed`"); + } // Delete the cached "parse_url" entries that are older than three month DBA::delete('parsed_url', ["`created` < NOW() - INTERVAL 3 MONTH"]); - - if (DI::config()->get('system', 'optimize_tables')) { - Logger::info('Optimize start'); - DBA::e("OPTIMIZE TABLE `auth_codes`"); - DBA::e("OPTIMIZE TABLE `cache`"); - DBA::e("OPTIMIZE TABLE `challenge`"); - DBA::e("OPTIMIZE TABLE `locks`"); - DBA::e("OPTIMIZE TABLE `oembed`"); + if (!DI::config()->get('system', 'optimize_tables')) { DBA::e("OPTIMIZE TABLE `parsed_url`"); - DBA::e("OPTIMIZE TABLE `profile_check`"); - DBA::e("OPTIMIZE TABLE `session`"); - DBA::e("OPTIMIZE TABLE `tokens`"); - DBA::e("OPTIMIZE TABLE `process`"); - Logger::info('Optimize finished'); } - - DI::config()->set('system', 'cache_last_cleared', time()); } } diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index d7cd7c0546..8f5e55e226 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -63,9 +63,6 @@ class Cron // Call possible post update functions Worker::add(PRIORITY_LOW, 'PostUpdate'); - // Clear cache entries - Worker::add(PRIORITY_LOW, 'ClearCache'); - // Repair entries in the database Worker::add(PRIORITY_LOW, 'RepairDatabase'); @@ -94,6 +91,10 @@ class Cron self::checkdeletedContacts(); + if (!DI::config()->get('system', 'optimize_tables')) { + self::optimizeTables(); + } + DI::config()->set('system', 'last_expire_day', $d2); } @@ -110,9 +111,20 @@ class Cron // Optimizing this table only last seconds if (DI::config()->get('system', 'optimize_tables')) { - DBA::e("OPTIMIZE TABLE `workerqueue`"); + // We are acquiring the two locks from the worker to avoid locking problems + if (DI::lock()->acquire(Worker::LOCK_PROCESS, 10)) { + if (DI::lock()->acquire(Worker::LOCK_WORKER, 10)) { + DBA::e("OPTIMIZE TABLE `workerqueue`"); + DBA::e("OPTIMIZE TABLE `process`"); + DI::lock()->release(Worker::LOCK_WORKER); + } + DI::lock()->release(Worker::LOCK_PROCESS); + } } + // Clear cache entries + Worker::add(PRIORITY_LOW, 'ClearCache'); + DI::config()->set('system', 'last_cron_hourly', time()); } @@ -136,6 +148,25 @@ class Cron return; } + /** + * Optimize tables that are known to grow and shrink all the time + * + * @return void + */ + private static function optimizeTables() + { + Logger::info('Optimize start'); + + DBA::e("OPTIMIZE TABLE `auth_codes`"); + DBA::e("OPTIMIZE TABLE `challenge`"); + DBA::e("OPTIMIZE TABLE `locks`"); + DBA::e("OPTIMIZE TABLE `profile_check`"); + DBA::e("OPTIMIZE TABLE `session`"); + DBA::e("OPTIMIZE TABLE `tokens`"); + + DI::lock()->release('optimize_tables'); + } + /** * Checks for contacts that are about to be deleted and ensures that they are removed. * This should be done automatically in the "remove" function. This here is a cleanup job. From 98dd15ec9a79a59ea44520c9094de4ab2372e34e Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 18:21:40 +0000 Subject: [PATCH 30/44] Adding a cooldown phase for the daemon --- bin/daemon.php | 7 +++++- src/Core/Worker.php | 61 +++++++++++++++++++++++++++++---------------- 2 files changed, 45 insertions(+), 23 deletions(-) diff --git a/bin/daemon.php b/bin/daemon.php index c2ce05c8e0..596f4de56f 100755 --- a/bin/daemon.php +++ b/bin/daemon.php @@ -185,7 +185,12 @@ while (true) { $do_cron = true; } - Worker::spawnWorker($do_cron); + if ($do_cron || (!DI::process()->isMaxLoadReached() && Worker::entriesExists() && Worker::isReady())) { + Worker::spawnWorker($do_cron); + } else { + Logger::info('Cool down', ['pid' => $pid]); + sleep(10); + } if ($do_cron) { // We force a reconnect of the database connection. diff --git a/src/Core/Worker.php b/src/Core/Worker.php index c9a8bcbdda..1cde61351c 100644 --- a/src/Core/Worker.php +++ b/src/Core/Worker.php @@ -81,27 +81,8 @@ class Worker self::killStaleWorkers(); } - // Count active workers and compare them with a maximum value that depends on the load - if (self::tooMuchWorkers()) { - Logger::info('Pre check: Active worker limit reached, quitting.'); - return; - } - - // Do we have too few memory? - if (DI::process()->isMinMemoryReached()) { - Logger::info('Pre check: Memory limit reached, quitting.'); - return; - } - - // Possibly there are too much database connections - if (self::maxConnectionsReached()) { - Logger::info('Pre check: maximum connections reached, quitting.'); - return; - } - - // Possibly there are too much database processes that block the system - if (DI::process()->isMaxProcessesReached()) { - Logger::info('Pre check: maximum processes reached, quitting.'); + // Check if the system is ready + if (!self::isReady()) { return; } @@ -174,13 +155,49 @@ class Worker Logger::info("Couldn't select a workerqueue entry, quitting process", ['pid' => getmypid()]); } + /** + * Checks if the system is ready. + * + * Several system parameters like memory, connections and processes are checked. + * + * @return boolean + */ + public static function isReady() + { + // Count active workers and compare them with a maximum value that depends on the load + if (self::tooMuchWorkers()) { + Logger::info('Active worker limit reached, quitting.'); + return false; + } + + // Do we have too few memory? + if (DI::process()->isMinMemoryReached()) { + Logger::info('Memory limit reached, quitting.'); + return false; + } + + // Possibly there are too much database connections + if (self::maxConnectionsReached()) { + Logger::info('Maximum connections reached, quitting.'); + return false; + } + + // Possibly there are too much database processes that block the system + if (DI::process()->isMaxProcessesReached()) { + Logger::info('Maximum processes reached, quitting.'); + return false; + } + + return true; + } + /** * Check if non executed tasks do exist in the worker queue * * @return boolean Returns "true" if tasks are existing * @throws \Exception */ - private static function entriesExists() + public static function entriesExists() { $stamp = (float)microtime(true); $exists = DBA::exists('workerqueue', ["NOT `done` AND `pid` = 0 AND `next_try` < ?", DateTimeFormat::utcNow()]); From 2b13fc8efeb70f7c09aeafb1c0672831bface9c0 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 19:10:30 +0000 Subject: [PATCH 31/44] Fix the network view --- database.sql | 8 +++++--- static/dbstructure.config.php | 2 +- static/dbview.config.php | 6 ++++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/database.sql b/database.sql index e1a8f7fe7c..f544d319bf 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2020.09-dev (Red Hot Poker) --- DB_UPDATE_VERSION 1361 +-- DB_UPDATE_VERSION 1362 -- ------------------------------------------ @@ -1411,11 +1411,12 @@ CREATE VIEW `network-item-view` AS SELECT `item`.`contact-id` AS `contact-id` FROM `item` INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent` - STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`) + STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid` LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id` LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id` WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated` + AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`) AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`) AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`) AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`); @@ -1438,12 +1439,13 @@ CREATE VIEW `network-thread-view` AS SELECT `thread`.`network` AS `network`, `thread`.`contact-id` AS `contact-id` FROM `thread` - STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`) + STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid` LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id` LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id` WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated` + AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`) AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`) AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`) AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`); diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index b5849fb7fc..045d0be971 100755 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -54,7 +54,7 @@ use Friendica\Database\DBA; if (!defined('DB_UPDATE_VERSION')) { - define('DB_UPDATE_VERSION', 1361); + define('DB_UPDATE_VERSION', 1362); } return [ diff --git a/static/dbview.config.php b/static/dbview.config.php index b27e3a7245..a508936ae3 100755 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -86,11 +86,12 @@ return [ ], "query" => "FROM `item` INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent` - STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`) + STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid` LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id` LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id` WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated` + AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`) AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`) AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`) AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`)" @@ -111,12 +112,13 @@ return [ "contact-id" => ["thread", "contact-id"], ], "query" => "FROM `thread` - STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` AND (NOT `contact`.`blocked` OR `contact`.`pending`) + STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id` STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = `thread`.`uid` LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `thread`.`uid` AND `author`.`cid` = `thread`.`author-id` LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `thread`.`uid` AND `owner`.`cid` = `thread`.`owner-id` WHERE `thread`.`visible` AND NOT `thread`.`deleted` AND NOT `thread`.`moderated` + AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`) AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`) AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`) AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`)" From 67174f576264856f96c2a5a6d64a6f42862ab32b Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 19 Aug 2020 19:41:22 +0000 Subject: [PATCH 32/44] fix reversed "if" --- src/Worker/ClearCache.php | 6 +++--- src/Worker/Cron.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Worker/ClearCache.php b/src/Worker/ClearCache.php index c19d13194a..a1e78434c2 100644 --- a/src/Worker/ClearCache.php +++ b/src/Worker/ClearCache.php @@ -37,7 +37,7 @@ class ClearCache // clear old cache DI::cache()->clear(); - if (!DI::config()->get('system', 'optimize_tables')) { + if (DI::config()->get('system', 'optimize_tables')) { DBA::e("OPTIMIZE TABLE `cache`"); } @@ -66,13 +66,13 @@ class ClearCache // Delete the cached OEmbed entries that are older than three month DBA::delete('oembed', ["`created` < NOW() - INTERVAL 3 MONTH"]); - if (!DI::config()->get('system', 'optimize_tables')) { + if (DI::config()->get('system', 'optimize_tables')) { DBA::e("OPTIMIZE TABLE `oembed`"); } // Delete the cached "parse_url" entries that are older than three month DBA::delete('parsed_url', ["`created` < NOW() - INTERVAL 3 MONTH"]); - if (!DI::config()->get('system', 'optimize_tables')) { + if (DI::config()->get('system', 'optimize_tables')) { DBA::e("OPTIMIZE TABLE `parsed_url`"); } } diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index 8f5e55e226..762deadd73 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -91,7 +91,7 @@ class Cron self::checkdeletedContacts(); - if (!DI::config()->get('system', 'optimize_tables')) { + if (DI::config()->get('system', 'optimize_tables')) { self::optimizeTables(); } From 707af437e204ab6c1d2b972dcfad36889dbe9a57 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 20 Aug 2020 02:49:02 +0000 Subject: [PATCH 33/44] Fix sharing detection on reshares --- src/Model/Item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index 0050f93098..a77568c709 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -2026,13 +2026,13 @@ class Item return; } - if (Contact::getIdForURL($parent['author-link'], $item['uid'])) { + if (($author['contact-type'] != Contact::TYPE_COMMUNITY) && Contact::isSharing($parent['author-link'], $item['uid'])) { logger::info('The parent author is a user contact: quit', ['author' => $parent['author-link'], 'uid' => $item['uid']]); return; } $cid = Contact::getIdForURL($author['url'], $item['uid']); - if (empty($cid)) { + if (empty($cid) || !Contact::isSharing($cid, $item['uid'])) { logger::info('The resharer is not a user contact: quit', ['resharer' => $author['url'], 'uid' => $item['uid']]); return; } From 91a1e5df91b1f4852abf765aed7f9836dcf5fb58 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 19 Aug 2020 22:54:12 -0400 Subject: [PATCH 34/44] Add more references to theme.php --- src/Module/Theme.php | 18 ++++++++---------- view/theme/frio/config.php | 1 + view/theme/frio/php/default.php | 1 + view/theme/frio/style.php | 1 + 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/Module/Theme.php b/src/Module/Theme.php index c904f1defd..87aa8dedda 100644 --- a/src/Module/Theme.php +++ b/src/Module/Theme.php @@ -32,19 +32,17 @@ class Theme extends BaseModule { public static function rawContent(array $parameters = []) { - header("Content-Type: text/css"); + header('Content-Type: text/css'); - $a = DI::app(); + $theme = Strings::sanitizeFilePathItem($parameters['theme']); - if ($a->argc == 4) { - $theme = $a->argv[2]; - $theme = Strings::sanitizeFilePathItem($theme); + if (file_exists("view/theme/$theme/theme.php")) { + require_once "view/theme/$theme/theme.php"; + } - // set the path for later use in the theme styles - $THEMEPATH = "view/theme/$theme"; - if (file_exists("view/theme/$theme/style.php")) { - require_once("view/theme/$theme/style.php"); - } + // set the path for later use in the theme styles + if (file_exists("view/theme/$theme/style.php")) { + require_once "view/theme/$theme/style.php"; } exit(); diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index 57417af055..64809f399b 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -129,6 +129,7 @@ function theme_admin(App $a) function frio_form($arr) { require_once 'view/theme/frio/php/scheme.php'; + require_once 'view/theme/frio/theme.php'; $scheme_info = get_scheme_info($arr['scheme']); $disable = $scheme_info['overwrites']; diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index bd5ef7f3ff..7cbfdacfe7 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -27,6 +27,7 @@ use Friendica\DI; use Friendica\Model\Profile; +require_once 'view/theme/frio/theme.php'; require_once 'view/theme/frio/php/frio_boot.php'; // $minimal = is_modal(); diff --git a/view/theme/frio/style.php b/view/theme/frio/style.php index dadd045805..99e705a961 100644 --- a/view/theme/frio/style.php +++ b/view/theme/frio/style.php @@ -22,6 +22,7 @@ use Friendica\DI; use Friendica\Util\Strings; +require_once 'view/theme/frio/theme.php'; require_once 'view/theme/frio/php/PHPColors/Color.php'; $scheme = ''; From cb588eb53512625f8f47f21c1d227da8f2288da5 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 19 Aug 2020 22:58:00 -0400 Subject: [PATCH 35/44] [frio] Add scheme accent feature - Add new accented scheme light - Add first accent blue --- view/theme/frio/config.php | 30 +++++++++++++------- view/theme/frio/php/default.php | 14 ++++----- view/theme/frio/php/scheme.php | 5 +++- view/theme/frio/scheme/light.php | 20 +++++++++++++ view/theme/frio/style.php | 2 ++ view/theme/frio/templates/theme_settings.tpl | 28 +++++++++++++++++- view/theme/frio/theme.php | 1 + 7 files changed, 78 insertions(+), 22 deletions(-) create mode 100644 view/theme/frio/scheme/light.php diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index 64809f399b..b93848cfe0 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -34,6 +34,7 @@ function theme_post(App $a) if (isset($_POST['frio-settings-submit'])) { foreach ([ 'scheme', + 'scheme_accent', 'nav_bg', 'nav_icon_color', 'link_color', @@ -63,6 +64,7 @@ function theme_admin_post(App $a) if (isset($_POST['frio-settings-submit'])) { foreach ([ 'scheme', + 'scheme_accent', 'nav_bg', 'nav_icon_color', 'link_color', @@ -92,6 +94,7 @@ function theme_content(App $a) $node_scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'scheme')); $arr['scheme'] = DI::pConfig()->get(local_user(), 'frio', 'scheme', DI::pConfig()->get(local_user(), 'frio', 'schema', $node_scheme)); + $arr['scheme_accent'] = DI::pConfig()->get(local_user(), 'frio', 'scheme_accent' , DI::config()->get('frio', 'scheme_accent')); $arr['share_string'] = ''; $arr['nav_bg'] = DI::pConfig()->get(local_user(), 'frio', 'nav_bg' , DI::config()->get('frio', 'nav_bg')); $arr['nav_icon_color'] = DI::pConfig()->get(local_user(), 'frio', 'nav_icon_color' , DI::config()->get('frio', 'nav_icon_color')); @@ -112,6 +115,7 @@ function theme_admin(App $a) $arr = []; $arr['scheme'] = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')); + $arr['scheme_accent'] = DI::config()->get('frio', 'scheme_accent'); $arr['share_string'] = ''; $arr['nav_bg'] = DI::config()->get('frio', 'nav_bg'); $arr['nav_icon_color'] = DI::config()->get('frio', 'nav_icon_color'); @@ -134,16 +138,16 @@ function frio_form($arr) $scheme_info = get_scheme_info($arr['scheme']); $disable = $scheme_info['overwrites']; - $scheme_choices = []; - $scheme_choices['---'] = DI::l10n()->t('Custom'); - $files = glob('view/theme/frio/scheme/*.php'); - if ($files) { - foreach ($files as $file) { - $f = basename($file, '.php'); - if ($f != 'default') { - $scheme_name = ucfirst($f); - $scheme_choices[$f] = $scheme_name; - } + $schemes = [ + 'light' => DI::l10n()->t('Light (Accented)'), + ]; + + $legacy_schemes = []; + foreach (glob('view/theme/frio/scheme/*.php') ?: [] as $file) { + $scheme = basename($file, '.php'); + if (!in_array($scheme, ['default', 'light', 'dark', 'black'])) { + $scheme_name = ucfirst($scheme); + $legacy_schemes[$scheme] = $scheme_name; } } @@ -153,7 +157,11 @@ function frio_form($arr) $ctx = [ '$submit' => DI::l10n()->t('Submit'), '$title' => DI::l10n()->t('Theme settings'), - '$scheme' => ['frio_scheme', DI::l10n()->t('Select color scheme'), $arr['scheme'], '', $scheme_choices], + '$custom' => DI::l10n()->t('Custom'), + '$legacy' => DI::l10n()->t('Legacy'), + '$accented' => DI::l10n()->t('Accented'), + '$scheme' => ['frio_scheme', DI::l10n()->t('Select color scheme'), $arr['scheme'], $schemes, $legacy_schemes], + '$scheme_accent' => !$scheme_info['accented'] ? '' : ['frio_scheme_accent', DI::l10n()->t('Select scheme accent'), $arr['scheme_accent'], ['blue' => DI::l10n()->t('Blue'), 'red' => DI::l10n()->t('Red'), 'purple' => DI::l10n()->t('Purple'), 'green' => DI::l10n()->t('Green'), 'pink' => DI::l10n()->t('Pink')]], '$share_string' => $arr['scheme'] != '---' ? '' : ['frio_share_string', DI::l10n()->t('Copy or paste schemestring'), $arr['share_string'], DI::l10n()->t('You can copy this string to share your theme with others. Pasting here applies the schemestring'), false, false], '$nav_bg' => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', DI::l10n()->t('Navigation bar background color'), $arr['nav_bg'], '', false], '$nav_icon_color' => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', DI::l10n()->t('Navigation bar icon color '), $arr['nav_icon_color'], '', false], diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index 7cbfdacfe7..ca661c2830 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -63,19 +63,15 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; if ($scheme && is_string($scheme) && $scheme != '---') { if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; + $scheme_accent = + DI::pConfig()->get($uid, 'frio', 'scheme_accent') ?: + DI::config()->get('frio', 'scheme_accent') ?: FRIO_SCHEME_ACCENT_BLUE; + require_once $schemefile; } - } else { - $nav_bg = DI::pConfig()->get($uid, 'frio', 'nav_bg'); } - if (empty($nav_bg)) { - $nav_bg = DI::config()->get('frio', 'nav_bg'); - } - - if (empty($nav_bg) || !is_string($nav_bg)) { - $nav_bg = "#708fa0"; - } + $nav_bg = $nav_bg ?: DI::pConfig()->get($uid, 'frio', 'nav_bg', DI::config()->get('frio', 'nav_bg', '#708fa0')); echo ''; ?> diff --git a/view/theme/frio/php/scheme.php b/view/theme/frio/php/scheme.php index 42fc21ab8b..ced19327e8 100644 --- a/view/theme/frio/php/scheme.php +++ b/view/theme/frio/php/scheme.php @@ -52,7 +52,8 @@ function get_scheme_info($scheme) 'description' => '', 'author' => [], 'version' => '', - 'overwrites' => [] + 'overwrites' => [], + 'accented' => false, ]; if (!is_file($themepath . 'scheme/' . $scheme . '.php')) return $info; @@ -84,6 +85,8 @@ function get_scheme_info($scheme) foreach ($theme_settings as $key => $value) { $info['overwrites'][$value] = true; } + } elseif ($k == 'accented') { + $info['accented'] = $v && $v != 'false' && $v != 'no'; } else { if (array_key_exists($k, $info)) { $info[$k] = $v; diff --git a/view/theme/frio/scheme/light.php b/view/theme/frio/scheme/light.php new file mode 100644 index 0000000000..767abb244d --- /dev/null +++ b/view/theme/frio/scheme/light.php @@ -0,0 +1,20 @@ + + * Overwrites: nav_bg, nav_icon_color, link_color, background_color, login_bg_color, contentbg_transp + * Accented: yes + */ + +require_once 'view/theme/frio/php/PHPColors/Color.php'; + +$accentColor = new Color($scheme_accent); + +$nav_bg = '#' . $accentColor->darken(10); +$menu_background_hover_color = '#' . $accentColor->darken(5); +$nav_icon_color = "#fff"; +$link_color = '#' . $accentColor->getHex(); +$background_color = "#ededed"; +$login_bg_color = "#ededed"; +$contentbg_transp = 100; diff --git a/view/theme/frio/style.php b/view/theme/frio/style.php index 99e705a961..b70f5657ab 100644 --- a/view/theme/frio/style.php +++ b/view/theme/frio/style.php @@ -34,6 +34,7 @@ DI::config()->load('frio'); // Default to hard-coded values for empty settings $scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')); +$scheme_accent = DI::config()->get('frio', 'scheme_accent') ?: FRIO_SCHEME_ACCENT_BLUE; $nav_bg = DI::config()->get('frio', 'nav_bg') ?: '#708fa0'; $nav_icon_color = DI::config()->get('frio', 'nav_icon_color') ?: '#ffffff'; $link_color = DI::config()->get('frio', 'link_color') ?: '#6fdbe8'; @@ -57,6 +58,7 @@ if ($uid) { // Only override display settings that have actually been set $scheme = DI::pConfig()->get($uid, 'frio', 'scheme', DI::pConfig()->get($uid, 'frio', 'schema')) ?: $scheme; + $scheme_accent = DI::pConfig()->get($uid, 'frio', 'scheme_accent') ?: $scheme_accent; $nav_bg = DI::pConfig()->get($uid, 'frio', 'nav_bg') ?: $nav_bg; $nav_icon_color = DI::pConfig()->get($uid, 'frio', 'nav_icon_color') ?: $nav_icon_color; $link_color = DI::pConfig()->get($uid, 'frio', 'link_color') ?: $link_color; diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index 5eee8346d8..564f90fde6 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -1,7 +1,33 @@ -{{include file="field_select.tpl" field=$scheme}} +
+ + +
+ +{{if $scheme_accent}} +
+

+ +
+{{/if}} {{if $share_string}}{{include file="field_input.tpl" field=$share_string}}{{/if}} {{if $nav_bg}}{{include file="field_colorinput.tpl" field=$nav_bg}}{{/if}} diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index e555f7f203..8c40dadd81 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -21,6 +21,7 @@ use Friendica\Model\Contact; use Friendica\Module; use Friendica\Util\Strings; +const FRIO_SCHEME_ACCENT_BLUE = '#1e87c2'; function frio_init(App $a) { global $frio; From e4a1ace3ad765493a5c31645c13a95ab9140dff5 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 19 Aug 2020 22:58:21 -0400 Subject: [PATCH 36/44] [frio] Add more color accents --- view/theme/frio/templates/theme_settings.tpl | 20 ++++++++++++++++++++ view/theme/frio/theme.php | 5 +++++ 2 files changed, 25 insertions(+) diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index 564f90fde6..505aa55c22 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -26,6 +26,26 @@   {{$scheme_accent.3.blue}} + + + +
{{/if}} diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index 8c40dadd81..4c37e42e73 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -22,6 +22,11 @@ use Friendica\Module; use Friendica\Util\Strings; const FRIO_SCHEME_ACCENT_BLUE = '#1e87c2'; +const FRIO_SCHEME_ACCENT_RED = '#b50404'; +const FRIO_SCHEME_ACCENT_PURPLE = '#a54bad'; +const FRIO_SCHEME_ACCENT_GREEN = '#218f39'; +const FRIO_SCHEME_ACCENT_PINK = '#d900a9'; + function frio_init(App $a) { global $frio; From 907222da53ae598a79b06a25ec6b414b0cf2a3a9 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 19 Aug 2020 22:58:47 -0400 Subject: [PATCH 37/44] [frio] Add dark accented scheme --- view/theme/frio/config.php | 1 + view/theme/frio/scheme/dark.css | 320 ++++++++++++++++++++++++++++++++ view/theme/frio/scheme/dark.php | 34 ++++ 3 files changed, 355 insertions(+) create mode 100644 view/theme/frio/scheme/dark.css create mode 100644 view/theme/frio/scheme/dark.php diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index b93848cfe0..5b3c77a50c 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -140,6 +140,7 @@ function frio_form($arr) $schemes = [ 'light' => DI::l10n()->t('Light (Accented)'), + 'dark' => DI::l10n()->t('Dark (Accented)'), ]; $legacy_schemes = []; diff --git a/view/theme/frio/scheme/dark.css b/view/theme/frio/scheme/dark.css new file mode 100644 index 0000000000..308e318878 --- /dev/null +++ b/view/theme/frio/scheme/dark.css @@ -0,0 +1,320 @@ +/* + Licence : AGPL + Created on : 11.08.2020 + Author : Hypolite Petovan +*/ +#topbar-first { + background-color: $background_color; +} +#topbar-first .dropdown.account > a, +#topbar-first .dropdown.account.open > a, +#topbar-first .dropdown.account > button, +#topbar-first .dropdown.account.open > button { + background: none; +} + +#topbar-first #nav-notifications-menu li.notif-entry:hover { + background-color: $nav_bg; +} + + +#topbar-second { + background-color: $nav_bg; + border-color: $link_color; +} +#topbar-second ul.tabs li { + border_color: $link_color; +} + +.dropdown-menu, .account .dropdown-menu { + background-color: $background_color; +} +.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover { + color: $link_color; +} +.account .dropdown-menu li { + border-color: $background_color; +} + +.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover { + background-image: none; + background-color: rgba(232, 232, 232, $contentbg_transp); +} + +.breadcrumb, +.panel-footer, +.list-group-item { + background-color: rgba(245, 245, 245, $contentbg_transp); +} +.panel-group .panel-footer { + border-top: 1px solid $nav_bg; +} + +.well { + background-image: none; + background-color: $nav_bg; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; +} + +input[type=text], +input[type=submit], +button[type=submit]:not(.btn), +select, +textarea, +.form-control { + border: none; + background-color: $nav_bg; + color: $font_color; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; +} +.form-control[disabled], +.form-control[readonly], +.ieldset[disabled] .form-control { + background-color: $background_color; + color: $font_color_darker; +} + +.nav-tabs>li.active>a, +.nav-tabs>li.active>a:focus, +.nav-tabs>li.active>a:hover, +main .nav-tabs>li.active>a, +main .nav-tabs>li.active>a:focus, +main .nav-tabs>li.active>a:hover { + background-color: $nav_bg; + color: $font_color_darker; +} + +.nav > li > a:focus, +.nav > li > a:hover { + background-color: rgba(238, 238, 238, $contentbg_transp); +} + +.modal-content { + background-color: $background_color; +} + +.pagination > .active > a, +.pagination > .active > a:focus, +.pagination > .active > a:hover, +.pagination > .active > span, +.pagination > .active > span:focus, +.pagination > .active > span:hover { + border-color: $link_color; + background-color: $nav_bg; + color: $font_color; +} + +.pagination>li>a:hover, +.pagination>li>span:hover { + background-color: $nav_bg; +} + +#jotOpen { + border: none; + background-color: $background_color; +} + +.close { + color: $font_color; + text-shadow: 0 1px 0 $nav_bg; +} +.close:focus, +.close:hover { + color: $link_color; +} + +.input-group-addon { + color: $font_color; + background-color: $nav_bg; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; + border: none; +} + +#topbar-first #nav-notifications-menu li.notif-entry, +.panel-footer, +.panel-group .panel-heading + .panel-collapse > .list-group, +.panel-group .panel-heading + .panel-collapse > .panel-body, +.wall-item-container, +.comment-fake-form { + border-color: $nav_bg; +} + +.wall-item-comment-wrapper { + border: 0; +} + +.badge { + background-color: $nav_bg; +} + +.btn { + box-shadow: 0 0 2px #dadada; + -webkit-box-shadow: 0 0 2px #dadada; + background: none; + color: $font_color_darker; +} +.btn.focus, +.btn:focus, +.btn:hover { + color: $font_color; +} +.btn-default:focus, +.btn-default:hover { + background: $nav_bg; +} +.btn-default.active, +.btn-default:active { + background-color: $nav_bg; + color: $font_color; +} + +button[type=submit]:not(.btn), +input[type=submit], +.btn.btn-primary { + border: 1px solid $link_color; +} + +.label-primary { + background-color: $background_color; + color: $link_color; +} + +.panel-default>.panel-heading { + background: none; + background-color: $nav_bg; + color: $font_color; +} + +.btn-success, +.label-success, +.alert-success, +.panel-success > .panel-heading { + background: rgba(60, 118, 61, 0.4); + color: #dff0d8; +} + +.fc .fc-event, +.btn-info, +.label-info, +.alert-info, +.panel-info > .panel-heading, +.table > tbody > tr.info > td, +.table > tbody > tr.info > th, +.table > tbody > tr > td.info, +.table > tbody > tr > th.info, +.table > tfoot > tr.info > td, +.table > tfoot > tr.info > th, +.table > tfoot > tr > td.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > thead > tr.info > th, +.table > thead > tr > td.info, +.table > thead > tr > th.info { + background: rgba(49, 112, 143, 0.4); + color: #d9edf7; +} + +.btn-warning, +.label-warning, +.alert-warning, +.panel-warning > .panel-heading { + background: rgba(139, 109, 59, 0.4); + color: #fcf8e3; +} + +.btn-danger, +.label-danger, +.alert-danger, +.panel-danger > .panel-heading { + background: rgba(169, 68, 66, 0.4); + color: #f2dede; +} + +.wall-item-actions a, +.wall-item-actions button { + color: $link_color; +} + +@media (min-width: 768px) { + .wall-item-container .wall-item-links, + .wall-item-container .wall-item-actions button, + .wall-item-container .body-attach > a { + opacity: 0.3; + -webkit-transition: all 0.25s ease-in-out; + -moz-transition: all 0.25s ease-in-out; + -o-transition: all 0.25s ease-in-out; + -ms-transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; + color: $font_color; + } + .wall-item-container:hover .wall-item-links, + .wall-item-container:hover .wall-item-actions button, + .wall-item-container:hover .body-attach > a { + opacity: 1; + -webkit-transition: all 0.25s ease-in-out; + -moz-transition: all 0.25s ease-in-out; + -o-transition: all 0.25s ease-in-out; + -ms-transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; + color: $link_color; + } + .wall-item-container .wall-item-body .body-attach > a:hover { + opacity: 1; + } +} + +.fc-unthemed td.fc-today { + background-color: $nav_bg; +} + +.nav .open > .btn-link { + background-color: $nav_bg; +} + +.hovercard { + box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5); + -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5); +} +.hovercard, +.hover-card-footer { + background-color: $nav_bg; +} +.hovercard.top > .arrow:after { + border-top-color: $nav_bg; +} +.hovercard.right > .arrow:after { + border-right-color: $nav_bg; +} +.hovercard.bottom > .arrow:after { + border-bottom-color: $nav_bg; +} +.hovercard.left > .arrow:after { + border-left-color: $nav_bg; +} + +.friendica-tagsinput .tag { + color: inherit; +} + + +code { + color: $font_color; + background-color: rgba(255, 255, 255, .2); +} +pre { + color: $font_color_darker; + background-color: rgba(255, 255, 255, .05); +} + +legend { + color: $font_color; +} + +.table-striped>tbody>tr:nth-of-type(odd), +.table-hover > tbody > tr:hover, +.adminpage .table-hover > tbody > tr:hover + tr.details { + background-color: $nav_bg; +} diff --git a/view/theme/frio/scheme/dark.php b/view/theme/frio/scheme/dark.php new file mode 100644 index 0000000000..507d9552b0 --- /dev/null +++ b/view/theme/frio/scheme/dark.php @@ -0,0 +1,34 @@ + + * Overwrites: nav_bg, nav_icon_color, link_color, background_color, contentbg_transp + * Accented: yes + */ + +require_once 'view/theme/frio/php/PHPColors/Color.php'; + +$accentColor = new Color($scheme_accent); + +$menu_background_hover_color = '#' . $accentColor->darken(20); +switch ($scheme_accent) { + default: + $link_color = '#' . $accentColor->lighten(25); +} +$nav_icon_color = $scheme_accent; +$nav_icon_hover_color = '#' . $accentColor->darken(20); +switch ($scheme_accent) { + case FRIO_SCHEME_ACCENT_GREEN: + case FRIO_SCHEME_ACCENT_RED: + $nav_bg = '#' . $accentColor->darken(25); + $background_color = '#' . $accentColor->darken(27); + break; + default: + $nav_bg = '#' . $accentColor->darken(30); + $background_color = '#' . $accentColor->darken(33); +} + +$contentbg_transp = 4; +$font_color = '#e4e4e4'; +$font_color_darker = '#dcdcdc'; From 062063c5e579429d1154c3d40cdfef1d61de3305 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 19 Aug 2020 22:58:59 -0400 Subject: [PATCH 38/44] [frio] Add black accented scheme --- view/theme/frio/config.php | 1 + view/theme/frio/scheme/black.css | 347 +++++++++++++++++++++++++++++++ view/theme/frio/scheme/black.php | 21 ++ 3 files changed, 369 insertions(+) create mode 100644 view/theme/frio/scheme/black.css create mode 100644 view/theme/frio/scheme/black.php diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index 5b3c77a50c..3b9233e0a4 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -141,6 +141,7 @@ function frio_form($arr) $schemes = [ 'light' => DI::l10n()->t('Light (Accented)'), 'dark' => DI::l10n()->t('Dark (Accented)'), + 'black' => DI::l10n()->t('Black (Accented)'), ]; $legacy_schemes = []; diff --git a/view/theme/frio/scheme/black.css b/view/theme/frio/scheme/black.css new file mode 100644 index 0000000000..982de93e8b --- /dev/null +++ b/view/theme/frio/scheme/black.css @@ -0,0 +1,347 @@ +/* + Licence : AGPL + Created on : 11.08.2020 + Author : Hypolite Petovan +*/ +#topbar-first { + background-color: $background_color; +} +#topbar-first .dropdown.account > a, +#topbar-first .dropdown.account.open > a, +#topbar-first .dropdown.account > button, +#topbar-first .dropdown.account.open > button { + background: none; +} + +#topbar-first #nav-notifications-menu li.notif-entry:hover { + background-color: $nav_bg; +} + + +#topbar-second { + background-color: $nav_bg; + border-color: $link_color; +} +#topbar-second ul.tabs li { + border_color: $link_color; +} + +.dropdown-menu, .account .dropdown-menu { + background-color: $background_color; +} +.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover { + color: $link_color; +} +.account .dropdown-menu li { + border-color: $background_color; +} + +.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover { + background-image: none; + background-color: rgba(232, 232, 232, $contentbg_transp); +} + +.breadcrumb, +.panel-footer, +.list-group-item { + background-color: rgba(245, 245, 245, $contentbg_transp); +} +.panel-group .panel-footer { + border-top: 1px solid $nav_bg; +} + +.well { + background-image: none; + background-color: $nav_bg; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; + border-color: #a0a0a0; +} + +input[type=text], +input[type=submit], +button[type=submit]:not(.btn), +select, +textarea, +.form-control { + border: none; + background-color: $nav_bg; + color: $font_color; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; +} +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { + background-color: $background_color; + color: $font_color_darker; +} + +.nav-tabs>li.active>a, +.nav-tabs>li.active>a:focus, +.nav-tabs>li.active>a:hover, +main .nav-tabs>li.active>a, +main .nav-tabs>li.active>a:focus, +main .nav-tabs>li.active>a:hover { + background-color: $nav_bg; + color: $font_color_darker; +} + +.nav > li > a:focus, .nav > li > a:hover { + background-color: rgba(238, 238, 238, $contentbg_transp); +} + +.modal-content { + background-color: $background_color; +} + +.pager li > a, +.pager li > span { + border-color: #a0a0a0; +} + +.pager li > a:focus, +.pager li > a:hover { + background-color: #303030; +} + +.pagination > .active > a, +.pagination > .active > a:focus, +.pagination > .active > a:hover, +.pagination > .active > span, +.pagination > .active > span:focus, +.pagination > .active > span:hover { + border-color: $link_color; + background-color: $nav_bg; + color: $font_color; +} + +.pagination>li>a:hover, .pagination>li>span:hover { + background-color: $nav_bg; +} + +#jotOpen { + border: none; + background-color: $background_color; +} + +.close { + color: $font_color; + text-shadow: 0 1px 0 $nav_bg; +} +.close:focus, .close:hover { + color: $link_color; +} + +.input-group-addon { + color: $font_color; + background-color: $nav_bg; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; + border: none; +} + +#topbar-first #nav-notifications-menu li.notif-entry, +.panel-footer, +.panel-group .panel-heading + .panel-collapse > .list-group, +.panel-group .panel-heading + .panel-collapse > .panel-body, +.wall-item-container, +.comment-fake-form { + border-color: $nav_bg; +} + +.wall-item-comment-wrapper { + border: 0; +} + +.badge { + background-color: $nav_bg; +} + +.btn { + box-shadow: 0 0 2px #dadada; + -webkit-box-shadow: 0 0 2px #dadada; + background: none; + color: $font_color_darker; +} +.btn.focus, .btn:focus, .btn:hover { + color: $font_color; +} +.btn-default:focus, .btn-default:hover { + background: $nav_bg; +} +.btn-default.active, .btn-default:active { + background-color: $nav_bg; + color: $font_color; +} + +button[type=submit]:not(.btn), +input[type=submit], +.btn.btn-primary { + border: 1px solid $link_color; +} + +.label-primary { + background-color: $background_color; + color: $link_color; +} + +.panel-default>.panel-heading { + background: none; + background-color: $nav_bg; + color: $font_color; +} + +.btn-success, +.label-success, +.alert-success, +.panel-success > .panel-heading { + background: rgba(60, 118, 61, 0.4); + color: #dff0d8; +} + +.fc .fc-event, +.btn-info, +.label-info, +.alert-info, +.panel-info > .panel-heading, +.table > tbody > tr.info > td, +.table > tbody > tr.info > th, +.table > tbody > tr > td.info, +.table > tbody > tr > th.info, +.table > tfoot > tr.info > td, +.table > tfoot > tr.info > th, +.table > tfoot > tr > td.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > thead > tr.info > th, +.table > thead > tr > td.info, +.table > thead > tr > th.info { + background: rgba(49, 112, 143, 0.4); + color: #d9edf7; +} + +.btn-warning, +.label-warning, +.alert-warning, +.panel-warning > .panel-heading { + background: rgba(139, 109, 59, 0.4); + color: #fcf8e3; +} + +.btn-danger, +.label-danger, +.alert-danger, +.panel-danger > .panel-heading { + background: rgba(169, 68, 66, 0.4); + color: #f2dede; +} + +.wall-item-actions a, .wall-item-actions button { + color: $link_color; +} + +@media (min-width: 768px) { + .wall-item-container .wall-item-links, + .wall-item-container .wall-item-actions button, + .wall-item-container .body-attach > a { + opacity: 0.3; + -webkit-transition: all 0.25s ease-in-out; + -moz-transition: all 0.25s ease-in-out; + -o-transition: all 0.25s ease-in-out; + -ms-transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; + color: $font_color; + } + .wall-item-container:hover .wall-item-links, + .wall-item-container:hover .wall-item-actions button, + .wall-item-container:hover .body-attach > a { + opacity: 1; + -webkit-transition: all 0.25s ease-in-out; + -moz-transition: all 0.25s ease-in-out; + -o-transition: all 0.25s ease-in-out; + -ms-transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; + color: $link_color; + } + .wall-item-container .wall-item-body .body-attach > a:hover { + opacity: 1; + } +} + +.fc-unthemed td.fc-today { + background-color: $nav_bg; +} + +.nav .open > .btn-link { + background-color: $nav_bg; +} + +.hovercard { + box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5); + -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5); +} +.hovercard, .hover-card-footer { + background-color: $nav_bg; +} +.hovercard.top > .arrow:after { + border-top-color: $nav_bg; +} +.hovercard.right > .arrow:after { + border-right-color: $nav_bg; +} +.hovercard.bottom > .arrow:after { + border-bottom-color: $nav_bg; +} +.hovercard.left > .arrow:after { + border-left-color: $nav_bg; +} + +.friendica-tagsinput .tag { + color: inherit; +} + + +code { + color: $font_color; + background-color: rgba(255, 255, 255, .2); +} +pre { + color: $font_color_darker; + background-color: rgba(255, 255, 255, .05); +} + +legend { + color: $font_color; +} + +.table-striped>tbody>tr:nth-of-type(odd), +.table-hover > tbody > tr:hover, +.adminpage .table-hover > tbody > tr:hover + tr.details { + background-color: $nav_bg; +} + +section > .generic-page-wrapper, +.videos-content-wrapper, +.suggest-content-wrapper, +.help-content-wrapper, +.match-content-wrapper, +.dirfind-content-wrapper, +.delegation-content-wrapper, +.notes-content-wrapper, +.message-content-wrapper, +.apps-content-wrapper, #adminpage, +.delegate-content-wrapper, +.uexport-content-wrapper, +.dfrn_request-content-wrapper, +.friendica-content-wrapper, +.credits-content-wrapper, +.nogroup-content-wrapper, +.profperm-content-wrapper, +.invite-content-wrapper, +.tos-content-wrapper, +.fsuggest-content-wrapper, +.panel, +aside .widget, +.nav-container .widget{ + box-shadow: 0 0 3px $link_color; + -webkit-box-shadow: 0 0 3px $link_color; +} diff --git a/view/theme/frio/scheme/black.php b/view/theme/frio/scheme/black.php new file mode 100644 index 0000000000..797ba78c98 --- /dev/null +++ b/view/theme/frio/scheme/black.php @@ -0,0 +1,21 @@ + + * Overwrites: nav_bg, nav_icon_color, link_color, background_color, contentbg_transp + * Accented: yes + */ + +require_once 'view/theme/frio/php/PHPColors/Color.php'; + +$accentColor = new Color($scheme_accent); + +$menu_background_hover_color = '#' . $accentColor->darken(45); +$nav_bg = '#202020'; +$link_color = '#' . $accentColor->lighten(10); +$nav_icon_color = '#d4d4d4'; +$background_color = '#000000'; +$contentbg_transp = '0'; +$font_color = '#cccccc'; +$font_color_darker = '#acacac'; From 3a1fef43b237a4fcb75d7880aa81808a66c56f2d Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 20 Aug 2020 08:37:56 +0000 Subject: [PATCH 39/44] Fix: Feeds and mail accounts hadn't been fetched reliably --- src/Worker/Cron.php | 11 +++++++---- src/Worker/OnePoll.php | 5 ++++- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index 762deadd73..8253bfea36 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -212,8 +212,6 @@ class Cron * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ private static function pollContacts() { - $min_poll_interval = DI::config()->get('system', 'min_poll_interval'); - Addon::reload(); $sql = "SELECT `contact`.`id`, `contact`.`nick`, `contact`.`name`, `contact`.`network`, `contact`.`archive`, @@ -278,12 +276,17 @@ class Cron /* * Based on $contact['priority'], should we poll this site now? Or later? */ - $t = $contact['last-update']; + + $min_poll_interval = DI::config()->get('system', 'min_poll_interval'); $poll_intervals = [$min_poll_interval . ' minute', '15 minute', '30 minute', '1 hour', '2 hour', '3 hour', '6 hour', '12 hour' ,'1 day', '1 week', '1 month']; - if (empty($poll_intervals[$rating]) || (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . ' + ' . $poll_intervals[$rating]))) { + $now = DateTimeFormat::utcNow(); + $next_update = DateTimeFormat::utc($contact['last-update'] . ' + ' . $poll_intervals[$rating]); + + if (empty($poll_intervals[$rating]) || ($now < $next_update)) { + Logger::debug('No update', ['cid' => $contact['id'], 'rating' => $rating, 'next' => $next_update, 'now' => $now]); continue; } diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index 7d69517319..5fc65b211a 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -111,7 +111,7 @@ class OnePoll DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]); return; } - + // We don't poll AP contacts by now if ($protocol === Protocol::ACTIVITYPUB) { Logger::log("Don't poll AP contact"); @@ -708,6 +708,9 @@ class OnePoll Logger::log("Mail: no mails for ".$mailconf['user']); } + self::updateContact($contact, ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]); + Contact::unmarkForArchival($contact); + Logger::log("Mail: closing connection for ".$mailconf['user']); imap_close($mbox); } From 7c16a25fc9e2b9490da9120ed4d58e186a1e3917 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Aug 2020 09:21:44 -0400 Subject: [PATCH 40/44] Account for $nav_bg not being set in frio/php/default - Address https://github.com/friendica/friendica/issues/8877#issuecomment-677319560 --- view/theme/frio/php/default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index ca661c2830..949417ccf2 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -71,7 +71,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; } } - $nav_bg = $nav_bg ?: DI::pConfig()->get($uid, 'frio', 'nav_bg', DI::config()->get('frio', 'nav_bg', '#708fa0')); + $nav_bg = $nav_bg ?? DI::pConfig()->get($uid, 'frio', 'nav_bg', DI::config()->get('frio', 'nav_bg', '#708fa0')); echo ''; ?> From ac90387d82a3484a0c120a3a986084fce6699e76 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Aug 2020 09:23:00 -0400 Subject: [PATCH 41/44] Fix wrong contact array key reference in Search\Acl - Addresses https://github.com/friendica/friendica/issues/8877#issuecomment-672189155 --- src/Module/Search/Acl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Search/Acl.php b/src/Module/Search/Acl.php index eb6dc6f859..e8b6f357d9 100644 --- a/src/Module/Search/Acl.php +++ b/src/Module/Search/Acl.php @@ -350,7 +350,7 @@ class Acl extends BaseModule 'type' => 'c', 'photo' => Contact::getMicro($contact), 'name' => htmlspecialchars($contact['name']), - 'id' => intval($contact['cid']), + 'id' => intval($contact['id']), 'network' => $contact['network'], 'link' => $contact['url'], 'nick' => htmlentities(($contact['nick'] ?? '') ?: $contact['addr']), From 40d12b85c4913820deed517ad78a54d7ed1899f8 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Aug 2020 09:30:50 -0400 Subject: [PATCH 42/44] Loop on expected fields instead of existing fields in Settings\UserExport - We don't delete fields, so there can be more fields in the database than in the DB structure - Address https://github.com/friendica/friendica/issues/8877#issuecomment-663875895 --- src/Module/Settings/UserExport.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Module/Settings/UserExport.php b/src/Module/Settings/UserExport.php index 0eaa72ffe6..132505371e 100644 --- a/src/Module/Settings/UserExport.php +++ b/src/Module/Settings/UserExport.php @@ -114,14 +114,11 @@ class UserExport extends BaseSettings $rows = DBA::p($query); while ($row = DBA::fetch($rows)) { $p = []; - foreach ($row as $k => $v) { - switch ($dbStructure[$table]['fields'][$k]['type']) { - case 'datetime': - $p[$k] = $v ?? DBA::NULL_DATETIME; - break; - default: - $p[$k] = $v; - break; + foreach ($dbStructure[$table]['fields'] as $column => $field) { + if ($field['type'] == 'datetime') { + $p[$column] = $v ?? DBA::NULL_DATETIME; + } else { + $p[$column] = $v; } } $result[] = $p; From b4d59c25a88c2d8d2769b947d9938c0f25d7e605 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Aug 2020 09:32:20 -0400 Subject: [PATCH 43/44] Return early if $a->user is absent in BaseModule - Address https://github.com/friendica/friendica/issues/8877#issuecomment-660266026 --- src/BaseModule.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/BaseModule.php b/src/BaseModule.php index ce7774bfd0..a9f67f2375 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -140,6 +140,10 @@ abstract class BaseModule return false; } + if (empty($a->user)) { + return false; + } + $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename); return ($sec_hash == $x[1]); From 78f6ea94bb355b260c935e17fd2f5b2e84ccbcb7 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Aug 2020 09:34:37 -0400 Subject: [PATCH 44/44] Check for parent existence in Protocol\DFRN - Address https://github.com/friendica/friendica/issues/8877#issuecomment-660263687 --- src/Protocol/DFRN.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 064f1f3aca..b09c1bea0f 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -963,10 +963,12 @@ class DFRN if ($item['gravity'] != GRAVITY_PARENT) { $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']); $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]); - $attributes = ["ref" => $parent_item, "type" => "text/html", - "href" => $parent['plink'], - "dfrn:diaspora_guid" => $parent['guid']]; - XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes); + if (DBA::isResult($parent)) { + $attributes = ["ref" => $parent_item, "type" => "text/html", + "href" => $parent['plink'], + "dfrn:diaspora_guid" => $parent['guid']]; + XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes); + } } // Add conversation data. This is used for OStatus