diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000000..257fe23d7d --- /dev/null +++ b/.drone.yml @@ -0,0 +1,63 @@ +kind: pipeline +type: docker +name: Check messages.po + +steps: + - name: Run default Xgettext + image: friendicaci/transifex + commands: + - ./bin/run_xgettext.sh + + - name: Check default + image: friendicaci/transifex + commands: + - /check-messages.sh +--- +kind: pipeline +type: docker +name: php7.3-lint + +steps: + - name: Test + image: php:7.3 + commands: + - ./bin/composer.phar run lint +--- +kind: pipeline +type: docker +name: php7.4-lint + +steps: + - name: Test + image: php:7.4 + commands: + - ./bin/composer.phar run lint +--- +kind: pipeline +type: docker +name: php8.0-lint + +steps: + - name: Test + image: php:8.0 + commands: + - ./bin/composer.phar run lint +--- +kind: pipeline +type: docker +name: php-cs check + +trigger: + event: + - pull_request + +steps: + - name: Install dependencies + image: composer + commands: + - ./bin/composer.phar run cs:install + - name: Run coding standards check + image: friendicaci/php-cs + commands: + - export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)" + - /check-php-cs.sh diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 72f53c901f..0000000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Lint -on: pull_request - -jobs: - php-linters: - name: php${{ matrix.php-versions }} lint - runs-on: ubuntu-latest - strategy: - matrix: - php-versions: ['7.3', '7.4', '8.0'] - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up php${{ matrix.php-versions }} - uses: shivammathur/setup-php@master - with: - php-version: ${{ matrix.php-versions }} - coverage: none - - name: Lint - run: bin/composer.phar run lint - - php-cs-fixer: - name: php-cs check - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Get changed files - id: changes - uses: jitterbit/get-changed-files@v1 - - name: Set up php - uses: shivammathur/setup-php@master - with: - php-version: 7.2 - coverage: none - - name: Install dependencies - run: bin/composer.phar run cs:install - - name: Run coding standards check - run: | - if ! echo "${{ steps.changes.outputs.added }}" | grep -qE "^(\\.php_cs(\\.dist)?|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${{ steps.changes.outputs.added }}"); else EXTRA_ARGS=''; fi - bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --diff --diff-format=udiff --dry-run --stop-on-violation --using-cache=no ${EXTRA_ARGS} - shell: bash \ No newline at end of file diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml new file mode 100644 index 0000000000..9a7c544d9b --- /dev/null +++ b/.github/workflows/releases.yml @@ -0,0 +1,67 @@ +name: Generate release packages +on: + release: + types: [published] +jobs: + release: + name: Create release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup PHP, with composer and extensions + uses: shivammathur/setup-php@v2 + with: + tools: pecl, composer:v1 + + - name: Retrieve version + id: release + run: echo "::set-output name=version::$(cat VERSION)" + + - name: Validate composer.json and composer.lock + run: composer validate + + - name: Get composer cache directory + id: composercache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + + - name: Cache dependencies + uses: actions/cache@v2 + with: + path: ${{ steps.composercache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install dependencies + run: composer install --no-dev --optimize-autoloader + + - name: Create artifact + id: artifact + run: | + ARTIFACT="friendica-full-${{ steps.release.outputs.version }}.tar.gz" + echo "::set-output name=name::${ARTIFACT}" + mkdir build + tar -cvjf build/${ARTIFACT} -T mods/release-list.txt + + - name: SHA256 + id: sha256 + run: | + cd build + ARTIFACT=${{ steps.artifact.outputs.name }} + sha256sum "${ARTIFACT}" > "${ARTIFACT}.sha256" + + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: friendica + path: build/ + + - name: Upload to release + uses: softprops/action-gh-release@v1 + with: + files: | + build/${{ steps.artifact.outputs.name }}.tar.gz + build/${{ steps.artifact.outputs.name }}.tar.gz.sha256 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml deleted file mode 100644 index b56ae395f2..0000000000 --- a/.github/workflows/transifex.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Transifex -on: [push, pull_request] - -jobs: - messages: - name: Check messages.po changes - runs-on: ubuntu-latest - steps: - - name: Install gettext - run: sudo apt-get install gettext - - - name: Checkout - uses: actions/checkout@v2 - - - name: Run Xgettext - run: ./bin/run_xgettext.sh - - - name: Check if messages.po needs an update - run: | - echo "::group::Check messages.po" - # Skip first 4 lines in possible diff, because they're header - # Skip all lines of the git diff starting with "@@" or comments or starting "POT-Creation-Date" - if [[ $(git diff -U0 ./view/lang/C/messages.po | awk '!/@@|-"POT-Creation-Date|+"POT-Creation-Date|-#|+#/{print }' | wc -l) > 4 ]]; then - echo "::error file=messages.po::messages.po is out of date" - exit 1 - else - echo "Nothing to update" - fi - echo "::endgroup::" - shell: bash diff --git a/bin/run_xgettext.sh b/bin/run_xgettext.sh index a2a7408dd1..5392e0e153 100755 --- a/bin/run_xgettext.sh +++ b/bin/run_xgettext.sh @@ -61,7 +61,7 @@ KEYWORDS="-k -kt -ktt:1,2" echo "Extract strings to $OUTFILE.." rm "$OUTFILE"; touch "$OUTFILE" -find_result=$(find "$FINDSTARTDIR" $FINDOPTS -name "*.php" -type f | sort) +find_result=$(find "$FINDSTARTDIR" $FINDOPTS -name "*.php" -type f | LC_ALL=C sort --stable) total_files=$(wc -l <<< "${find_result}") diff --git a/composer.lock b/composer.lock index 7fa535c5e9..39419ca4e6 100644 --- a/composer.lock +++ b/composer.lock @@ -889,16 +889,16 @@ }, { "name": "level-2/dice", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/Level-2/Dice.git", - "reference": "b9336d9200d0165c31e982374dc5d8d2552807bc" + "reference": "3e9a8548398c01e2527110c916a93f6efa17ac9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Level-2/Dice/zipball/b9336d9200d0165c31e982374dc5d8d2552807bc", - "reference": "b9336d9200d0165c31e982374dc5d8d2552807bc", + "url": "https://api.github.com/repos/Level-2/Dice/zipball/3e9a8548398c01e2527110c916a93f6efa17ac9c", + "reference": "3e9a8548398c01e2527110c916a93f6efa17ac9c", "shasum": "" }, "require": { @@ -931,7 +931,7 @@ "di", "ioc" ], - "time": "2020-01-28T13:47:49+00:00" + "time": "2021-04-20T14:06:06+00:00" }, { "name": "lightopenid/lightopenid", diff --git a/database.sql b/database.sql index 7a18fad5cb..0dcf9afe80 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2021.06-dev (Siberian Iris) --- DB_UPDATE_VERSION 1414 +-- DB_UPDATE_VERSION 1417 -- ------------------------------------------ @@ -364,6 +364,43 @@ CREATE TABLE IF NOT EXISTS `apcontact` ( FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation'; +-- +-- TABLE application +-- +CREATE TABLE IF NOT EXISTS `application` ( + `id` int unsigned NOT NULL auto_increment COMMENT 'generated index', + `client_id` varchar(64) NOT NULL COMMENT '', + `client_secret` varchar(64) NOT NULL COMMENT '', + `name` varchar(255) NOT NULL COMMENT '', + `redirect_uri` varchar(255) NOT NULL COMMENT '', + `website` varchar(255) COMMENT '', + `scopes` varchar(255) COMMENT '', + `read` boolean COMMENT 'Read scope', + `write` boolean COMMENT 'Write scope', + `follow` boolean COMMENT 'Follow scope', + PRIMARY KEY(`id`), + UNIQUE INDEX `client_id` (`client_id`) +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth application'; + +-- +-- TABLE application-token +-- +CREATE TABLE IF NOT EXISTS `application-token` ( + `application-id` int unsigned NOT NULL COMMENT '', + `uid` mediumint unsigned NOT NULL COMMENT 'Owner User id', + `code` varchar(64) NOT NULL COMMENT '', + `access_token` varchar(64) NOT NULL COMMENT '', + `created_at` datetime NOT NULL COMMENT 'creation time', + `scopes` varchar(255) COMMENT '', + `read` boolean COMMENT 'Read scope', + `write` boolean COMMENT 'Write scope', + `follow` boolean COMMENT 'Follow scope', + PRIMARY KEY(`application-id`,`uid`), + INDEX `uid_id` (`uid`,`application-id`), + FOREIGN KEY (`application-id`) REFERENCES `application` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth user token'; + -- -- TABLE attach -- @@ -1470,6 +1507,28 @@ CREATE TABLE IF NOT EXISTS `workerqueue` ( INDEX `done_pid_priority_created` (`done`,`pid`,`priority`,`created`) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries'; +-- +-- VIEW application-view +-- +DROP VIEW IF EXISTS `application-view`; +CREATE VIEW `application-view` AS SELECT + `application`.`id` AS `id`, + `application-token`.`uid` AS `uid`, + `application`.`name` AS `name`, + `application`.`redirect_uri` AS `redirect_uri`, + `application`.`website` AS `website`, + `application`.`client_id` AS `client_id`, + `application`.`client_secret` AS `client_secret`, + `application-token`.`code` AS `code`, + `application-token`.`access_token` AS `access_token`, + `application-token`.`created_at` AS `created_at`, + `application-token`.`scopes` AS `scopes`, + `application-token`.`read` AS `read`, + `application-token`.`write` AS `write`, + `application-token`.`follow` AS `follow` + FROM `application-token` + INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id`; + -- -- VIEW post-user-view -- diff --git a/doc/API-Mastodon.md b/doc/API-Mastodon.md index 588947cc3a..a8566ce60a 100644 --- a/doc/API-Mastodon.md +++ b/doc/API-Mastodon.md @@ -9,19 +9,43 @@ Friendica provides the following endpoints defined in [the official Mastodon API Authentication is the same as described in [Using the APIs](help/api#Authentication). +## Clients + +Supported mobile apps: + +- Tusky +- Husky +- twitlatte +- AndStatus +- Twidere +- Subway Tooter + +Unsupported mobile apps: + +- [Mammut](https://github.com/jamiesanson/Mammut) There are problems with the token request, see issue https://github.com/jamiesanson/Mammut/issues/19 +- [Fedilab](https://framagit.org/tom79/fedilab) Automatically uses the legacy API, see issue: https://framagit.org/tom79/fedilab/-/issues/520 + ## Entities These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/). ## Implemented endpoints -- [`GET /api/v1//accounts/:id`](https://docs.joinmastodon.org/methods/accounts/#retrieve-information) -- [`GET /api/v1//accounts/:id/statuses`](https://docs.joinmastodon.org/methods/accounts/#retrieve-information) +- [`GET /api/v1/accounts/:id`](https://docs.joinmastodon.org/methods/accounts/#retrieve-information) +- [`GET /api/v1/accounts/:id/statuses`](https://docs.joinmastodon.org/methods/accounts/#retrieve-information) +- [`GET /api/v1/accounts/:id/followers`](https://docs.joinmastodon.org/methods/accounts/) +- [`GET /api/v1/accounts/:id/following`](https://docs.joinmastodon.org/methods/accounts/) +- [`GET /api/v1/accounts/:id/lists`](https://docs.joinmastodon.org/methods/accounts/) +- [`GET /api/v1/accounts/search`](https://docs.joinmastodon.org/methods/accounts) +- [`GET /api/v1/accounts/verify_credentials`](https://docs.joinmastodon.org/methods/accounts) +- [`GET /api/v1/blocks`](https://docs.joinmastodon.org/methods/accounts/blocks/) +- [`GET /api/v1/bookmarks`](https://docs.joinmastodon.org/methods/accounts/bookmarks/) - [`GET /api/v1/custom_emojis`](https://docs.joinmastodon.org/methods/instance/custom_emojis/) - Doesn't return unicode emojis since they aren't using an image URL - [`GET /api/v1/directory`](https://docs.joinmastodon.org/methods/instance/directory/) +- [`GET /api/v1/favourites`](https://docs.joinmastodon.org/methods/accounts/favourites/) - [`GET /api/v1/follow_requests`](https://docs.joinmastodon.org/methods/accounts/follow_requests#pending-follows) - Returned IDs are specific to follow requests - [`POST /api/v1/follow_requests/:id/authorize`](https://docs.joinmastodon.org/methods/accounts/follow_requests#accept-follow) @@ -36,7 +60,23 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en - [`GET /api/v1/instance`](https://docs.joinmastodon.org/methods/instance#fetch-instance) - [`GET /api/v1/instance/peers`](https://docs.joinmastodon.org/methods/instance#list-of-connected-domains) +- [`GET /api/v1/lists`](https://docs.joinmastodon.org/methods/timelines/lists/) +- [`GET /api/v1/lists/:id`](https://docs.joinmastodon.org/methods/timelines/lists/) +- [`GET /api/v1/lists/:id/accounts`](https://docs.joinmastodon.org/methods/timelines/lists/) +- [`GET /api/v1/media/:id`](https://docs.joinmastodon.org/methods/statuses/media/) +- [`GET /api/v1/mutes`](https://docs.joinmastodon.org/methods/accounts/mutes/) +- [`GET /api/v1/notifications`](https://docs.joinmastodon.org/methods/notifications/) +- [`GET /api/v1/notifications/:id`](https://docs.joinmastodon.org/methods/notifications/) +- [`GET /api/v1/preferences`](https://docs.joinmastodon.org/methods/accounts/preferences/) +- [`GET /api/v1/statuses/:id`](https://docs.joinmastodon.org/methods/statuses/) +- [`GET /api/v1/statuses/:id/context`](https://docs.joinmastodon.org/methods/statuses/) +- [`GET /api/v1/statuses/:id/reblogged_by`](https://docs.joinmastodon.org/methods/statuses/) +- [`GET /api/v1/statuses/:id/favourited_by`](https://docs.joinmastodon.org/methods/statuses/) +- [`GET /api/v1/suggestions`](https://docs.joinmastodon.org/methods/accounts/suggestions/) +- [`GET /api/v1/timelines/home`](https://docs.joinmastodon.org/methods/timelines/) +- [`GET /api/v1/timelines/list/:id`](https://docs.joinmastodon.org/methods/timelines/) - [`GET /api/v1/timelines/public`](https://docs.joinmastodon.org/methods/timelines/) +- [`GET /api/v1/timelines/tag/:hashtag`](https://docs.joinmastodon.org/methods/timelines/) - [`GET /api/v1/trends`](https://docs.joinmastodon.org/methods/instance/trends/) ## Non-implemented endpoints diff --git a/include/api.php b/include/api.php index c2a77bdcd8..0b925aee0f 100644 --- a/include/api.php +++ b/include/api.php @@ -175,6 +175,7 @@ function api_register_func($path, $func, $auth = false, $method = API_METHOD_ANY * Simple Auth allow username in form of
user@server, ignoring server part * * @param App $a App + * @param bool $do_login try to log in when not logged in, otherwise quit silently * @throws ForbiddenException * @throws InternalServerErrorException * @throws UnauthorizedException @@ -185,8 +186,10 @@ function api_register_func($path, $func, $auth = false, $method = API_METHOD_ANY * 'authenticated' => return status, * 'user_record' => return authenticated user record */ -function api_login(App $a) +function api_login(App $a, bool $do_login = true) { + $_SESSION["allow_api"] = false; + // workaround for HTTP-auth in CGI mode if (!empty($_SERVER['REDIRECT_REMOTE_USER'])) { $userpass = base64_decode(substr($_SERVER["REDIRECT_REMOTE_USER"], 6)); @@ -216,6 +219,10 @@ function api_login(App $a) Logger::warning(API_LOG_PREFIX . 'OAuth error', ['module' => 'api', 'action' => 'login', 'exception' => $e->getMessage()]); } + if (!$do_login) { + return; + } + Logger::debug(API_LOG_PREFIX . 'failed', ['module' => 'api', 'action' => 'login', 'parameters' => $_SERVER]); header('WWW-Authenticate: Basic realm="Friendica"'); throw new UnauthorizedException("This API requires login"); @@ -247,7 +254,7 @@ function api_login(App $a) */ Hook::callAll('authenticate', $addon_auth); - if ($addon_auth['authenticated'] && count($addon_auth['user_record'])) { + if ($addon_auth['authenticated'] && !empty($addon_auth['user_record'])) { $record = $addon_auth['user_record']; } else { $user_id = User::authenticate(trim($user), trim($password), true); @@ -257,6 +264,9 @@ function api_login(App $a) } if (!DBA::isResult($record)) { + if (!$do_login) { + return; + } Logger::debug(API_LOG_PREFIX . 'failed', ['module' => 'api', 'action' => 'login', 'parameters' => $_SERVER]); header('WWW-Authenticate: Basic realm="Friendica"'); //header('HTTP/1.0 401 Unauthorized'); @@ -1021,7 +1031,7 @@ function api_statuses_mediap($type) $_REQUEST['profile_uid'] = api_user(); $_REQUEST['api_source'] = true; - $txt = requestdata('status'); + $txt = requestdata('status') ?? ''; /// @TODO old-lost code? //$txt = urldecode(requestdata('status')); @@ -1076,7 +1086,7 @@ function api_statuses_update($type) // convert $_POST array items to the form we use for web posts. if (requestdata('htmlstatus')) { - $txt = requestdata('htmlstatus'); + $txt = requestdata('htmlstatus') ?? ''; if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) { $txt = HTML::toBBCodeVideo($txt); @@ -1157,30 +1167,56 @@ function api_statuses_update($type) } } - if (!empty($_FILES['media'])) { + if (requestdata('media_ids')) { + $ids = explode(',', requestdata('media_ids') ?? ''); + } elseif (!empty($_FILES['media'])) { // upload the image if we have one $picture = wall_upload_post($a, false); if (is_array($picture)) { - $_REQUEST['body'] .= "\n\n" . '[url=' . $picture["albumpage"] . '][img]' . $picture["preview"] . "[/img][/url]"; + $ids[] = $picture['id']; } } - if (requestdata('media_ids')) { - $ids = explode(',', requestdata('media_ids')); + $attachments = []; + $ressources = []; + + if (!empty($ids)) { foreach ($ids as $id) { - $r = q( - "SELECT `resource-id`, `scale`, `nickname`, `type`, `desc` FROM `photo` INNER JOIN `user` ON `user`.`uid` = `photo`.`uid` WHERE `resource-id` IN (SELECT `resource-id` FROM `photo` WHERE `id` = %d) AND `scale` > 0 AND `photo`.`uid` = %d ORDER BY `photo`.`width` DESC LIMIT 1", - intval($id), - api_user() - ); - if (DBA::isResult($r)) { + $media = DBA::toArray(DBA::p("SELECT `resource-id`, `scale`, `nickname`, `type`, `desc`, `filename`, `datasize`, `width`, `height` FROM `photo` + INNER JOIN `user` ON `user`.`uid` = `photo`.`uid` WHERE `resource-id` IN + (SELECT `resource-id` FROM `photo` WHERE `id` = ?) AND `photo`.`uid` = ? + ORDER BY `photo`.`width` DESC LIMIT 2", $id, api_user())); + + if (!empty($media)) { + $ressources[] = $media[0]['resource-id']; $phototypes = Images::supportedTypes(); - $ext = $phototypes[$r[0]['type']]; - $description = $r[0]['desc'] ?? ''; - $_REQUEST['body'] .= "\n\n" . '[url=' . DI::baseUrl() . '/photos/' . $r[0]['nickname'] . '/image/' . $r[0]['resource-id'] . ']'; - $_REQUEST['body'] .= '[img=' . DI::baseUrl() . '/photo/' . $r[0]['resource-id'] . '-' . $r[0]['scale'] . '.' . $ext . ']' . $description . '[/img][/url]'; + $ext = $phototypes[$media[0]['type']]; + + $attachment = ['type' => Post\Media::IMAGE, 'mimetype' => $media[0]['type'], + 'url' => DI::baseUrl() . '/photo/' . $media[0]['resource-id'] . '-' . $media[0]['scale'] . '.' . $ext, + 'size' => $media[0]['datasize'], + 'name' => $media[0]['filename'] ?: $media[0]['resource-id'], + 'description' => $media[0]['desc'] ?? '', + 'width' => $media[0]['width'], + 'height' => $media[0]['height']]; + + if (count($media) > 1) { + $attachment['preview'] = DI::baseUrl() . '/photo/' . $media[1]['resource-id'] . '-' . $media[1]['scale'] . '.' . $ext; + $attachment['preview-width'] = $media[1]['width']; + $attachment['preview-height'] = $media[1]['height']; + } + $attachments[] = $attachment; } } + + // We have to avoid that the post is rejected because of an empty body + if (empty($_REQUEST['body'])) { + $_REQUEST['body'] = '[hr]'; + } + } + + if (!empty($attachments)) { + $_REQUEST['attachments'] = $attachments; } // set this so that the item_post() function is quiet and doesn't redirect or emit json @@ -1194,6 +1230,13 @@ function api_statuses_update($type) // call out normal post function $item_id = item_post($a); + if (!empty($ressources) && !empty($item_id)) { + $item = Post::selectFirst(['uri-id', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'], ['id' => $item_id]); + foreach ($ressources as $ressource) { + Photo::setPermissionForRessource($ressource, api_user(), $item['allow_cid'], $item['allow_gid'], $item['deny_cid'], $item['deny_gid']); + } + } + // output the post that we just posted. return api_status_show($type, $item_id); } @@ -2534,7 +2577,7 @@ function api_convert_item($item) $statustext = mb_substr($statustext, 0, 1000) . "... \n" . ($item['plink'] ?? ''); } - $statushtml = BBCode::convert(BBCode::removeAttachment($body), false); + $statushtml = BBCode::convert(BBCode::removeAttachment($body), false, BBCode::API, true); // Workaround for clients with limited HTML parser functionality $search = ["
", "", @@ -2585,25 +2628,7 @@ function api_convert_item($item) */ function api_add_attachments_to_body(array $item) { - $body = $item['body']; - - foreach (Post\Media::getByURIId($item['uri-id'], [Post\Media::IMAGE, Post\Media::AUDIO, Post\Media::VIDEO]) as $media) { - if (Item::containsLink($item['body'], $media['url'])) { - continue; - } - - if ($media['type'] == Post\Media::IMAGE) { - if (!empty($media['description'])) { - $body .= "\n[img=" . $media['url'] . ']' . $media['description'] .'[/img]'; - } else { - $body .= "\n[img]" . $media['url'] .'[/img]'; - } - } elseif ($media['type'] == Post\Media::AUDIO) { - $body .= "\n[audio]" . $media['url'] . "[/audio]\n"; - } elseif ($media['type'] == Post\Media::VIDEO) { - $body .= "\n[video]" . $media['url'] . "[/video]\n"; - } - } + $body = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']); if (strpos($body, '[/img]') !== false) { return $body; diff --git a/include/conversation.php b/include/conversation.php index eae7fd7274..57d368e927 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -888,7 +888,8 @@ function conversation_fetch_items(array $parent, array $items, array $condition, return $items; } -function item_photo_menu($item) { +function item_photo_menu($item) +{ $sub_link = ''; $poke_link = ''; $contact_url = ''; @@ -929,8 +930,8 @@ function item_photo_menu($item) { if (!empty($pcid)) { $contact_url = 'contact/' . $pcid; $posts_link = $contact_url . '/posts'; - $block_link = $contact_url . '/block'; - $ignore_link = $contact_url . '/ignore'; + $block_link = $item['self'] ? '' : $contact_url . '/block'; + $ignore_link = $item['self'] ? '' : $contact_url . '/ignore'; } if ($cid && !$item['self']) { @@ -983,7 +984,7 @@ function item_photo_menu($item) { if (strpos($v, 'javascript:') === 0) { $v = substr($v, 11); $o .= '
Or you can submit the authentication settings manually:
\n" -"Oder du kannst die Authentifizierungseinstellungen manuell übermitteln:
\nPlease scan this QR Code with your authenticator app and submit the " -"provided code.
" -msgstr "Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.
" - -#: src/Module/Settings/TwoFactor/Verify.php:135 -#, php-format -msgid "" -"Or you can open the following URL in your mobile device:
" -msgstr "Oder du kannst die folgende URL in deinem Mobilgerät öffnen:
" - -#: src/Module/Settings/TwoFactor/Verify.php:141 -#: src/Module/Security/TwoFactor/Verify.php:99 -msgid "Please enter a code from your authentication app" -msgstr "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein" - -#: src/Module/Settings/TwoFactor/Verify.php:142 -msgid "Verify code and enable two-factor authentication" -msgstr "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung" - -#: src/Module/Settings/TwoFactor/Index.php:67 -msgid "Two-factor authentication successfully disabled." -msgstr "Zwei-Faktor Authentifizierung erfolgreich deaktiviert." - -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Falsches Passwort" - -#: src/Module/Settings/TwoFactor/Index.php:110 src/Module/BaseSettings.php:50 -#: src/Module/Security/TwoFactor/Verify.php:94 -msgid "Two-factor authentication" -msgstr "Zwei-Faktor Authentifizierung" - -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "" -"Use an application on a mobile device to get two-factor authentication " -"codes when prompted on login.
" -msgstr "Benutze eine App auf dein Smartphone um einen Zwei-Faktor identifikations Code zu bekommen wenn beim Loggin das verlagt wird.
" - -#: src/Module/Settings/TwoFactor/Index.php:117 -msgid "Authenticator app" -msgstr "Zwei-Faktor Authentifizierungsapp" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Configured" -msgstr "Konfiguriert" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Not Configured" -msgstr "Nicht konfiguriert" - -#: src/Module/Settings/TwoFactor/Index.php:119 -msgid "You haven't finished configuring your authenticator app.
" -msgstr "Die Konfiguration deiner Zwei-Faktor Authentifizierungsapp ist nicht abgeschlossen.
" - -#: src/Module/Settings/TwoFactor/Index.php:120 -msgid "Your authenticator app is correctly configured.
" -msgstr "Deine Zwei-Faktor Authentifizierungsapp ist korrekt konfiguriert.
" - -#: src/Module/Settings/TwoFactor/Index.php:122 -msgid "Recovery codes" -msgstr "Wiederherstellungsschlüssel" - -#: src/Module/Settings/TwoFactor/Index.php:123 -msgid "Remaining valid codes" -msgstr "Verbleibende Wiederherstellungsschlüssel" - -#: src/Module/Settings/TwoFactor/Index.php:125 -msgid "" -"These one-use codes can replace an authenticator app code in case you " -"have lost access to it.
" -msgstr "Diese Einmalcodes können einen Authentifikator-App-Code ersetzen, falls du den Zugriff darauf verloren hast.
" - -#: src/Module/Settings/TwoFactor/Index.php:127 -msgid "App-specific passwords" -msgstr "App spezifische Passwörter" - -#: src/Module/Settings/TwoFactor/Index.php:128 -msgid "Generated app-specific passwords" -msgstr "App spezifische Passwörter erstellen" - -#: src/Module/Settings/TwoFactor/Index.php:130 -msgid "" -"These randomly generated passwords allow you to authenticate on apps not " -"supporting two-factor authentication.
" -msgstr "Diese zufällig erzeugten Passwörter erlauben es dir dich mit Apps anzumelden, die keine Zwei-Faktor-Authentifizierung unterstützen.
" - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "Current password:" -msgstr "Aktuelles Passwort:" - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "" -"You need to provide your current password to change two-factor " -"authentication settings." -msgstr "Du musst dein aktuelles Passwort eingeben um die Einstellungen der Zwei-Faktor-Authentifizierung zu ändern" - -#: src/Module/Settings/TwoFactor/Index.php:134 -msgid "Enable two-factor authentication" -msgstr "Aktiviere die Zwei-Faktor-Authentifizierung" - -#: src/Module/Settings/TwoFactor/Index.php:135 -msgid "Disable two-factor authentication" -msgstr "Deaktiviere die Zwei-Faktor-Authentifizierung" - -#: src/Module/Settings/TwoFactor/Index.php:136 -msgid "Show recovery codes" -msgstr "Wiederherstellungscodes anzeigen" - -#: src/Module/Settings/TwoFactor/Index.php:137 -msgid "Manage app-specific passwords" -msgstr "App spezifische Passwörter verwalten" - -#: src/Module/Settings/TwoFactor/Index.php:138 -msgid "Manage trusted browsers" -msgstr "Vertrauenswürdige Browser verwalten" - -#: src/Module/Settings/TwoFactor/Index.php:139 -msgid "Finish app configuration" -msgstr "Beende die App-Konfiguration" - -#: 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/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 dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.
Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein 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 du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Generiere neue Wiederherstellungscodes" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Weiter: Überprüfung" - -#: src/Module/Settings/TwoFactor/Trusted.php:49 -msgid "Trusted browsers successfully removed." -msgstr "Die vertrauenswürdigen Browser wurden erfolgreich entfernt." - -#: src/Module/Settings/TwoFactor/Trusted.php:59 -msgid "Trusted browser successfully removed." -msgstr "Der vertrauenswürdige Browser erfolgreich entfernt." - -#: src/Module/Settings/TwoFactor/Trusted.php:97 -msgid "Two-factor Trusted Browsers" -msgstr "Zwei-Faktor vertrauenswürdige Browser" - -#: src/Module/Settings/TwoFactor/Trusted.php:98 -msgid "" -"Trusted browsers are individual browsers you chose to skip two-factor " -"authentication to access Friendica. Please use this feature sparingly, as it" -" can negate the benefit of two-factor authentication." -msgstr "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt." - -#: src/Module/Settings/TwoFactor/Trusted.php:99 -msgid "Device" -msgstr "Gerät" - -#: src/Module/Settings/TwoFactor/Trusted.php:100 -msgid "OS" -msgstr "OS" - -#: src/Module/Settings/TwoFactor/Trusted.php:101 include/conversation.php:1249 -#: mod/editpost.php:133 -msgid "Browser" -msgstr "Browser" - -#: src/Module/Settings/TwoFactor/Trusted.php:102 -msgid "Trusted" -msgstr "Vertrauenswürdig" - -#: src/Module/Settings/TwoFactor/Trusted.php:103 -msgid "Last Use" -msgstr "Zuletzt verwendet" - -#: src/Module/Settings/TwoFactor/Trusted.php:104 -#: src/Module/Settings/Delegation.php:179 mod/tagrm.php:126 -msgid "Remove" -msgstr "Entfernen" - -#: src/Module/Settings/TwoFactor/Trusted.php:105 -msgid "Remove All" -msgstr "Alle entfernen" - -#: 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:1045 -#: src/Model/User.php:1053 src/Model/User.php:1061 include/api.php:4452 -#: mod/photos.php:107 mod/photos.php:211 mod/photos.php:639 -#: mod/photos.php:1043 mod/photos.php:1060 mod/photos.php:1609 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: 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 "Verkleinern der Bildgröße von [%s] scheiterte." - -#: 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 "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." - -#: src/Module/Settings/Profile/Photo/Crop.php:147 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: src/Module/Settings/Profile/Photo/Crop.php:166 -msgid "Photo not found." -msgstr "Foto nicht gefunden" - -#: src/Module/Settings/Profile/Photo/Crop.php:190 -msgid "Profile picture successfully updated." -msgstr "Profilbild erfolgreich aktualisiert." - -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: src/Module/Settings/Profile/Photo/Crop.php:214 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." - -#: src/Module/Settings/Profile/Photo/Crop.php:216 -msgid "Use Image As Is" -msgstr "Bild wie es ist verwenden" - -#: src/Module/Settings/Profile/Photo/Index.php:47 -msgid "Missing uploaded image." -msgstr "Hochgeladenes Bild nicht gefunden." - -#: src/Module/Settings/Profile/Photo/Index.php:61 mod/wall_upload.php:216 -#: mod/photos.php:672 mod/photos.php:675 mod/photos.php:702 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: src/Module/Settings/Profile/Photo/Index.php:70 mod/wall_upload.php:175 -#: mod/photos.php:725 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: src/Module/Settings/Profile/Photo/Index.php:97 mod/wall_upload.php:241 -#: mod/photos.php:754 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: src/Module/Settings/Profile/Photo/Index.php:126 -msgid "Profile Picture Settings" -msgstr "Einstellungen zum Profilbild" - -#: src/Module/Settings/Profile/Photo/Index.php:127 -msgid "Current Profile Picture" -msgstr "Aktuelles Profilbild" - -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload Profile Picture" -msgstr "Profilbild aktualisieren" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload Picture:" -msgstr "Bild hochladen" - -#: src/Module/Settings/Profile/Photo/Index.php:130 mod/fbrowser.php:107 -#: mod/fbrowser.php:136 -msgid "Upload" -msgstr "Hochladen" - -#: src/Module/Settings/Profile/Photo/Index.php:134 -msgid "or" -msgstr "oder" - -#: src/Module/Settings/Profile/Photo/Index.php:136 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: 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/Profile/Index.php:85 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: 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:187 -#: src/Module/Settings/Profile/Index.php:207 -msgid "Label:" -msgstr "Bezeichnung:" - -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 -msgid "Value:" -msgstr "Wert:" - -#: 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: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:205 -msgid "Add a new profile field" -msgstr "Neues Profilfeld hinzufügen" - -#: src/Module/Settings/Profile/Index.php:235 -msgid "Profile Actions" -msgstr "Profilaktionen" - -#: src/Module/Settings/Profile/Index.php:236 -msgid "Edit Profile Details" +#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:252 +#: src/Module/Profile/Profile.php:254 +msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/Module/Settings/Profile/Index.php:238 -msgid "Change Profile Photo" +#: src/Model/Profile.php:348 +msgid "Change profile photo" msgstr "Profilbild ändern" -#: src/Module/Settings/Profile/Index.php:243 -msgid "Profile picture" -msgstr "Profilbild" +#: src/Model/Profile.php:361 src/Module/Directory.php:161 +#: src/Module/Profile/Profile.php:180 +msgid "Homepage:" +msgstr "Homepage:" -#: src/Module/Settings/Profile/Index.php:244 -msgid "Location" -msgstr "Wohnort" +#: src/Model/Profile.php:362 src/Module/Contact.php:658 +#: src/Module/Notifications/Introductions.php:174 +msgid "About:" +msgstr "Über:" -#: src/Module/Settings/Profile/Index.php:246 -msgid "Custom Profile Fields" -msgstr "Benutzerdefinierte Profilfelder" +#: src/Model/Profile.php:363 src/Module/Contact.php:656 +#: src/Module/Profile/Profile.php:176 +msgid "XMPP:" +msgstr "XMPP:" -#: src/Module/Settings/Profile/Index.php:252 -msgid "Display name:" -msgstr "Anzeigename:" +#: src/Model/Profile.php:446 src/Module/Contact.php:342 +msgid "Unfollow" +msgstr "Entfolgen" -#: src/Module/Settings/Profile/Index.php:255 -msgid "Street Address:" -msgstr "Adresse:" +#: src/Model/Profile.php:448 +msgid "Atom feed" +msgstr "Atom-Feed" -#: src/Module/Settings/Profile/Index.php:256 -msgid "Locality/City:" -msgstr "Wohnort:" +#: src/Model/Profile.php:456 src/Module/Contact.php:338 +#: src/Module/Notifications/Introductions.php:186 +msgid "Network:" +msgstr "Netzwerk:" -#: src/Module/Settings/Profile/Index.php:257 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" +#: src/Model/Profile.php:486 src/Model/Profile.php:583 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" -#: src/Module/Settings/Profile/Index.php:258 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: src/Model/Profile.php:487 +msgid "F d" +msgstr "d. F" -#: src/Module/Settings/Profile/Index.php:259 -msgid "Country:" -msgstr "Land:" +#: src/Model/Profile.php:549 src/Model/Profile.php:634 +msgid "[today]" +msgstr "[heute]" -#: src/Module/Settings/Profile/Index.php:261 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) Adresse" +#: src/Model/Profile.php:559 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" -#: 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/Model/Profile.php:560 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" -#: src/Module/Settings/Profile/Index.php:262 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" +#: src/Model/Profile.php:621 +msgid "[No description]" +msgstr "[keine Beschreibung]" -#: src/Module/Settings/Profile/Index.php:263 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" +#: src/Model/Profile.php:647 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" -#: 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/Model/Profile.php:648 +msgid "Upcoming events the next 7 days:" +msgstr "Veranstaltungen der nächsten 7 Tage:" -#: src/Module/Settings/Profile/Index.php:264 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" +#: src/Model/Profile.php:823 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" -#: 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/Model/Storage/Database.php:74 +#, php-format +msgid "Database storage failed to update %s" +msgstr "Datenbankspeicher konnte nicht aktualisiert werden %s" -#: src/Module/Settings/Profile/Index.php:265 +#: 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 "" -"Custom fields appear on your profile page.
\n" -"\t\t\t\tYou can use BBCodes in the field values.
\n" -"\t\t\t\tReorder by dragging the field title.
\n" -"\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" -msgstr "Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite
.\n\nBBCode kann verwendet werden
\nDie Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.
\nWird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.
\nNicht öffentliche Felder können nur von den ausgewählten Friendica Kontakte gesehen werden.
" +"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/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "Delegierung erfolgreich eingerichtet." +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Dateipfad zum Speicher" -#: 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 +#: src/Model/Storage/Filesystem.php:178 msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern." +"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/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "Delegierter Nutzer nicht gefunden" +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Gib einen gültigen, existierenden Ordner ein" -#: src/Module/Settings/Delegation.php:143 -msgid "No parent user" -msgstr "Kein Verwalter" +#: src/Model/User.php:186 src/Model/User.php:931 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 -msgid "Parent User" -msgstr "Verwalter" +#: src/Model/User.php:549 +msgid "Login failed" +msgstr "Anmeldung fehlgeschlagen" -#: src/Module/Settings/Delegation.php:162 -msgid "Additional Accounts" -msgstr "Zusätzliche Accounts" +#: src/Model/User.php:581 +msgid "Not enough information to authenticate" +msgstr "Nicht genügend Informationen für die Authentifizierung" -#: src/Module/Settings/Delegation.php:163 +#: src/Model/User.php:676 +msgid "Password can't be empty" +msgstr "Das Passwort kann nicht leer sein" + +#: src/Model/User.php:695 +msgid "Empty passwords are not allowed." +msgstr "Leere Passwörter sind nicht erlaubt." + +#: src/Model/User.php:699 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." +"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/Module/Settings/Delegation.php:164 -msgid "Register an additional account" -msgstr "Einen zusätzlichen Account registrieren" - -#: src/Module/Settings/Delegation.php:168 +#: src/Model/User.php:705 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." +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten" -#: src/Module/Settings/Delegation.php:171 src/Module/BaseSettings.php:94 -msgid "Manage Accounts" -msgstr "Accounts Verwalten" +#: src/Model/User.php:811 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: src/Module/Settings/Delegation.php:172 -msgid "Delegates" -msgstr "Bevollmächtigte" +#: src/Model/User.php:818 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." -#: src/Module/Settings/Delegation.php:174 +#: src/Model/User.php:822 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: src/Model/User.php:830 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: src/Model/User.php:843 src/Security/Authentication.php:224 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!" +"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/Module/Settings/Delegation.php:175 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: src/Model/User.php:843 src/Security/Authentication.php:224 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" -#: src/Module/Settings/Delegation.php:177 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: src/Model/User.php:849 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." -#: 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/UserExport.php:59 -msgid "Export account" -msgstr "Account exportieren" - -#: src/Module/Settings/UserExport.php:59 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere Deine Account-Informationen und Kontakte. Verwende dies, um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: src/Module/Settings/UserExport.php:60 -msgid "Export all" -msgstr "Alles exportieren" - -#: src/Module/Settings/UserExport.php:60 -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 "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)." - -#: src/Module/Settings/UserExport.php:61 -msgid "Export Contacts to CSV" -msgstr "Kontakte nach CSV exportieren" - -#: src/Module/Settings/UserExport.php:61 -msgid "" -"Export the list of the accounts you are following as CSV file. Compatible to" -" 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/Settings/UserExport.php:67 src/Module/BaseSettings.php:108 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: src/Module/Admin/Features.php:76 +#: src/Model/User.php:863 #, php-format -msgid "Lock feature %s" -msgstr "Feature festlegen: %s" +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/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "Zusätzliche Features Verwalten" +#: src/Model/User.php:870 +#, 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:874 +#, 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:882 +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:887 +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:891 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: src/Model/User.php:894 +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:898 src/Model/User.php:906 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: src/Model/User.php:913 +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:921 src/Model/User.php:978 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: src/Model/User.php:965 src/Model/User.php:969 +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:992 +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:999 +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:1004 +msgid "Friends" +msgstr "Kontakte" + +#: src/Model/User.php:1008 +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:1199 +#, 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:1202 +#, 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:1235 src/Model/User.php:1342 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: src/Model/User.php:1255 +#, 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:1274 +#, php-format +msgid "Registration at %s" +msgstr "Registrierung als %s" + +#: src/Model/User.php:1298 +#, 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:1306 +#, 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:65 +msgid "Addon not found." +msgstr "Addon nicht gefunden." + +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "Addon %s ausgeschaltet." + +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "Addon %s eingeschaltet." + +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 +msgid "Disable" +msgstr "Ausschalten" + +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 +msgid "Enable" +msgstr "Einschalten" + +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Federation.php:141 src/Module/Admin/Item/Delete.php:65 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/View.php:64 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:579 +#: src/Module/Admin/Summary.php:232 src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:58 +#: src/Module/Admin/Users/Active.php:136 +#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61 +#: src/Module/Admin/Users/Deleted.php:85 src/Module/Admin/Users/Index.php:149 +#: src/Module/Admin/Users/Pending.php:101 +msgid "Administration" +msgstr "Administration" + +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Addons" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 +msgid "Toggle" +msgstr "Umschalten" + +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 +msgid "Author: " +msgstr "Autor:" + +#: src/Module/Admin/Addons/Details.php:122 +#: src/Module/Admin/Themes/Details.php:102 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "Addons neu geladen" + +#: 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/BaseUsers.php:53 +msgid "List of all users" +msgstr "Liste aller Benutzerkonten" + +#: src/Module/Admin/BaseUsers.php:58 +msgid "Active" +msgstr "Aktive" + +#: src/Module/Admin/BaseUsers.php:61 +msgid "List of active accounts" +msgstr "Liste der aktiven Benutzerkonten" + +#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:807 +#: src/Module/Contact.php:867 +msgid "Pending" +msgstr "Ausstehend" + +#: src/Module/Admin/BaseUsers.php:69 +msgid "List of pending registrations" +msgstr "Liste der anstehenden Benutzerkonten" + +#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:815 +#: src/Module/Contact.php:868 +msgid "Blocked" +msgstr "Geblockt" + +#: src/Module/Admin/BaseUsers.php:77 +msgid "List of blocked users" +msgstr "Liste der geblockten Benutzer" + +#: src/Module/Admin/BaseUsers.php:82 +msgid "Deleted" +msgstr "Gelöscht" + +#: src/Module/Admin/BaseUsers.php:85 +msgid "List of pending user deletions" +msgstr "Liste der auf Löschung wartenden Benutzer" + +#: src/Module/Admin/BaseUsers.php:103 +msgid "Private Forum" +msgstr "Privates Forum" + +#: src/Module/Admin/BaseUsers.php:110 +msgid "Relay" +msgstr "Relais" + +#: 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/Active.php:138 +#: src/Module/Admin/Users/Blocked.php:139 src/Module/Admin/Users/Index.php:151 +#: src/Module/Admin/Users/Pending.php:103 +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/Blocked.php:142 src/Module/Admin/Users/Index.php:156 +#: src/Module/Contact.php:633 src/Module/Contact.php:891 +#: src/Module/Contact.php:1173 +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: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:81 +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" +"*
: Any number of characters?
: Any single character[<char1><char2>...]
: char1 or char2Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:
\n*
: Beliebige Anzahl von Zeichen?
: Ein einzelnes beliebiges Zeichen[<Zeichen1><Zeichen2>...]
:Zeichen1 oder Zeichen2.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.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 .htconfig.php
. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen."
-
-#: src/Module/Admin/Summary.php:111
-#, 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:117
-#, 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:135
-#, 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:149
-#, 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:165
-#, 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 wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden."
-
-#: src/Module/Admin/Summary.php:173
-#, 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:181
-#, 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 korrigiere deine Konfiguration."
-
-#: src/Module/Admin/Summary.php:188
-msgid "Normal Account"
-msgstr "Normales Konto"
-
-#: src/Module/Admin/Summary.php:189
-msgid "Automatic Follower Account"
-msgstr "Automatisch folgendes Konto (Marktschreier)"
-
-#: src/Module/Admin/Summary.php:190
-msgid "Public Forum Account"
-msgstr "Öffentliches Forum-Konto"
-
-#: src/Module/Admin/Summary.php:191
-msgid "Automatic Friend Account"
-msgstr "Automatische Freunde-Seite"
-
-#: src/Module/Admin/Summary.php:192
-msgid "Blog Account"
-msgstr "Blog-Konto"
-
-#: src/Module/Admin/Summary.php:193
-msgid "Private Forum Account"
-msgstr "Privates Forum-Konto"
-
-#: src/Module/Admin/Summary.php:213
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
-
-#: src/Module/Admin/Summary.php:219
-msgid "Server Settings"
-msgstr "Servereinstellungen"
-
-#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#: src/Module/Admin/Summary.php:235
-msgid "Registered users"
-msgstr "Registrierte Personen"
-
-#: src/Module/Admin/Summary.php:237
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
-
-#: src/Module/Admin/Summary.php:238
-msgid "Version"
-msgstr "Version"
-
-#: src/Module/Admin/Summary.php:242
-msgid "Active addons"
-msgstr "Aktivierte Addons"
-
-#: src/Module/Admin/Item/Source.php:58
-msgid "Item Guid"
-msgstr "Beitrags-Guid"
-
-#: src/Module/Admin/Item/Source.php:63
-msgid "Item Id"
-msgstr "Item Id"
-
-#: src/Module/Admin/Item/Source.php:64
-msgid "Item URI"
-msgstr "Item URI"
-
-#: src/Module/Admin/Item/Source.php:66
-msgid "Terms"
-msgstr "Terms"
-
-#: src/Module/Admin/Item/Source.php:67
-msgid "Tag"
-msgstr "Tag"
-
-#: src/Module/Admin/Item/Source.php:68 src/Module/Admin/Users/Active.php:129
-#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Blocked.php:130
-msgid "Type"
-msgstr "Typ"
-
-#: src/Module/Admin/Item/Source.php:69
-msgid "Term"
-msgstr "Term"
-
-#: src/Module/Admin/Item/Source.php:70
-msgid "URL"
-msgstr "URL"
-
-#: src/Module/Admin/Item/Source.php:71
-msgid "Mention"
-msgstr "Mention"
-
-#: src/Module/Admin/Item/Source.php:72
-msgid "Implicit Mention"
-msgstr "Implicit Mention"
-
-#: 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/Site.php:69
msgid "Can not parse base url. Must have at least The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" -"*
: Any number of characters?
: Any single character[<char1><char2>...]
: char1 or char2Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:
\n*
: Beliebige Anzahl von Zeichen?
: Ein einzelnes beliebiges Zeichen[<Zeichen1><Zeichen2>...]
:Zeichen1 oder Zeichen2.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.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 .htconfig.php
. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen."
+
+#: src/Module/Admin/Summary.php:111
+#, 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:117
+#, 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:135
+#, 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:149
+#, 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:165
+#, 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 wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden."
+
+#: src/Module/Admin/Summary.php:173
+#, 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:181
+#, 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 korrigiere deine Konfiguration."
+
+#: src/Module/Admin/Summary.php:188
+msgid "Normal Account"
+msgstr "Normales Konto"
+
+#: src/Module/Admin/Summary.php:189
+msgid "Automatic Follower Account"
+msgstr "Automatisch folgendes Konto (Marktschreier)"
+
+#: src/Module/Admin/Summary.php:190
+msgid "Public Forum Account"
+msgstr "Öffentliches Forum-Konto"
+
+#: src/Module/Admin/Summary.php:191
+msgid "Automatic Friend Account"
+msgstr "Automatische Freunde-Seite"
+
+#: src/Module/Admin/Summary.php:192
+msgid "Blog Account"
+msgstr "Blog-Konto"
+
+#: src/Module/Admin/Summary.php:193
+msgid "Private Forum Account"
+msgstr "Privates Forum-Konto"
+
+#: src/Module/Admin/Summary.php:213
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
+
+#: src/Module/Admin/Summary.php:219
+msgid "Server Settings"
+msgstr "Servereinstellungen"
+
+#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285
+msgid "Summary"
+msgstr "Zusammenfassung"
+
+#: src/Module/Admin/Summary.php:235
+msgid "Registered users"
+msgstr "Registrierte Personen"
+
+#: src/Module/Admin/Summary.php:237
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
+
+#: src/Module/Admin/Summary.php:238
+msgid "Version"
+msgstr "Version"
+
+#: src/Module/Admin/Summary.php:242
+msgid "Active addons"
+msgstr "Aktivierte Addons"
+
+#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
+#, php-format
+msgid "Theme %s disabled."
+msgstr "Theme %s deaktiviert."
+
+#: src/Module/Admin/Themes/Details.php:59 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:61 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:83
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
+
+#: src/Module/Admin/Themes/Details.php:91
+#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
+msgid "Themes"
+msgstr "Themen"
+
+#: src/Module/Admin/Themes/Embed.php:65
+msgid "Unknown theme."
+msgstr "Unbekanntes Theme"
+
+#: src/Module/Admin/Themes/Index.php:51
+msgid "Themes reloaded"
+msgstr "Themes wurden neu geladen"
+
+#: 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:60
msgid "Display Terms of Service"
@@ -6168,27 +7045,111 @@ msgid ""
"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/Federation.php:54
-msgid "Other"
-msgstr "Andere"
-
-#: src/Module/Admin/Federation.php:108 src/Module/Admin/Federation.php:268
-msgid "unknown"
-msgstr "Unbekannt"
-
-#: src/Module/Admin/Federation.php:136
-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:146
+#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45
#, 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/Active.php:53 src/Module/Admin/Users/Active.php:88
+#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89
+#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95
+msgid "You can't remove yourself"
+msgstr "Du kannst dich nicht selbst löschen!"
+
+#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58
+#: src/Module/Admin/Users/Index.php:64
+#, 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/Active.php:86 src/Module/Admin/Users/Blocked.php:87
+#: src/Module/Admin/Users/Index.php:93
+#, php-format
+msgid "User \"%s\" deleted"
+msgstr "Nutzer \"%s\" gelöscht"
+
+#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103
+#, php-format
+msgid "User \"%s\" blocked"
+msgstr "Nutzer \"%s\" blockiert"
+
+#: src/Module/Admin/Users/Active.php:129
+#: src/Module/Admin/Users/Blocked.php:130
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
+#: src/Module/Admin/Users/Index.php:162
+msgid "Register date"
+msgstr "Anmeldedatum"
+
+#: src/Module/Admin/Users/Active.php:129
+#: src/Module/Admin/Users/Blocked.php:130
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
+#: src/Module/Admin/Users/Index.php:162
+msgid "Last login"
+msgstr "Letzte Anmeldung"
+
+#: src/Module/Admin/Users/Active.php:129
+#: src/Module/Admin/Users/Blocked.php:130
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
+#: src/Module/Admin/Users/Index.php:162
+msgid "Last public item"
+msgstr "Letzter öffentliche Beitrag"
+
+#: src/Module/Admin/Users/Active.php:137
+msgid "Active Accounts"
+msgstr "Aktive Benutzerkonten"
+
+#: src/Module/Admin/Users/Active.php:141
+#: src/Module/Admin/Users/Blocked.php:141 src/Module/Admin/Users/Index.php:155
+msgid "User blocked"
+msgstr "Nutzer blockiert."
+
+#: src/Module/Admin/Users/Active.php:142
+#: src/Module/Admin/Users/Blocked.php:143 src/Module/Admin/Users/Index.php:157
+msgid "Site admin"
+msgstr "Seitenadministrator"
+
+#: src/Module/Admin/Users/Active.php:143
+#: src/Module/Admin/Users/Blocked.php:144 src/Module/Admin/Users/Index.php:158
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
+
+#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161
+msgid "Create a new user"
+msgstr "Neues Benutzerkonto anlegen"
+
+#: src/Module/Admin/Users/Active.php:150
+#: src/Module/Admin/Users/Blocked.php:150 src/Module/Admin/Users/Index.php:167
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:"
+"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/Active.php:151
+#: src/Module/Admin/Users/Blocked.php:151 src/Module/Admin/Users/Index.php:168
+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/Blocked.php:46 src/Module/Admin/Users/Index.php:52
+#, 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/Blocked.php:96 src/Module/Admin/Users/Index.php:109
+#, php-format
+msgid "User \"%s\" unblocked"
+msgstr "Nutzer \"%s\" frei geschaltet"
+
+#: src/Module/Admin/Users/Blocked.php:138
+msgid "Blocked Users"
+msgstr "Blockierte Benutzer"
#: src/Module/Admin/Users/Create.php:62
msgid "New User"
@@ -6210,131 +7171,25 @@ msgstr "Spitzname"
msgid "Nickname of the new user."
msgstr "Spitznamen für den neuen Nutzer"
-#: src/Module/Admin/Users/Create.php:73 src/Module/Admin/Users/Active.php:129
-#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162
-#: src/Module/Admin/Users/Blocked.php:130
-#: src/Module/Admin/Users/Deleted.php:88
-#: src/Module/Admin/Users/Pending.php:104 src/Content/ContactSelector.php:126
-msgid "Email"
-msgstr "E-Mail"
-
#: src/Module/Admin/Users/Create.php:73
msgid "Email address of the new user."
msgstr "Email Adresse des neuen Nutzers"
-#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45
-#, 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/Active.php:53 src/Module/Admin/Users/Active.php:88
-#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95
-#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89
-msgid "You can't remove yourself"
-msgstr "Du kannst dich nicht selbst löschen!"
-
-#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Index.php:64
-#: src/Module/Admin/Users/Blocked.php:58
-#, 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/Active.php:86 src/Module/Admin/Users/Index.php:93
-#: src/Module/Admin/Users/Blocked.php:87
-#, php-format
-msgid "User \"%s\" deleted"
-msgstr "Nutzer \"%s\" gelöscht"
-
-#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103
-#, php-format
-msgid "User \"%s\" blocked"
-msgstr "Nutzer \"%s\" blockiert"
-
-#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Index.php:142
-#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Blocked.php:130
-#: src/Module/Admin/Users/Deleted.php:88
-msgid "Register date"
-msgstr "Anmeldedatum"
-
-#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Index.php:142
-#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Blocked.php:130
-#: src/Module/Admin/Users/Deleted.php:88
-msgid "Last login"
-msgstr "Letzte Anmeldung"
-
-#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Index.php:142
-#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Blocked.php:130
-#: src/Module/Admin/Users/Deleted.php:88
-msgid "Last public item"
-msgstr "Letzter öffentliche Beitrag"
-
-#: src/Module/Admin/Users/Active.php:137
-msgid "Active Accounts"
-msgstr "Aktive Benutzerkonten"
-
-#: src/Module/Admin/Users/Active.php:141 src/Module/Admin/Users/Index.php:155
-#: src/Module/Admin/Users/Blocked.php:141
-msgid "User blocked"
-msgstr "Nutzer blockiert."
-
-#: src/Module/Admin/Users/Active.php:142 src/Module/Admin/Users/Index.php:157
-#: src/Module/Admin/Users/Blocked.php:143
-msgid "Site admin"
-msgstr "Seitenadministrator"
-
-#: src/Module/Admin/Users/Active.php:143 src/Module/Admin/Users/Index.php:158
-#: src/Module/Admin/Users/Blocked.php:144
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
-
-#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161
-msgid "Create a new user"
-msgstr "Neues Benutzerkonto anlegen"
-
-#: src/Module/Admin/Users/Active.php:150 src/Module/Admin/Users/Index.php:167
-#: src/Module/Admin/Users/Blocked.php:150
-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/Active.php:151 src/Module/Admin/Users/Index.php:168
-#: src/Module/Admin/Users/Blocked.php:151
-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/Index.php:52 src/Module/Admin/Users/Blocked.php:46
-#, 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/Index.php:109 src/Module/Admin/Users/Blocked.php:96
-#, php-format
-msgid "User \"%s\" unblocked"
-msgstr "Nutzer \"%s\" frei geschaltet"
-
-#: src/Module/Admin/Users/Index.php:152
-msgid "User waiting for permanent deletion"
+#: src/Module/Admin/Users/Deleted.php:86
+msgid "Users awaiting permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
-#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Deleted.php:88
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162
msgid "Permanent deletion"
msgstr "Permanent löschen"
-#: src/Module/Admin/Users/Blocked.php:138
-msgid "Blocked Users"
-msgstr "Blockierte Benutzer"
+#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160
+#: src/Module/BaseAdmin.php:91
+msgid "Users"
+msgstr "Nutzer"
-#: src/Module/Admin/Users/Deleted.php:86
-msgid "Users awaiting permanent deletion"
+#: src/Module/Admin/Users/Index.php:152
+msgid "User waiting for permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
#: src/Module/Admin/Users/Pending.php:48
@@ -6379,125 +7234,17 @@ msgstr "Hinweis vom Nutzer"
msgid "Deny"
msgstr "Verwehren"
-#: src/Module/Admin/BaseUsers.php:50 src/Content/Widget.php:537
-msgid "All"
-msgstr "Alle"
+#: src/Module/Api/Mastodon/Apps.php:47 src/Module/Api/Mastodon/Apps.php:58
+msgid "Missing parameters"
+msgstr "Fehlende Parameter"
-#: src/Module/Admin/BaseUsers.php:53
-msgid "List of all users"
-msgstr "Liste aller Benutzerkonten"
+#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400
+msgid "Contact not found"
+msgstr "Kontakt nicht gefunden"
-#: src/Module/Admin/BaseUsers.php:58
-msgid "Active"
-msgstr "Aktive"
-
-#: src/Module/Admin/BaseUsers.php:61
-msgid "List of active accounts"
-msgstr "Liste der aktiven Benutzerkonten"
-
-#: src/Module/Admin/BaseUsers.php:69
-msgid "List of pending registrations"
-msgstr "Liste der anstehenden Benutzerkonten"
-
-#: src/Module/Admin/BaseUsers.php:77
-msgid "List of blocked users"
-msgstr "Liste der geblockten Benutzer"
-
-#: src/Module/Admin/BaseUsers.php:82
-msgid "Deleted"
-msgstr "Gelöscht"
-
-#: src/Module/Admin/BaseUsers.php:85
-msgid "List of pending user deletions"
-msgstr "Liste der auf Löschung wartenden Benutzer"
-
-#: src/Module/Admin/BaseUsers.php:99 mod/settings.php:787
-msgid "Normal Account Page"
-msgstr "Normales Konto"
-
-#: src/Module/Admin/BaseUsers.php:100 mod/settings.php:791
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
-
-#: src/Module/Admin/BaseUsers.php:101 mod/settings.php:795
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
-
-#: src/Module/Admin/BaseUsers.php:102 mod/settings.php:799
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde-Seite"
-
-#: src/Module/Admin/BaseUsers.php:103
-msgid "Private Forum"
-msgstr "Privates Forum"
-
-#: src/Module/Admin/BaseUsers.php:106 mod/settings.php:771
-msgid "Personal Page"
-msgstr "Persönliche Seite"
-
-#: src/Module/Admin/BaseUsers.php:107 mod/settings.php:775
-msgid "Organisation Page"
-msgstr "Organisationsseite"
-
-#: src/Module/Admin/BaseUsers.php:108 mod/settings.php:779
-msgid "News Page"
-msgstr "Nachrichtenseite"
-
-#: src/Module/Admin/BaseUsers.php:109 mod/settings.php:783
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
-
-#: src/Module/Admin/BaseUsers.php:110
-msgid "Relay"
-msgstr "Relais"
-
-#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
-#, php-format
-msgid "Theme %s disabled."
-msgstr "Theme %s deaktiviert."
-
-#: src/Module/Admin/Themes/Details.php:59 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:61 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:83
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
-
-#: src/Module/Admin/Themes/Index.php:51
-msgid "Themes reloaded"
-msgstr "Themes wurden neu geladen"
-
-#: 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/Themes/Embed.php:65
-msgid "Unknown theme."
-msgstr "Unbekanntes Theme"
-
-#: src/Module/Attach.php:50 src/Module/Attach.php:62
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: src/Module/Api/Twitter/ContactEndpoint.php:135
+msgid "Profile not found"
+msgstr "Profil wurde nicht gefunden"
#: src/Module/Apps.php:47
msgid "No installed applications."
@@ -6507,39 +7254,105 @@ msgstr "Keine Applikationen installiert."
msgid "Applications"
msgstr "Anwendungen"
-#: src/Module/Help.php:62
-msgid "Help:"
-msgstr "Hilfe:"
+#: src/Module/Attach.php:50 src/Module/Attach.php:62
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
-#: src/Module/BaseProfile.php:68 src/Content/Nav.php:179
-#: view/theme/frio/theme.php:227 mod/fbrowser.php:43
-msgid "Photos"
-msgstr "Bilder"
+#: src/Module/BaseAdmin.php:63
+msgid "You don't have access to administration pages."
+msgstr "Du hast keinen Zugriff auf die Administrationsseiten."
-#: src/Module/BaseProfile.php:71 mod/photos.php:129
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: src/Module/BaseAdmin.php:67
+msgid ""
+"Submanaged account can't access the administration pages. Please log back in"
+" as the main account."
+msgstr "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto."
-#: src/Module/BaseProfile.php:76 src/Module/BaseProfile.php:79
-#: src/Content/Nav.php:180 view/theme/frio/theme.php:228
-msgid "Videos"
-msgstr "Videos"
+#: src/Module/BaseAdmin.php:86
+msgid "Overview"
+msgstr "Übersicht"
-#: src/Module/BaseProfile.php:88 src/Module/BaseProfile.php:99
-#: src/Content/Nav.php:181 src/Content/Nav.php:248
-#: view/theme/frio/theme.php:229 view/theme/frio/theme.php:233 mod/cal.php:274
-#: mod/events.php:417
-msgid "Events"
-msgstr "Veranstaltungen"
+#: src/Module/BaseAdmin.php:89
+msgid "Configuration"
+msgstr "Konfiguration"
-#: src/Module/BaseProfile.php:91 src/Module/BaseProfile.php:102
-#: src/Content/Nav.php:248 view/theme/frio/theme.php:233
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65
+msgid "Additional features"
+msgstr "Zusätzliche Features"
-#: src/Module/BaseProfile.php:110 mod/notes.php:51
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: src/Module/BaseAdmin.php:97
+msgid "Database"
+msgstr "Datenbank"
+
+#: src/Module/BaseAdmin.php:98
+msgid "DB updates"
+msgstr "DB Updates"
+
+#: src/Module/BaseAdmin.php:99
+msgid "Inspect Deferred Workers"
+msgstr "Verzögerte Worker inspizieren"
+
+#: src/Module/BaseAdmin.php:100
+msgid "Inspect worker Queue"
+msgstr "Worker Warteschlange inspizieren"
+
+#: src/Module/BaseAdmin.php:102
+msgid "Tools"
+msgstr "Werkzeuge"
+
+#: src/Module/BaseAdmin.php:103
+msgid "Contact Blocklist"
+msgstr "Kontakt Blockliste"
+
+#: src/Module/BaseAdmin.php:104
+msgid "Server Blocklist"
+msgstr "Server Blockliste"
+
+#: src/Module/BaseAdmin.php:111
+msgid "Diagnostics"
+msgstr "Diagnostik"
+
+#: src/Module/BaseAdmin.php:112
+msgid "PHP Info"
+msgstr "PHP-Info"
+
+#: src/Module/BaseAdmin.php:113
+msgid "probe address"
+msgstr "Adresse untersuchen"
+
+#: src/Module/BaseAdmin.php:114
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
+
+#: src/Module/BaseAdmin.php:116
+msgid "Babel"
+msgstr "Babel"
+
+#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138
+msgid "ActivityPub Conversion"
+msgstr "Umwandlung nach ActivityPub"
+
+#: src/Module/BaseAdmin.php:126
+msgid "Addon Features"
+msgstr "Addon Features"
+
+#: src/Module/BaseAdmin.php:127
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen, die auf Bestätigung warten"
+
+#: src/Module/BaseApi.php:124
+#, php-format
+msgid "API endpoint %s %s is not implemented"
+msgstr "API Endpunkt %s %s ist nicht implementiert"
+
+#: src/Module/BaseApi.php:125
+msgid ""
+"The API endpoint is currently not implemented but might be in the future."
+msgstr "The API endpoint is currently not implemented but might be in the future."
+
+#: src/Module/BaseProfile.php:55 src/Module/Contact.php:947
+msgid "Profile Details"
+msgstr "Profildetails"
#: src/Module/BaseProfile.php:113
msgid "Only You Can See This"
@@ -6549,6 +7362,1557 @@ msgstr "Nur du kannst das sehen"
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
+#: 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/BaseSettings.php:43
+msgid "Account"
+msgstr "Nutzerkonto"
+
+#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:94
+#: src/Module/Settings/TwoFactor/Index.php:110
+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:171
+msgid "Manage Accounts"
+msgstr "Accounts Verwalten"
+
+#: src/Module/BaseSettings.php:101
+msgid "Connected apps"
+msgstr "Verbundene Programme"
+
+#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:77
+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: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/Contact.php:94
+#, 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:121
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+
+#: src/Module/Contact.php:417
+msgid "You can't block yourself"
+msgstr "Du kannst dich nicht selbst blockieren"
+
+#: src/Module/Contact.php:423
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
+
+#: src/Module/Contact.php:423
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
+
+#: src/Module/Contact.php:431
+msgid "You can't ignore yourself"
+msgstr "Du kannst dich nicht selbst ignorieren"
+
+#: src/Module/Contact.php:437
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
+
+#: src/Module/Contact.php:437
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
+
+#: src/Module/Contact.php:447
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
+
+#: src/Module/Contact.php:447
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
+
+#: src/Module/Contact.php:460
+msgid "Drop contact"
+msgstr "Kontakt löschen"
+
+#: src/Module/Contact.php:463 src/Module/Contact.php:887
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+
+#: src/Module/Contact.php:476
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
+
+#: src/Module/Contact.php:504
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
+
+#: src/Module/Contact.php:508
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
+
+#: src/Module/Contact.php:512
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit dir"
+
+#: src/Module/Contact.php:536
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+
+#: src/Module/Contact.php:538
+msgid "Never"
+msgstr "Niemals"
+
+#: src/Module/Contact.php:541
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
+
+#: src/Module/Contact.php:541
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
+
+#: src/Module/Contact.php:543 src/Module/Contact.php:1144
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
+
+#: src/Module/Contact.php:547
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
+
+#: src/Module/Contact.php:552
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
+
+#: src/Module/Contact.php:558
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
+
+#: src/Module/Contact.php:560
+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:563
+msgid "Fetch information"
+msgstr "Beziehe Information"
+
+#: src/Module/Contact.php:564
+msgid "Fetch keywords"
+msgstr "Schlüsselwörter abrufen"
+
+#: src/Module/Contact.php:565
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
+
+#: src/Module/Contact.php:577 src/Module/Contact.php:581
+#: src/Module/Contact.php:584 src/Module/Contact.php:588
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
+
+#: src/Module/Contact.php:578
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
+
+#: src/Module/Contact.php:579 src/Module/Contact.php:585
+#: src/Module/Contact.php:589
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
+
+#: src/Module/Contact.php:582 src/Module/Contact.php:586
+msgid "Native reshare"
+msgstr "Natives Teilen"
+
+#: src/Module/Contact.php:601
+msgid "Contact Information / Notes"
+msgstr "Kontakt-Informationen / -Notizen"
+
+#: src/Module/Contact.php:602
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
+
+#: src/Module/Contact.php:610
+msgid "Contact"
+msgstr "Kontakt"
+
+#: src/Module/Contact.php:614
+msgid "Their personal note"
+msgstr "Die persönliche Mitteilung"
+
+#: src/Module/Contact.php:616
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
+
+#: src/Module/Contact.php:619 src/Module/Contact.php:1112
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
+
+#: src/Module/Contact.php:620
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
+
+#: src/Module/Contact.php:621
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
+
+#: src/Module/Contact.php:622
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
+
+#: src/Module/Contact.php:627
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
+
+#: src/Module/Contact.php:629
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
+
+#: src/Module/Contact.php:631 src/Module/Contact.php:1154
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
+
+#: src/Module/Contact.php:634 src/Module/Contact.php:892
+#: src/Module/Contact.php:1181
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
+
+#: src/Module/Contact.php:638
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
+
+#: src/Module/Contact.php:639
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
+
+#: src/Module/Contact.php:640
+msgid "Currently archived"
+msgstr "Momentan archiviert"
+
+#: src/Module/Contact.php:641
+msgid "Awaiting connection acknowledge"
+msgstr "Bedarf der Bestätigung des Kontakts"
+
+#: src/Module/Contact.php:642 src/Module/Notifications/Introductions.php:177
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
+
+#: src/Module/Contact.php:642
+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:643
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
+
+#: src/Module/Contact.php:643
+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:645
+msgid "Keyword Deny List"
+msgstr "Liste der gesperrten Schlüsselwörter"
+
+#: src/Module/Contact.php:645
+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:661 src/Module/Settings/TwoFactor/Index.php:132
+msgid "Actions"
+msgstr "Aktionen"
+
+#: src/Module/Contact.php:668
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
+
+#: src/Module/Contact.php:670
+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.php:802
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
+
+#: src/Module/Contact.php:810
+msgid "Only show pending contacts"
+msgstr "Zeige nur noch ausstehende Kontakte."
+
+#: src/Module/Contact.php:818
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
+
+#: src/Module/Contact.php:823 src/Module/Contact.php:870
+#: src/Object/Post.php:308
+msgid "Ignored"
+msgstr "Ignoriert"
+
+#: src/Module/Contact.php:826
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
+
+#: src/Module/Contact.php:831 src/Module/Contact.php:871
+msgid "Archived"
+msgstr "Archiviert"
+
+#: src/Module/Contact.php:834
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
+
+#: src/Module/Contact.php:839 src/Module/Contact.php:869
+msgid "Hidden"
+msgstr "Verborgen"
+
+#: src/Module/Contact.php:842
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
+
+#: src/Module/Contact.php:850
+msgid "Organize your contact groups"
+msgstr "Verwalte deine Kontaktgruppen"
+
+#: src/Module/Contact.php:882
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
+
+#: src/Module/Contact.php:883 src/Module/Search/Index.php:192
+#, php-format
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
+
+#: src/Module/Contact.php:893 src/Module/Contact.php:1190
+msgid "Archive"
+msgstr "Archivieren"
+
+#: src/Module/Contact.php:893 src/Module/Contact.php:1190
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
+
+#: src/Module/Contact.php:896
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
+
+#: src/Module/Contact.php:931
+msgid "Conversations started by this contact"
+msgstr "Unterhaltungen, die von diesem Kontakt begonnen wurden"
+
+#: src/Module/Contact.php:936
+msgid "Posts and Comments"
+msgstr "Statusnachrichten und Kommentare"
+
+#: src/Module/Contact.php:954
+msgid "View all known contacts"
+msgstr "Alle bekannten Kontakte anzeigen"
+
+#: src/Module/Contact.php:964
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
+
+#: src/Module/Contact.php:1071
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
+
+#: src/Module/Contact.php:1075
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
+
+#: src/Module/Contact.php:1079
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
+
+#: src/Module/Contact.php:1097
+msgid "Pending outgoing contact request"
+msgstr "Ausstehende ausgehende Kontaktanfrage"
+
+#: src/Module/Contact.php:1099
+msgid "Pending incoming contact request"
+msgstr "Ausstehende eingehende Kontaktanfrage"
+
+#: src/Module/Contact.php:1164
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
+
+#: src/Module/Contact.php:1175
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
+
+#: src/Module/Contact.php:1183
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
+
+#: src/Module/Contact.php:1192
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
+
+#: src/Module/Contact.php:1200
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
+
+#: src/Module/Contact/Advanced.php:92
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
+
+#: src/Module/Contact/Advanced.php:109
+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."
+
+#: src/Module/Contact/Advanced.php:110
+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:130
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
+
+#: src/Module/Contact/Advanced.php:135
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
+
+#: src/Module/Contact/Advanced.php:136
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
+
+#: src/Module/Contact/Advanced.php:137
+msgid "Account URL"
+msgstr "Konto-URL"
+
+#: src/Module/Contact/Advanced.php:138
+msgid "Account URL Alias"
+msgstr "Konto URL Alias"
+
+#: src/Module/Contact/Advanced.php:139
+msgid "Friend Request URL"
+msgstr "URL für Kontaktschaftsanfragen"
+
+#: src/Module/Contact/Advanced.php:140
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Kontaktanfragen"
+
+#: src/Module/Contact/Advanced.php:141
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
+
+#: src/Module/Contact/Advanced.php:142
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
+
+#: src/Module/Contact/Advanced.php:143
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
+
+#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
+
+#: src/Module/Contact/Contacts.php:54
+msgid "No known contacts."
+msgstr "Keine bekannten Kontakte."
+
+#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99
+msgid "No common contacts."
+msgstr "Keine gemeinsamen Kontakte."
+
+#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97
+#, php-format
+msgid "Follower (%s)"
+msgid_plural "Followers (%s)"
+msgstr[0] "Folgende (%s)"
+msgstr[1] "Folgende (%s)"
+
+#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100
+#, php-format
+msgid "Following (%s)"
+msgid_plural "Following (%s)"
+msgstr[0] "Gefolgte (%s)"
+msgstr[1] "Gefolgte (%s)"
+
+#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:103
+#, php-format
+msgid "Mutual friend (%s)"
+msgid_plural "Mutual friends (%s)"
+msgstr[0] "Beidseitige Freundschafte (%s)"
+msgstr[1] "Beidseitige Freundschaften (%s)"
+
+#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105
+#, php-format
+msgid "These contacts both follow and are followed by %s."
+msgstr "Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s."
+
+#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87
+#, php-format
+msgid "Common contact (%s)"
+msgid_plural "Common contacts (%s)"
+msgstr[0] "Gemeinsamer Kontakt (%s)"
+msgstr[1] "Gemeinsame Kontakte (%s)"
+
+#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89
+#, php-format
+msgid ""
+"Both %s and yourself have publicly interacted with these "
+"contacts (follow, comment or likes on public posts)."
+msgstr "Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)"
+
+#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111
+#, php-format
+msgid "Contact (%s)"
+msgid_plural "Contacts (%s)"
+msgstr[0] "Kontakt (%s)"
+msgstr[1] "Kontakte (%s)"
+
+#: src/Module/Contact/Poke.php:113
+msgid "Error while sending poke, please retry."
+msgstr "Beim Versenden des Stupsers ist ein Fehler aufgetreten. Bitte erneut versuchen."
+
+#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55
+msgid "You must be logged in to use this module."
+msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können."
+
+#: src/Module/Contact/Poke.php:149
+msgid "Poke/Prod"
+msgstr "Anstupsen"
+
+#: src/Module/Contact/Poke.php:150
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
+
+#: src/Module/Contact/Poke.php:152
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst du mit dem Empfänger machen:"
+
+#: src/Module/Contact/Poke.php:153
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
+
+#: src/Module/Conversation/Community.php:69
+msgid "Local Community"
+msgstr "Lokale Gemeinschaft"
+
+#: src/Module/Conversation/Community.php:72
+msgid "Posts from local users on this server"
+msgstr "Beiträge von Nutzern dieses Servers"
+
+#: src/Module/Conversation/Community.php:80
+msgid "Global Community"
+msgstr "Globale Gemeinschaft"
+
+#: src/Module/Conversation/Community.php:83
+msgid "Posts from users of the whole federated network"
+msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks"
+
+#: src/Module/Conversation/Community.php:116
+msgid "Own Contacts"
+msgstr "Eigene Kontakte"
+
+#: src/Module/Conversation/Community.php:120
+msgid "Include"
+msgstr "Einschließen"
+
+#: src/Module/Conversation/Community.php:121
+msgid "Hide"
+msgstr "Verbergen"
+
+#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139
+#: src/Module/Search/Index.php:179
+msgid "No results."
+msgstr "Keine Ergebnisse."
+
+#: src/Module/Conversation/Community.php:174
+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:212
+msgid "Community option not available."
+msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar."
+
+#: src/Module/Conversation/Community.php:228
+msgid "Not available."
+msgstr "Nicht verfügbar."
+
+#: src/Module/Conversation/Network.php:161
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
+
+#: src/Module/Conversation/Network.php:165
+#, php-format
+msgid "Group: %s"
+msgstr "Gruppe: %s"
+
+#: src/Module/Conversation/Network.php:241
+msgid "Latest Activity"
+msgstr "Neueste Aktivität"
+
+#: src/Module/Conversation/Network.php:244
+msgid "Sort by latest activity"
+msgstr "Sortiere nach neueste Aktivität"
+
+#: src/Module/Conversation/Network.php:249
+msgid "Latest Posts"
+msgstr "Neueste Beiträge"
+
+#: src/Module/Conversation/Network.php:252
+msgid "Sort by post received date"
+msgstr "Nach Empfangsdatum der Beiträge sortiert"
+
+#: src/Module/Conversation/Network.php:257
+#: src/Module/Settings/Profile/Index.php:242
+msgid "Personal"
+msgstr "Persönlich"
+
+#: src/Module/Conversation/Network.php:260
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
+
+#: src/Module/Conversation/Network.php:265 src/Object/Post.php:334
+msgid "Starred"
+msgstr "Markierte"
+
+#: src/Module/Conversation/Network.php:268
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
+
+#: 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/ActivityPubConversion.php:58
+msgid "Formatted"
+msgstr "Formatiert"
+
+#: 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:139
+msgid "Source activity"
+msgstr "Quelle der Aktivität"
+
+#: src/Module/Debug/Babel.php:51
+msgid "Source input"
+msgstr "Originaltext:"
+
+#: src/Module/Debug/Babel.php:57
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::toPlaintext"
+
+#: src/Module/Debug/Babel.php:63
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (pures HTML)"
+
+#: src/Module/Debug/Babel.php:68
+msgid "BBCode::convert (hex)"
+msgstr "BBCode::convert (hex)"
+
+#: src/Module/Debug/Babel.php:73
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
+
+#: src/Module/Debug/Babel.php:79
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
+
+#: src/Module/Debug/Babel.php:85
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
+
+#: src/Module/Debug/Babel.php:91
+msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
+msgstr "BBCode::toMarkdown => Markdown::convert (rohes HTML)"
+
+#: src/Module/Debug/Babel.php:95
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
+
+#: src/Module/Debug/Babel.php:101
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+
+#: src/Module/Debug/Babel.php:107
+msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
+
+#: src/Module/Debug/Babel.php:115
+msgid "Item Body"
+msgstr "Beitragskörper"
+
+#: src/Module/Debug/Babel.php:119
+msgid "Item Tags"
+msgstr "Tags des Beitrags"
+
+#: src/Module/Debug/Babel.php:125
+msgid "PageInfo::appendToBody"
+msgstr "PageInfo::appendToBody"
+
+#: src/Module/Debug/Babel.php:130
+msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
+msgstr "PageInfo::appendToBody => BBCode::convert (pures HTML)"
+
+#: src/Module/Debug/Babel.php:134
+msgid "PageInfo::appendToBody => BBCode::convert"
+msgstr "PageInfo::appendToBody => BBCode::convert"
+
+#: src/Module/Debug/Babel.php:141
+msgid "Source input (Diaspora format)"
+msgstr "Originaltext (Diaspora Format): "
+
+#: src/Module/Debug/Babel.php:150
+msgid "Source input (Markdown)"
+msgstr "Originaltext (Markdown)"
+
+#: src/Module/Debug/Babel.php:156
+msgid "Markdown::convert (raw HTML)"
+msgstr "Markdown::convert (pures HTML)"
+
+#: src/Module/Debug/Babel.php:161
+msgid "Markdown::convert"
+msgstr "Markdown::convert"
+
+#: src/Module/Debug/Babel.php:167
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
+
+#: src/Module/Debug/Babel.php:174
+msgid "Raw HTML input"
+msgstr "Reine HTML Eingabe"
+
+#: src/Module/Debug/Babel.php:179
+msgid "HTML Input"
+msgstr "HTML Eingabe"
+
+#: src/Module/Debug/Babel.php:186
+msgid "HTML Purified (raw)"
+msgstr "HTML Purified (raw)"
+
+#: src/Module/Debug/Babel.php:191
+msgid "HTML Purified (hex)"
+msgstr "HTML Purified (hex)"
+
+#: src/Module/Debug/Babel.php:196
+msgid "HTML Purified"
+msgstr "HTML Purified"
+
+#: src/Module/Debug/Babel.php:202
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
+
+#: src/Module/Debug/Babel.php:208
+msgid "HTML::toBBCode => BBCode::convert"
+msgstr "HTML::toBBCode => BBCode::convert"
+
+#: src/Module/Debug/Babel.php:213
+msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
+msgstr "HTML::toBBCode => BBCode::convert (pures HTML)"
+
+#: src/Module/Debug/Babel.php:219
+msgid "HTML::toBBCode => BBCode::toPlaintext"
+msgstr "HTML::toBBCode => BBCode::toPlaintext"
+
+#: src/Module/Debug/Babel.php:225
+msgid "HTML::toMarkdown"
+msgstr "HTML::toMarkdown"
+
+#: src/Module/Debug/Babel.php:231
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
+
+#: src/Module/Debug/Babel.php:237
+msgid "HTML::toPlaintext (compact)"
+msgstr "HTML::toPlaintext (kompakt)"
+
+#: src/Module/Debug/Babel.php:255
+msgid "Decoded post"
+msgstr "Dekodierter Beitrag"
+
+#: src/Module/Debug/Babel.php:276
+msgid "Post array before expand entities"
+msgstr "Beiträgs Array bevor die Entitäten erweitert wurden."
+
+#: src/Module/Debug/Babel.php:283
+msgid "Post converted"
+msgstr "Konvertierter Beitrag"
+
+#: src/Module/Debug/Babel.php:288
+msgid "Converted body"
+msgstr "Konvertierter Beitragskörper"
+
+#: src/Module/Debug/Babel.php:294
+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:304
+msgid "Babel Diagnostic"
+msgstr "Babel Diagnostik"
+
+#: src/Module/Debug/Babel.php:305
+msgid "Source text"
+msgstr "Quelltext"
+
+#: src/Module/Debug/Babel.php:306
+msgid "BBCode"
+msgstr "BBCode"
+
+#: src/Module/Debug/Babel.php:308
+msgid "Markdown"
+msgstr "Markdown"
+
+#: src/Module/Debug/Babel.php:309
+msgid "HTML"
+msgstr "HTML"
+
+#: src/Module/Debug/Babel.php:311
+msgid "Twitter Source / Tweet URL (requires API key)"
+msgstr "Twitter Quelle / Tweet URL (benötigt API Schlüssel)"
+
+#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40
+#: 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/Localtime.php:49
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
+
+#: src/Module/Debug/Localtime.php:50
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+
+#: src/Module/Debug/Localtime.php:51
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
+
+#: src/Module/Debug/Localtime.php:54
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
+
+#: src/Module/Debug/Localtime.php:58
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
+
+#: src/Module/Debug/Localtime.php:62
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
+
+#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
+
+#: src/Module/Debug/Probe.php:53
+msgid "Probe Diagnostic"
+msgstr "Probe Diagnostik"
+
+#: src/Module/Debug/Probe.php:54
+msgid "Output"
+msgstr "Ergebnis"
+
+#: src/Module/Debug/Probe.php:57
+msgid "Lookup address"
+msgstr "Adresse nachschlagen"
+
+#: src/Module/Debug/WebFinger.php:52
+msgid "Webfinger Diagnostic"
+msgstr "Webfinger Diagnostik"
+
+#: src/Module/Debug/WebFinger.php:54
+msgid "Lookup address:"
+msgstr "Adresse nachschlagen:"
+
+#: src/Module/Delegation.php:147
+msgid "Switch between your accounts"
+msgstr "Wechsle deine Konten"
+
+#: src/Module/Delegation.php:148
+msgid "Manage your accounts"
+msgstr "Verwalte deine Konten"
+
+#: src/Module/Delegation.php:149
+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:150
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
+
+#: 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/Filer/RemoveTag.php:69
+msgid "Item was not removed"
+msgstr "Item wurde nicht entfernt"
+
+#: src/Module/Filer/RemoveTag.php:72
+msgid "Item was not deleted"
+msgstr "Item wurde nicht gelöscht"
+
+#: src/Module/Filer/SaveTag.php:69
+msgid "- select -"
+msgstr "- auswählen -"
+
+#: src/Module/FriendSuggest.php:65
+msgid "Suggested contact not found."
+msgstr "Vorgeschlagener Kontakt wurde nicht gefunden."
+
+#: src/Module/FriendSuggest.php:84
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
+
+#: src/Module/FriendSuggest.php:121
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
+
+#: src/Module/FriendSuggest.php:124
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
+
+#: src/Module/Friendica.php:61
+msgid "Installed addons/apps:"
+msgstr "Installierte Apps und Addons"
+
+#: src/Module/Friendica.php:66
+msgid "No installed addons/apps"
+msgstr "Es sind keine Addons oder Apps installiert"
+
+#: src/Module/Friendica.php:71
+#, php-format
+msgid "Read about the Terms of Service of this node."
+msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens."
+
+#: src/Module/Friendica.php:78
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert."
+
+#: src/Module/Friendica.php:96
+#, 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."
+
+#: src/Module/Friendica.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."
+
+#: src/Module/Friendica.php:102
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+
+#: src/Module/Friendica.php:102
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
+
+#: src/Module/Friendica.php:103
+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/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 "Der Name der Gruppe wurde nicht verändert."
+
+#: 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: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:293
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
+
+#: src/Module/Group.php:306
+msgid "Remove contact from group"
+msgstr "Entferne den Kontakt aus der Gruppe"
+
+#: src/Module/Group.php:327
+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:341
+msgid "Add contact to group"
+msgstr "Füge den Kontakt zur Gruppe hinzu"
+
+#: src/Module/HTTPException/MethodNotAllowed.php:32
+msgid "Method Not Allowed."
+msgstr "Methode nicht erlaubt."
+
+#: 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/Install.php:188
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikationsserver - Installation"
+
+#: src/Module/Install.php:199
+msgid "System check"
+msgstr "Systemtest"
+
+#: src/Module/Install.php:201 src/Module/Install.php:258
+#: src/Module/Install.php:341
+msgid "Requirement not satisfied"
+msgstr "Anforderung ist nicht erfüllt"
+
+#: src/Module/Install.php:202
+msgid "Optional requirement not satisfied"
+msgstr "Optionale Anforderung ist nicht erfüllt"
+
+#: src/Module/Install.php:203
+msgid "OK"
+msgstr "Ok"
+
+#: src/Module/Install.php:208
+msgid "Check again"
+msgstr "Noch einmal testen"
+
+#: src/Module/Install.php:223
+msgid "Base settings"
+msgstr "Grundeinstellungen"
+
+#: src/Module/Install.php:230
+msgid "Host name"
+msgstr "Host Name"
+
+#: src/Module/Install.php:232
+msgid ""
+"Overwrite this field in case the determinated hostname isn't right, "
+"otherweise leave it as is."
+msgstr "Sollte der ermittelte Hostname nicht stimmen, korrigiere bitte den Eintrag."
+
+#: src/Module/Install.php:235
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
+
+#: src/Module/Install.php:237
+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 "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."
+
+#: src/Module/Install.php:240
+msgid "Sub path of the URL"
+msgstr "Unterverzeichnis (Pfad) der URL"
+
+#: src/Module/Install.php:242
+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 "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."
+
+#: src/Module/Install.php:253
+msgid "Database connection"
+msgstr "Datenbankverbindung"
+
+#: src/Module/Install.php:254
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
+
+#: src/Module/Install.php:255
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting-Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
+
+#: src/Module/Install.php:256
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte, bevor du mit der Installation fortfährst."
+
+#: src/Module/Install.php:265
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
+
+#: src/Module/Install.php:270
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
+
+#: src/Module/Install.php:276
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
+
+#: src/Module/Install.php:278
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+
+#: src/Module/Install.php:281
+msgid "Database Name"
+msgstr "Datenbank-Name"
+
+#: src/Module/Install.php:285 src/Module/Install.php:315
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+
+#: src/Module/Install.php:300
+msgid "Site settings"
+msgstr "Server-Einstellungen"
+
+#: src/Module/Install.php:310
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
+
+#: src/Module/Install.php:312
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
+
+#: src/Module/Install.php:319
+msgid "System Language:"
+msgstr "Systemsprache:"
+
+#: src/Module/Install.php:321
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+
+#: src/Module/Install.php:333
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendica-Seite wurde installiert."
+
+#: src/Module/Install.php:343
+msgid "Installation finished"
+msgstr "Installation abgeschlossen"
+
+#: src/Module/Install.php:363
+msgid "Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.
" -msgstr "Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.
" - -#: src/Module/Security/TwoFactor/Verify.php:98 -#: src/Module/Security/TwoFactor/Recovery.php:85 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Hast du dein Handy nicht? Gib einen Zwei-Faktor-Wiederherstellungscode ein" - -#: src/Module/Security/TwoFactor/Verify.php:100 -msgid "This is my two-factor authenticator app device" -msgstr "Dies ist das Gerät auf dem meine 2FA Authentifizierungs-App läuft." - -#: src/Module/Security/TwoFactor/Verify.php:101 -msgid "Verify code and complete login" -msgstr "Code überprüfen und Anmeldung abschließen" - #: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Verbleibende Wiederherstellungscodes: %d" +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Security/TwoFactor/Verify.php:75 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Ungültiger Code, bitte erneut versuchen." + #: src/Module/Security/TwoFactor/Recovery.php:83 msgid "Two-factor recovery" msgstr "Zwei-Faktor-Wiederherstellung" @@ -6638,6 +9252,12 @@ msgid "" " to your mobile device." msgstr "Du kannst einen deiner einmaligen Wiederherstellungscodes eingeben, falls du den Zugriff auf dein Mobilgerät verloren hast." +#: src/Module/Security/TwoFactor/Recovery.php:85 +#: src/Module/Security/TwoFactor/Verify.php:98 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Hast du dein Handy nicht? Gib einen Zwei-Faktor-Wiederherstellungscode ein" + #: src/Module/Security/TwoFactor/Recovery.php:86 msgid "Please enter a recovery code" msgstr "Bitte gib einen Wiederherstellungscode ein" @@ -6646,1341 +9266,1255 @@ msgstr "Bitte gib einen Wiederherstellungscode ein" msgid "Submit recovery code and complete login" msgstr "Sende den Wiederherstellungscode und schließe die Anmeldung ab" -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" - -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Deine OpenID:" - -#: src/Module/Security/Login.php:129 +#: src/Module/Security/TwoFactor/Verify.php:95 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." +"Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.
" +msgstr "Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.
" -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Oder melde dich mit deiner OpenID an: " +#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein" -#: src/Module/Security/Login.php:141 src/Content/Nav.php:169 -msgid "Logout" -msgstr "Abmelden" +#: src/Module/Security/TwoFactor/Verify.php:100 +msgid "This is my two-factor authenticator app device" +msgstr "Dies ist das Gerät auf dem meine 2FA Authentifizierungs-App läuft." -#: src/Module/Security/Login.php:144 mod/lostpass.php:130 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" +#: src/Module/Security/TwoFactor/Verify.php:101 +msgid "Verify code and complete login" +msgstr "Code überprüfen und Anmeldung abschließen" -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Passwort: " +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "Delegierung erfolgreich eingerichtet." -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Anmeldedaten merken" +#: 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/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "Delegation erfolgreich aufgehoben." -#: src/Module/Security/Login.php:156 mod/lostpass.php:146 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" +#: 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/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Website-Nutzungsbedingungen" +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "Delegierter Nutzer nicht gefunden" -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "Nutzungsbedingungen" +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "Kein Verwalter" -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Website-Datenschutzerklärung" +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "Verwalter" -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "Datenschutzerklärung" +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "Zusätzliche Accounts" -#: src/Model/Mail.php:120 src/Model/Mail.php:258 -msgid "[no subject]" -msgstr "[kein Betreff]" +#: 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 "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst." -#: src/Model/Item.php:1550 +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "Einen zusätzlichen Account registrieren" + +#: 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 "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern." + +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "Bevollmächtigte" + +#: 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 "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:175 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: 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/Display.php:105 +msgid "The theme you chose isn't available." +msgstr "Das gewählte Theme ist nicht verfügbar" + +#: src/Module/Settings/Display.php:142 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" +msgid "%s - (Unsupported)" +msgstr "%s - (Nicht unterstützt)" -#: src/Model/Item.php:2491 include/conversation.php:227 -msgid "event" -msgstr "Veranstaltung" +#: src/Module/Settings/Display.php:188 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" -#: src/Model/Item.php:2493 include/conversation.php:235 mod/tagger.php:90 -msgid "photo" -msgstr "Foto" +#: src/Module/Settings/Display.php:190 +msgid "General Theme Settings" +msgstr "Allgemeine Theme-Einstellungen" -#: src/Model/Item.php:2495 -msgid "activity" -msgstr "Aktivität" +#: src/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" -#: src/Model/Item.php:2497 src/Object/Post.php:545 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" +#: src/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Einstellungen zum Inhalt" -#: src/Model/Item.php:2500 -msgid "post" -msgstr "Beitrag" +#: src/Module/Settings/Display.php:193 view/theme/duepuntozero/config.php:70 +#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 +msgid "Theme settings" +msgstr "Theme-Einstellungen" -#: src/Model/Item.php:2614 -#, php-format -msgid "Content warning: %s" -msgstr "Inhaltswarnung: %s" +#: src/Module/Settings/Display.php:194 +msgid "Calendar" +msgstr "Kalender" -#: src/Model/Item.php:2664 mod/videos.php:252 -msgid "View Video" -msgstr "Video ansehen" +#: src/Module/Settings/Display.php:200 +msgid "Display Theme:" +msgstr "Theme:" -#: src/Model/Item.php:2681 -msgid "bytes" -msgstr "Byte" +#: src/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" -#: src/Model/Item.php:2726 -msgid "View on separate page" -msgstr "Auf separater Seite ansehen" +#: src/Module/Settings/Display.php:204 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: src/Model/Item.php:2727 -msgid "view on separate page" -msgstr "auf separater Seite ansehen" +#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" -#: src/Model/Item.php:2732 src/Model/Item.php:2738 -#: src/Content/Text/BBCode.php:1142 -msgid "link to source" -msgstr "Link zum Originalbeitrag" +#: src/Module/Settings/Display.php:205 +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/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470 -#: src/Model/Event.php:941 -msgid "Starts:" -msgstr "Beginnt:" +#: src/Module/Settings/Display.php:206 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" -#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471 -#: src/Model/Event.php:945 -msgid "Finishes:" -msgstr "Endet:" +#: src/Module/Settings/Display.php:206 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten." -#: src/Model/Event.php:420 -msgid "all-day" -msgstr "ganztägig" +#: src/Module/Settings/Display.php:207 +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/Model/Event.php:446 -msgid "Sept" -msgstr "Sep" - -#: src/Model/Event.php:463 mod/cal.php:280 mod/events.php:426 -msgid "today" -msgstr "Heute" - -#: src/Model/Event.php:468 -msgid "No events to display" -msgstr "Keine Veranstaltung zum Anzeigen" - -#: src/Model/Event.php:587 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:618 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: src/Model/Event.php:619 -msgid "Duplicate event" -msgstr "Veranstaltung kopieren" - -#: src/Model/Event.php:620 -msgid "Delete event" -msgstr "Veranstaltung löschen" - -#: src/Model/Event.php:872 -msgid "D g:i A" -msgstr "D H:i" - -#: src/Model/Event.php:873 -msgid "g:i A" -msgstr "H:i" - -#: src/Model/Event.php:960 src/Model/Event.php:962 -msgid "Show map" -msgstr "Karte anzeigen" - -#: src/Model/Event.php:961 -msgid "Hide map" -msgstr "Karte verbergen" - -#: src/Model/Event.php:1053 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: src/Model/Event.php:1054 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch, %s" - -#: src/Model/Group.php:92 +#: src/Module/Settings/Display.php:207 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." +"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/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" +#: src/Module/Settings/Display.php:208 +msgid "Don't show emoticons" +msgstr "Keine Smileys anzeigen" -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "bearbeiten" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "hinzufügen" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "Gruppen bearbeiten" - -#: src/Model/Contact.php:979 src/Model/Contact.php:989 -#: include/conversation.php:952 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: src/Model/Contact.php:980 src/Model/Contact.php:990 -#: include/conversation.php:953 -msgid "View Contact" -msgstr "Kontakt anzeigen" - -#: src/Model/Contact.php:981 src/Model/Contact.php:994 -#: src/Content/Widget.php:76 view/theme/vier/theme.php:172 -#: include/conversation.php:969 mod/follow.php:146 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: src/Model/Contact.php:982 src/Model/Contact.php:995 -msgid "UnFollow" -msgstr "Entfolgen" - -#: src/Model/Contact.php:986 include/conversation.php:949 -msgid "View Status" -msgstr "Status anschauen" - -#: src/Model/Contact.php:988 include/conversation.php:951 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: src/Model/Contact.php:991 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: src/Model/Contact.php:992 include/conversation.php:954 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: src/Model/Contact.php:993 include/conversation.php:964 -msgid "Poke" -msgstr "Anstupsen" - -#: src/Model/Contact.php:1406 -msgid "Organisation" -msgstr "Organisation" - -#: src/Model/Contact.php:1410 src/Content/Widget.php:532 -msgid "News" -msgstr "Nachrichten" - -#: src/Model/Contact.php:1414 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:2159 mod/dfrn_request.php:355 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: src/Model/Contact.php:2169 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" - -#: src/Model/Contact.php:2178 +#: src/Module/Settings/Display.php:208 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" +"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/Model/Contact.php:2219 -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/Module/Settings/Display.php:209 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" -#: src/Model/Contact.php:2220 src/Model/Contact.php:2233 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." +#: src/Module/Settings/Display.php:209 +msgid "Automatic fetch new items when reaching the page end." +msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist." -#: src/Model/Contact.php:2231 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." +#: src/Module/Settings/Display.php:210 +msgid "Disable Smart Threading" +msgstr "Intelligentes Threading deaktivieren" -#: src/Model/Contact.php:2236 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." +#: src/Module/Settings/Display.php:210 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen aus." -#: src/Model/Contact.php:2239 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." +#: src/Module/Settings/Display.php:211 +msgid "Hide the Dislike feature" +msgstr "Das \"Nicht mögen\" Feature verbergen" -#: src/Model/Contact.php:2242 -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/Module/Settings/Display.php:211 +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/Model/Contact.php:2243 -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/Module/Settings/Display.php:212 +msgid "Display the resharer" +msgstr "Teilenden anzeigen" -#: src/Model/Contact.php:2249 -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/Module/Settings/Display.php:212 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde." -#: src/Model/Contact.php:2254 -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/Module/Settings/Display.php:213 +msgid "Stay local" +msgstr "Bleib lokal" -#: src/Model/Contact.php:2313 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." +#: src/Module/Settings/Display.php:213 +msgid "Don't go to a remote system when following a contact link." +msgstr "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird" -#: 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/Module/Settings/Display.php:215 +msgid "Beginning of week:" +msgstr "Wochenbeginn:" -#: 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/Module/Settings/Profile/Index.php:85 +msgid "Profile Name is required." +msgstr "Profilname ist erforderlich." -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Dateipfad zum Speicher" +#: src/Module/Settings/Profile/Index.php:137 +msgid "Profile couldn't be updated." +msgstr "Das Profil konnte nicht aktualisiert werden." -#: 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/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 +msgid "Label:" +msgstr "Bezeichnung:" -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Gib einen gültigen, existierenden Ordner ein" +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 +msgid "Value:" +msgstr "Wert:" -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Datenbankspeicher konnte nicht aktualisiert werden %s" +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 +msgid "Field Permissions" +msgstr "Berechtigungen des Felds" -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Der Datenbankspeicher konnte keine Daten einfügen" +#: 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/Model/User.php:186 src/Model/User.php:931 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." +#: src/Module/Settings/Profile/Index.php:205 +msgid "Add a new profile field" +msgstr "Neues Profilfeld hinzufügen" -#: src/Model/User.php:549 -msgid "Login failed" -msgstr "Anmeldung fehlgeschlagen" +#: src/Module/Settings/Profile/Index.php:235 +msgid "Profile Actions" +msgstr "Profilaktionen" -#: src/Model/User.php:581 -msgid "Not enough information to authenticate" -msgstr "Nicht genügend Informationen für die Authentifizierung" +#: src/Module/Settings/Profile/Index.php:236 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" -#: src/Model/User.php:676 -msgid "Password can't be empty" -msgstr "Das Passwort kann nicht leer sein" - -#: src/Model/User.php:695 -msgid "Empty passwords are not allowed." -msgstr "Leere Passwörter sind nicht erlaubt." - -#: src/Model/User.php:699 -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:705 -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:811 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: src/Model/User.php:818 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: src/Model/User.php:822 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: src/Model/User.php:830 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: src/Model/User.php:843 src/Security/Authentication.php:223 -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/Model/User.php:843 src/Security/Authentication.php:223 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" - -#: src/Model/User.php:849 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: src/Model/User.php:863 -#, 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:870 -#, 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:874 -#, 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:882 -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:887 -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:891 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: src/Model/User.php:894 -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:898 src/Model/User.php:906 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: src/Model/User.php:913 -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:921 src/Model/User.php:978 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: src/Model/User.php:965 src/Model/User.php:969 -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:992 -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:999 -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:1004 -msgid "Friends" -msgstr "Kontakte" - -#: src/Model/User.php:1008 -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:1199 -#, 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:1202 -#, 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:1235 src/Model/User.php:1342 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: src/Model/User.php:1255 -#, 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:1274 -#, php-format -msgid "Registration at %s" -msgstr "Registrierung als %s" - -#: src/Model/User.php:1298 -#, 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:1306 -#, 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/Profile.php:348 -msgid "Change profile photo" +#: src/Module/Settings/Profile/Index.php:238 +msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: src/Model/Profile.php:443 -msgid "Atom feed" -msgstr "Atom-Feed" +#: src/Module/Settings/Profile/Index.php:243 +msgid "Profile picture" +msgstr "Profilbild" -#: src/Model/Profile.php:481 src/Model/Profile.php:578 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" +#: src/Module/Settings/Profile/Index.php:244 +msgid "Location" +msgstr "Wohnort" -#: src/Model/Profile.php:482 -msgid "F d" -msgstr "d. F" +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 +#: src/Util/Temporal.php:95 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: src/Model/Profile.php:544 src/Model/Profile.php:629 -msgid "[today]" -msgstr "[heute]" +#: src/Module/Settings/Profile/Index.php:246 +msgid "Custom Profile Fields" +msgstr "Benutzerdefinierte Profilfelder" -#: src/Model/Profile.php:554 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" +#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" -#: src/Model/Profile.php:555 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" +#: src/Module/Settings/Profile/Index.php:252 +msgid "Display name:" +msgstr "Anzeigename:" -#: src/Model/Profile.php:616 -msgid "[No description]" -msgstr "[keine Beschreibung]" +#: src/Module/Settings/Profile/Index.php:255 +msgid "Street Address:" +msgstr "Adresse:" -#: src/Model/Profile.php:642 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" +#: src/Module/Settings/Profile/Index.php:256 +msgid "Locality/City:" +msgstr "Wohnort:" -#: src/Model/Profile.php:643 -msgid "Upcoming events the next 7 days:" -msgstr "Veranstaltungen der nächsten 7 Tage:" +#: src/Module/Settings/Profile/Index.php:257 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" -#: src/Model/Profile.php:818 +#: src/Module/Settings/Profile/Index.php:258 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: 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) Adresse" + +#: 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:262 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: 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:264 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: 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:265 #, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" +msgid "" +"Custom fields appear on your profile page.
\n" +"\t\t\t\tYou can use BBCodes in the field values.
\n" +"\t\t\t\tReorder by dragging the field title.
\n" +"\t\t\t\tEmpty the label field to remove a custom field.
\n" +"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" +msgstr "Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite
.\n\nBBCode kann verwendet werden
\nDie Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.
\nWird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.
\nNicht öffentliche Felder können nur von den ausgewählten Friendica Kontakte gesehen werden.
" -#: src/LegacyModule.php:49 +#: 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 "Legacy module file not found: %s" -msgstr "Legacy-Moduldatei nicht gefunden: %s" +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." + +#: 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 "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." + +#: src/Module/Settings/Profile/Photo/Crop.php:147 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" + +#: src/Module/Settings/Profile/Photo/Crop.php:166 +msgid "Photo not found." +msgstr "Foto nicht gefunden" + +#: src/Module/Settings/Profile/Photo/Crop.php:190 +msgid "Profile picture successfully updated." +msgstr "Profilbild erfolgreich aktualisiert." + +#: src/Module/Settings/Profile/Photo/Crop.php:213 +#: src/Module/Settings/Profile/Photo/Crop.php:217 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" + +#: src/Module/Settings/Profile/Photo/Crop.php:214 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." + +#: src/Module/Settings/Profile/Photo/Crop.php:216 +msgid "Use Image As Is" +msgstr "Bild wie es ist verwenden" + +#: src/Module/Settings/Profile/Photo/Index.php:47 +msgid "Missing uploaded image." +msgstr "Hochgeladenes Bild nicht gefunden." + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Profile Picture Settings" +msgstr "Einstellungen zum Profilbild" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Current Profile Picture" +msgstr "Aktuelles Profilbild" + +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload Profile Picture" +msgstr "Profilbild aktualisieren" + +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload Picture:" +msgstr "Bild hochladen" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "or" +msgstr "oder" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: 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/Trusted.php:30 +#: src/Module/Settings/TwoFactor/Verify.php:56 +msgid "Please enter your password to access this page." +msgstr "Bitte gib dein Passwort ein, um auf diese Seite zuzugreifen." + +#: 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/TwoFactor/Index.php:67 +msgid "Two-factor authentication successfully disabled." +msgstr "Zwei-Faktor Authentifizierung erfolgreich deaktiviert." + +#: src/Module/Settings/TwoFactor/Index.php:93 +msgid "Wrong Password" +msgstr "Falsches Passwort" + +#: src/Module/Settings/TwoFactor/Index.php:113 +msgid "" +"Use an application on a mobile device to get two-factor authentication " +"codes when prompted on login.
" +msgstr "Benutze eine App auf dein Smartphone um einen Zwei-Faktor identifikations Code zu bekommen wenn beim Loggin das verlagt wird.
" + +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Authenticator app" +msgstr "Zwei-Faktor Authentifizierungsapp" + +#: src/Module/Settings/TwoFactor/Index.php:118 +msgid "Configured" +msgstr "Konfiguriert" + +#: src/Module/Settings/TwoFactor/Index.php:118 +msgid "Not Configured" +msgstr "Nicht konfiguriert" + +#: src/Module/Settings/TwoFactor/Index.php:119 +msgid "You haven't finished configuring your authenticator app.
" +msgstr "Die Konfiguration deiner Zwei-Faktor Authentifizierungsapp ist nicht abgeschlossen.
" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "Your authenticator app is correctly configured.
" +msgstr "Deine Zwei-Faktor Authentifizierungsapp ist korrekt konfiguriert.
" + +#: src/Module/Settings/TwoFactor/Index.php:122 +msgid "Recovery codes" +msgstr "Wiederherstellungsschlüssel" + +#: src/Module/Settings/TwoFactor/Index.php:123 +msgid "Remaining valid codes" +msgstr "Verbleibende Wiederherstellungsschlüssel" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "" +"These one-use codes can replace an authenticator app code in case you " +"have lost access to it.
" +msgstr "Diese Einmalcodes können einen Authentifikator-App-Code ersetzen, falls du den Zugriff darauf verloren hast.
" + +#: src/Module/Settings/TwoFactor/Index.php:127 +msgid "App-specific passwords" +msgstr "App spezifische Passwörter" + +#: src/Module/Settings/TwoFactor/Index.php:128 +msgid "Generated app-specific passwords" +msgstr "App spezifische Passwörter erstellen" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "" +"These randomly generated passwords allow you to authenticate on apps not " +"supporting two-factor authentication.
" +msgstr "Diese zufällig erzeugten Passwörter erlauben es dir dich mit Apps anzumelden, die keine Zwei-Faktor-Authentifizierung unterstützen.
" + +#: src/Module/Settings/TwoFactor/Index.php:133 +msgid "Current password:" +msgstr "Aktuelles Passwort:" + +#: src/Module/Settings/TwoFactor/Index.php:133 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "Du musst dein aktuelles Passwort eingeben um die Einstellungen der Zwei-Faktor-Authentifizierung zu ändern" + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "Enable two-factor authentication" +msgstr "Aktiviere die Zwei-Faktor-Authentifizierung" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Disable two-factor authentication" +msgstr "Deaktiviere die Zwei-Faktor-Authentifizierung" + +#: src/Module/Settings/TwoFactor/Index.php:136 +msgid "Show recovery codes" +msgstr "Wiederherstellungscodes anzeigen" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "Manage app-specific passwords" +msgstr "App spezifische Passwörter verwalten" + +#: src/Module/Settings/TwoFactor/Index.php:138 +msgid "Manage trusted browsers" +msgstr "Vertrauenswürdige Browser verwalten" + +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Finish app configuration" +msgstr "Beende 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 dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.
Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein 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 du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Generiere neue Wiederherstellungscodes" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Weiter: Überprüfung" + +#: src/Module/Settings/TwoFactor/Trusted.php:49 +msgid "Trusted browsers successfully removed." +msgstr "Die vertrauenswürdigen Browser wurden erfolgreich entfernt." + +#: src/Module/Settings/TwoFactor/Trusted.php:59 +msgid "Trusted browser successfully removed." +msgstr "Der vertrauenswürdige Browser erfolgreich entfernt." + +#: src/Module/Settings/TwoFactor/Trusted.php:97 +msgid "Two-factor Trusted Browsers" +msgstr "Zwei-Faktor vertrauenswürdige Browser" + +#: src/Module/Settings/TwoFactor/Trusted.php:98 +msgid "" +"Trusted browsers are individual browsers you chose to skip two-factor " +"authentication to access Friendica. Please use this feature sparingly, as it" +" can negate the benefit of two-factor authentication." +msgstr "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt." + +#: src/Module/Settings/TwoFactor/Trusted.php:99 +msgid "Device" +msgstr "Gerät" + +#: src/Module/Settings/TwoFactor/Trusted.php:100 +msgid "OS" +msgstr "OS" + +#: src/Module/Settings/TwoFactor/Trusted.php:102 +msgid "Trusted" +msgstr "Vertrauenswürdig" + +#: src/Module/Settings/TwoFactor/Trusted.php:103 +msgid "Last Use" +msgstr "Zuletzt verwendet" + +#: src/Module/Settings/TwoFactor/Trusted.php:105 +msgid "Remove All" +msgstr "Alle entfernen" + +#: src/Module/Settings/TwoFactor/Verify.php:78 +msgid "Two-factor authentication successfully activated." +msgstr "Zwei-Faktor-Authentifizierung erfolgreich aktiviert." + +#: src/Module/Settings/TwoFactor/Verify.php:111 +#, php-format +msgid "" +"Or you can submit the authentication settings manually:
\n" +"Oder du kannst die Authentifizierungseinstellungen manuell übermitteln:
\nPlease scan this QR Code with your authenticator app and submit the " +"provided code.
" +msgstr "Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.
" + +#: src/Module/Settings/TwoFactor/Verify.php:135 +#, php-format +msgid "" +"Or you can open the following URL in your mobile device:
" +msgstr "Oder du kannst die folgende URL in deinem Mobilgerät öffnen:
" + +#: src/Module/Settings/TwoFactor/Verify.php:142 +msgid "Verify code and enable two-factor authentication" +msgstr "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung" + +#: src/Module/Settings/UserExport.php:69 +msgid "Export account" +msgstr "Account exportieren" + +#: src/Module/Settings/UserExport.php:69 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportiere Deine Account-Informationen und Kontakte. Verwende dies, um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." + +#: src/Module/Settings/UserExport.php:70 +msgid "Export all" +msgstr "Alles exportieren" + +#: src/Module/Settings/UserExport.php:70 +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 "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)." + +#: src/Module/Settings/UserExport.php:71 +msgid "Export Contacts to CSV" +msgstr "Kontakte nach CSV exportieren" + +#: src/Module/Settings/UserExport.php:71 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" 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/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: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:76 +msgid "Stack trace:" +msgstr "Stack trace:" + +#: src/Module/Special/HTTPException.php:80 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "Exception thrown in %s:%d" + +#: 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:176 +msgid "Private Message" +msgstr "Private Nachricht" + +#: src/Object/Post.php:192 src/Object/Post.php:194 +msgid "Edit" +msgstr "Bearbeiten" + +#: src/Object/Post.php:214 +msgid "Pinned item" +msgstr "Angehefteter Beitrag" + +#: src/Object/Post.php:218 +msgid "Delete globally" +msgstr "Global löschen" + +#: src/Object/Post.php:218 +msgid "Remove locally" +msgstr "Lokal entfernen" + +#: src/Object/Post.php:234 +#, php-format +msgid "Block %s" +msgstr "Blockiere %s" + +#: src/Object/Post.php:239 +msgid "Save to folder" +msgstr "In Ordner speichern" + +#: src/Object/Post.php:273 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: src/Object/Post.php:273 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: src/Object/Post.php:273 +msgid "I might attend" +msgstr "Ich werde eventuell teilnehmen" + +#: src/Object/Post.php:303 +msgid "Ignore thread" +msgstr "Thread ignorieren" + +#: src/Object/Post.php:304 +msgid "Unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: src/Object/Post.php:305 +msgid "Toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: src/Object/Post.php:317 +msgid "Pin" +msgstr "Anheften" + +#: src/Object/Post.php:318 +msgid "Unpin" +msgstr "Losmachen" + +#: src/Object/Post.php:319 +msgid "Toggle pin status" +msgstr "Angeheftet Status ändern" + +#: src/Object/Post.php:322 +msgid "Pinned" +msgstr "Angeheftet" + +#: src/Object/Post.php:329 +msgid "Add star" +msgstr "Markieren" + +#: src/Object/Post.php:330 +msgid "Remove star" +msgstr "Markierung entfernen" + +#: src/Object/Post.php:331 +msgid "Toggle star status" +msgstr "Markierung umschalten" + +#: src/Object/Post.php:338 +msgid "Add tag" +msgstr "Tag hinzufügen" + +#: src/Object/Post.php:351 +msgid "Quote share this" +msgstr "Teile und zitiere dies" + +#: src/Object/Post.php:351 +msgid "Quote Share" +msgstr "Zitat teilen" + +#: src/Object/Post.php:354 +msgid "Reshare this" +msgstr "Teile dies" + +#: src/Object/Post.php:354 +msgid "Reshare" +msgstr "Teilen" + +#: src/Object/Post.php:355 +msgid "Cancel your Reshare" +msgstr "Teilen aufheben" + +#: src/Object/Post.php:355 +msgid "Unshare" +msgstr "Nicht mehr 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:417 +msgid "Pushed" +msgstr "Pushed" + +#: src/Object/Post.php:417 +msgid "Pulled" +msgstr "Pulled" + +#: src/Object/Post.php:451 +msgid "to" +msgstr "zu" + +#: src/Object/Post.php:452 +msgid "via" +msgstr "via" + +#: src/Object/Post.php:453 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: src/Object/Post.php:454 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: src/Object/Post.php:492 +#, php-format +msgid "Reply to %s" +msgstr "Antworte %s" + +#: src/Object/Post.php:495 +msgid "More" +msgstr "Mehr" + +#: src/Object/Post.php:513 +msgid "Notifier task is pending" +msgstr "Die Benachrichtigungsaufgabe ist ausstehend" + +#: src/Object/Post.php:514 +msgid "Delivery to remote servers is pending" +msgstr "Die Auslieferung an Remote-Server steht noch aus" + +#: src/Object/Post.php:515 +msgid "Delivery to remote servers is underway" +msgstr "Die Auslieferung an Remote-Server ist unterwegs" + +#: src/Object/Post.php:516 +msgid "Delivery to remote servers is mostly done" +msgstr "Die Zustellung an Remote-Server ist fast erledigt" + +#: src/Object/Post.php:517 +msgid "Delivery to remote servers is done" +msgstr "Die Zustellung an die Remote-Server ist erledigt" + +#: src/Object/Post.php:537 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: src/Object/Post.php:538 +msgid "Show more" +msgstr "Zeige mehr" + +#: src/Object/Post.php:539 +msgid "Show fewer" +msgstr "Zeige weniger" + +#: src/Protocol/Diaspora.php:3434 +msgid "Attachments:" +msgstr "Anhänge:" + +#: src/Protocol/OStatus.php:1758 +#, php-format +msgid "%s is now following %s." +msgstr "%s folgt nun %s" + +#: src/Protocol/OStatus.php:1759 +msgid "following" +msgstr "folgen" + +#: src/Protocol/OStatus.php:1762 +#, php-format +msgid "%s stopped following %s." +msgstr "%s hat aufgehört %s, zu folgen" + +#: src/Protocol/OStatus.php:1763 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" #: 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/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/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/Console/User.php:158 -msgid "Enter new password: " -msgstr "Neues Passwort eingeben:" - -#: src/Console/User.php:166 mod/settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: src/Console/User.php:169 mod/settings.php:284 -msgid "Password changed." -msgstr "Passwort geändert." - -#: 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/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/SavedSearches.php:47 -msgid "Remove term" -msgstr "Begriff entfernen" - -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: src/Content/Widget/ContactBlock.php:73 -msgid "No contacts" -msgstr "Keine Kontakte" - -#: src/Content/Widget/ContactBlock.php:105 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" - -#: src/Content/Widget/ContactBlock.php:124 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: 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/TagCloud.php:68 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:905 -msgid "Tags" -msgstr "Tags" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:229 -#: src/Content/Widget.php:533 src/Content/Text/HTML.php:910 -msgid "Forums" -msgstr "Foren" - -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "Externer Link zum Forum" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:512 -msgid "show less" -msgstr "weniger anzeigen" - -#: src/Content/ForumManager.php:151 src/Content/Widget.php:411 -#: src/Content/Widget.php:513 -msgid "show more" -msgstr "mehr anzeigen" - -#: src/Content/Nav.php:90 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" - -#: src/Content/Nav.php:95 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:897 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, content" - -#: src/Content/Nav.php:169 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: src/Content/Nav.php:171 -msgid "Sign in" -msgstr "Anmelden" - -#: src/Content/Nav.php:177 src/Content/Nav.php:263 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:226 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:227 -msgid "Your photos" -msgstr "Deine Fotos" - -#: src/Content/Nav.php:180 view/theme/frio/theme.php:228 -msgid "Your videos" -msgstr "Deine Videos" - -#: src/Content/Nav.php:181 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: src/Content/Nav.php:182 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: src/Content/Nav.php:182 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: src/Content/Nav.php:202 src/Content/Nav.php:263 -msgid "Home" -msgstr "Pinnwand" - -#: src/Content/Nav.php:202 -msgid "Home Page" -msgstr "Homepage" - -#: src/Content/Nav.php:206 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: src/Content/Nav.php:212 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: src/Content/Nav.php:216 -msgid "Apps" -msgstr "Apps" - -#: src/Content/Nav.php:216 -msgid "Addon applications, utilities, games" -msgstr "Zusätzliche Anwendungen, Dienstprogramme, Spiele" - -#: src/Content/Nav.php:220 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: src/Content/Nav.php:223 src/Content/Text/HTML.php:904 -msgid "Full Text" -msgstr "Volltext" - -#: src/Content/Nav.php:244 -msgid "Community" -msgstr "Gemeinschaft" - -#: src/Content/Nav.php:244 -msgid "Conversations on this and other servers" -msgstr "Unterhaltungen auf diesem und anderen Servern" - -#: src/Content/Nav.php:251 -msgid "Directory" -msgstr "Verzeichnis" - -#: src/Content/Nav.php:251 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: src/Content/Nav.php:253 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica-Instanz" - -#: src/Content/Nav.php:256 -msgid "Terms of Service of this Friendica instance" -msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" - -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 -msgid "Network" -msgstr "Netzwerk" - -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: src/Content/Nav.php:267 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: src/Content/Nav.php:267 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: src/Content/Nav.php:269 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: src/Content/Nav.php:270 mod/settings.php:711 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: src/Content/Nav.php:270 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 mod/message.php:134 -msgid "Messages" -msgstr "Nachrichten" - -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 -msgid "Private mail" -msgstr "Private E-Mail" - -#: src/Content/Nav.php:274 -msgid "Inbox" -msgstr "Eingang" - -#: src/Content/Nav.php:275 -msgid "Outbox" -msgstr "Ausgang" - -#: src/Content/Nav.php:276 mod/message.php:46 mod/message.php:127 -msgid "New Message" -msgstr "Neue Nachricht" - -#: src/Content/Nav.php:279 -msgid "Accounts" -msgstr "Nutzerkonten" - -#: src/Content/Nav.php:279 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: src/Content/Nav.php:282 view/theme/frio/theme.php:235 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: src/Content/Nav.php:284 view/theme/frio/theme.php:236 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/bearbeiten" - -#: src/Content/Nav.php:289 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: src/Content/Nav.php:292 -msgid "Navigation" -msgstr "Navigation" - -#: src/Content/Nav.php:292 -msgid "Site map" -msgstr "Sitemap" - -#: src/Content/ContactSelector.php:51 -msgid "Frequently" -msgstr "immer wieder" - -#: src/Content/ContactSelector.php:52 -msgid "Hourly" -msgstr "Stündlich" - -#: src/Content/ContactSelector.php:53 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: src/Content/ContactSelector.php:54 -msgid "Daily" -msgstr "Täglich" - -#: src/Content/ContactSelector.php:55 -msgid "Weekly" -msgstr "Wöchentlich" - -#: src/Content/ContactSelector.php:56 -msgid "Monthly" -msgstr "Monatlich" - -#: src/Content/ContactSelector.php:123 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:124 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:125 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:128 -msgid "Zot!" -msgstr "Zott" - -#: src/Content/ContactSelector.php:129 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:130 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: src/Content/ContactSelector.php:131 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:132 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:133 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:134 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:135 -msgid "Discourse" -msgstr "Discourse" - -#: src/Content/ContactSelector.php:136 -msgid "Diaspora Connector" -msgstr "Diaspora Connector" - -#: src/Content/ContactSelector.php:137 -msgid "GNU Social Connector" -msgstr "GNU Social Connector" - -#: src/Content/ContactSelector.php:138 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:139 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:175 -#, php-format -msgid "%s (via %s)" -msgstr "%s (via %s)" - -#: 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/Widget.php:49 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: src/Content/Widget.php:50 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: src/Content/Widget.php:51 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: src/Content/Widget.php:53 -msgid "Connect" -msgstr "Verbinden" - -#: src/Content/Widget.php:68 -#, 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:74 view/theme/vier/theme.php:170 -msgid "Find People" -msgstr "Leute finden" - -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 mod/suggest.php:55 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: src/Content/Widget.php:216 -msgid "Everyone" -msgstr "Jeder" - -#: src/Content/Widget.php:245 -msgid "Relationships" -msgstr "Beziehungen" - -#: src/Content/Widget.php:286 -msgid "Protocols" -msgstr "Protokolle" - -#: src/Content/Widget.php:288 -msgid "All Protocols" -msgstr "Alle Protokolle" - -#: src/Content/Widget.php:316 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: src/Content/Widget.php:318 src/Content/Widget.php:352 -msgid "Everything" -msgstr "Alles" - -#: src/Content/Widget.php:350 -msgid "Categories" -msgstr "Kategorien" - -#: src/Content/Widget.php:407 -#, 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:506 -msgid "Archives" -msgstr "Archiv" - -#: src/Content/Widget.php:530 -msgid "Persons" -msgstr "Personen" - -#: src/Content/Widget.php:531 -msgid "Organisations" -msgstr "Organisationen" - -#: src/Content/Widget.php:536 mod/settings.php:762 -msgid "Account Types" -msgstr "Kontenarten" - -#: src/Content/Pager.php:216 mod/match.php:105 -msgid "first" -msgstr "erste" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "vorige" - -#: src/Content/Pager.php:276 mod/match.php:110 -msgid "next" -msgstr "nächste" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "letzte" - -#: src/Content/OEmbed.php:292 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: src/Content/OEmbed.php:410 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: src/Content/Text/HTML.php:795 -msgid "Loading more entries..." -msgstr "lade weitere Einträge..." - -#: src/Content/Text/HTML.php:796 -msgid "The end" -msgstr "Das Ende" - -#: src/Content/Text/HTML.php:947 src/Content/Text/BBCode.php:1577 -msgid "Click to open/close" -msgstr "Zum Öffnen/Schließen klicken" - -#: src/Content/Text/BBCode.php:1015 src/Content/Text/BBCode.php:1659 -#: src/Content/Text/BBCode.php:1660 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: src/Content/Text/BBCode.php:1117 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s%3$s" - -#: src/Content/Text/BBCode.php:1608 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: src/Content/Text/BBCode.php:1662 src/Content/Text/BBCode.php:1663 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: src/Content/Text/BBCode.php:1876 -msgid "Invalid source protocol" -msgstr "Ungültiges Quell-Protokoll" - -#: src/Content/Text/BBCode.php:1891 -msgid "Invalid link protocol" -msgstr "Ungültiges Link-Protokoll" - -#: 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/Repository/ProfileField.php:275 msgid "Hometown:" msgstr "Heimatort:" @@ -8057,336 +10591,116 @@ msgstr "Schule/Ausbildung" msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: 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:176 -msgid "Private Message" -msgstr "Private Nachricht" - -#: src/Object/Post.php:192 src/Object/Post.php:194 mod/settings.php:568 -msgid "Edit" -msgstr "Bearbeiten" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "Angehefteter Beitrag" - -#: src/Object/Post.php:218 -msgid "Delete globally" -msgstr "Global löschen" - -#: src/Object/Post.php:218 -msgid "Remove locally" -msgstr "Lokal entfernen" - -#: src/Object/Post.php:226 include/conversation.php:564 mod/photos.php:1470 -msgid "Select" -msgstr "Auswählen" - -#: src/Object/Post.php:231 -#, php-format -msgid "Block %s" -msgstr "Blockiere %s" - -#: src/Object/Post.php:236 -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:305 mod/ostatus_subscribe.php:98 -msgid "ignored" -msgstr "Ignoriert" - -#: 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 mod/photos.php:1534 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: src/Object/Post.php:345 -msgid "like" -msgstr "mag ich" - -#: src/Object/Post.php:346 mod/photos.php:1537 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: src/Object/Post.php:346 -msgid "dislike" -msgstr "mag ich nicht" - -#: src/Object/Post.php:348 -msgid "Quote share this" -msgstr "Teile und zitiere dies" - -#: src/Object/Post.php:348 -msgid "Quote Share" -msgstr "Zitat teilen" - -#: src/Object/Post.php:351 -msgid "Reshare this" -msgstr "Teile dies" - -#: src/Object/Post.php:351 -msgid "Reshare" -msgstr "Teilen" - -#: src/Object/Post.php:352 -msgid "Cancel your Reshare" -msgstr "Teilen aufheben" - -#: src/Object/Post.php:352 -msgid "Unshare" -msgstr "Nicht mehr teilen" - -#: src/Object/Post.php:397 -#, php-format -msgid "%s (Received %s)" -msgstr "%s (Empfangen %s)" - -#: src/Object/Post.php:402 -msgid "Comment this item on your system" -msgstr "Kommentiere diesen Beitrag von deinem System aus" - -#: src/Object/Post.php:402 -msgid "remote comment" -msgstr "Entfernter Kommentar" - -#: src/Object/Post.php:414 -msgid "Pushed" -msgstr "Pushed" - -#: src/Object/Post.php:414 -msgid "Pulled" -msgstr "Pulled" - -#: src/Object/Post.php:421 include/conversation.php:960 -msgid "Languages" -msgstr "Sprachen" - -#: src/Object/Post.php:432 include/conversation.php:613 -msgid "Categories:" -msgstr "Kategorien:" - -#: src/Object/Post.php:433 include/conversation.php:614 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: src/Object/Post.php:444 src/Object/Post.php:445 -#: include/conversation.php:600 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." - -#: src/Object/Post.php:446 -msgid "to" -msgstr "zu" - -#: src/Object/Post.php:447 -msgid "via" -msgstr "via" - -#: src/Object/Post.php:448 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: src/Object/Post.php:449 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: src/Object/Post.php:458 include/conversation.php:621 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: src/Object/Post.php:486 src/Object/Post.php:948 mod/photos.php:1379 -#: mod/photos.php:1436 mod/photos.php:1511 -msgid "Comment" -msgstr "Kommentar" - -#: src/Object/Post.php:487 -#, php-format -msgid "Reply to %s" -msgstr "Antworte %s" - -#: src/Object/Post.php:490 -msgid "More" -msgstr "Mehr" - -#: src/Object/Post.php:508 -msgid "Notifier task is pending" -msgstr "Die Benachrichtigungsaufgabe ist ausstehend" - -#: src/Object/Post.php:509 -msgid "Delivery to remote servers is pending" -msgstr "Die Auslieferung an Remote-Server steht noch aus" - -#: src/Object/Post.php:510 -msgid "Delivery to remote servers is underway" -msgstr "Die Auslieferung an Remote-Server ist unterwegs" - -#: src/Object/Post.php:511 -msgid "Delivery to remote servers is mostly done" -msgstr "Die Zustellung an Remote-Server ist fast erledigt" - -#: src/Object/Post.php:512 -msgid "Delivery to remote servers is done" -msgstr "Die Zustellung an die Remote-Server ist erledigt" - -#: src/Object/Post.php:532 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: src/Object/Post.php:533 -msgid "Show more" -msgstr "Zeige mehr" - -#: src/Object/Post.php:534 -msgid "Show fewer" -msgstr "Zeige weniger" - -#: 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)." - -#: src/BaseModule.php:179 -msgid "All contacts" -msgstr "Alle Kontakte" - -#: src/BaseModule.php:202 -msgid "Common" -msgstr "Gemeinsam" - -#: src/Protocol/Diaspora.php:3443 -msgid "Attachments:" -msgstr "Anhänge:" - -#: src/Protocol/OStatus.php:1760 -#, php-format -msgid "%s is now following %s." -msgstr "%s folgt nun %s" - -#: src/Protocol/OStatus.php:1761 -msgid "following" -msgstr "folgen" - -#: src/Protocol/OStatus.php:1764 -#, php-format -msgid "%s stopped following %s." -msgstr "%s hat aufgehört %s, zu folgen" - -#: src/Protocol/OStatus.php:1765 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: src/App.php:311 -msgid "No system theme config value set." -msgstr "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt." - -#: src/Security/Authentication.php:209 src/Security/Authentication.php:261 +#: src/Security/Authentication.php:210 src/Security/Authentication.php:262 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:273 msgid "Login failed. Please check your credentials." msgstr "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben." -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:392 #, php-format msgid "Welcome %s" msgstr "Willkommen %s" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:393 msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." +#: src/Util/EMailer/MailBuilder.php:259 +msgid "Friendica Notification" +msgstr "Friendica-Benachrichtigung" + +#: 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 Administrator" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: 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 "danke" + +#: src/Util/Temporal.php:167 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" + +#: src/Util/Temporal.php:314 +msgid "never" +msgstr "nie" + +#: src/Util/Temporal.php:321 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: src/Util/Temporal.php:329 +msgid "year" +msgstr "Jahr" + +#: src/Util/Temporal.php:329 +msgid "years" +msgstr "Jahre" + +#: src/Util/Temporal.php:330 +msgid "months" +msgstr "Monate" + +#: src/Util/Temporal.php:331 +msgid "weeks" +msgstr "Wochen" + +#: src/Util/Temporal.php:332 +msgid "days" +msgstr "Tage" + +#: src/Util/Temporal.php:333 +msgid "hour" +msgstr "Stunde" + +#: src/Util/Temporal.php:333 +msgid "hours" +msgstr "Stunden" + +#: src/Util/Temporal.php:334 +msgid "minute" +msgstr "Minute" + +#: src/Util/Temporal.php:334 +msgid "minutes" +msgstr "Minuten" + +#: src/Util/Temporal.php:335 +msgid "second" +msgstr "Sekunde" + +#: src/Util/Temporal.php:335 +msgid "seconds" +msgstr "Sekunden" + +#: src/Util/Temporal.php:345 +#, php-format +msgid "in %1$d %2$s" +msgstr "in %1$d %2$s" + +#: src/Util/Temporal.php:348 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" + +#: src/Worker/Delivery.php:570 +msgid "(no subject)" +msgstr "(kein Betreff)" + #: view/theme/duepuntozero/config.php:52 msgid "default" msgstr "Standard" @@ -8419,50 +10733,6 @@ msgstr "slackr" msgid "Variations" msgstr "Variationen" -#: 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." - -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 -msgid "Skip to main content" -msgstr "Zum Inhalt der Seite gehen" - -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 -msgid "Back to top" -msgstr "Zurück nach Oben" - #: view/theme/frio/config.php:142 msgid "Light (Accented)" msgstr "Hell (Akzentuiert)" @@ -8573,18 +10843,58 @@ msgstr "Hintergrundfarbe der Login-Seite" 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:207 +#: 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." + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "Zum Inhalt der Seite gehen" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "Zurück nach Oben" + +#: view/theme/frio/theme.php:208 msgid "Guest" msgstr "Gast" -#: view/theme/frio/theme.php:210 +#: view/theme/frio/theme.php:211 msgid "Visitor" msgstr "Besucher" -#: view/theme/frio/theme.php:322 include/conversation.php:948 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - #: view/theme/quattro/config.php:73 msgid "Alignment" msgstr "Ausrichtung" @@ -8652,2295 +10962,3 @@ msgstr "Letzte Nutzer" #: view/theme/vier/theme.php:211 msgid "Quick Start" msgstr "Schnell-Start" - -#: include/enotify.php:51 -msgid "[Friendica:Notify]" -msgstr "[Friendica Meldung]" - -#: include/enotify.php:137 -#, php-format -msgid "%s New mail received at %s" -msgstr "%sNeue Nachricht auf %s empfangen" - -#: include/enotify.php:139 -#, 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:140 -msgid "a private message" -msgstr "eine private Nachricht" - -#: include/enotify.php:140 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s schickte dir %2$s." - -#: include/enotify.php:142 -#, 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:188 -#, 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:190 -#, 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:192 -#, 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:202 -#, php-format -msgid "%1$s replied to you on your %2$s %3$s" -msgstr "%1$s hat dir auf (%2$s) %3$s geantwortet" - -#: include/enotify.php:204 -#, php-format -msgid "%1$s tagged you on your %2$s %3$s" -msgstr "%1$s erwähnte dich auf (%2$s) %3$s" - -#: include/enotify.php:206 -#, php-format -msgid "%1$s commented on your %2$s %3$s" -msgstr "%1$s kommentierte auf (%2$s) %3$s" - -#: include/enotify.php:213 -#, 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:215 -#, 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:217 -#, 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:228 -#, php-format -msgid "%s %s tagged you" -msgstr "%s %s hat dich erwähnt" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s erwähnte dich auf %2$s" - -#: include/enotify.php:232 -#, 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:234 -#, 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:239 include/enotify.php:254 include/enotify.php:279 -#: include/enotify.php:298 include/enotify.php:314 -#, 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:246 -#, php-format -msgid "%s %s posted to your profile wall" -msgstr "%s%s hat auf deine Pinnwand gepostet" - -#: include/enotify.php:248 -#, 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:249 -#, 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:262 -#, php-format -msgid "%s %s shared a new post" -msgstr "%s%shat einen Beitrag geteilt" - -#: 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: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:270 -#, php-format -msgid "%s %s shared a post from %s" -msgstr "%s%s hat einen Beitrag von %s geteilt" - -#: include/enotify.php:272 -#, php-format -msgid "%1$s shared a post from %2$s at %3$s" -msgstr "%1$s hat einen Beitrag von %2$s auf %3$s geteilt" - -#: include/enotify.php:273 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url] from %3$s." -msgstr "%1$s [url=%2$s]teilte einen Beitrag[/url] von %3$s." - -#: include/enotify.php:286 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s%2$shat dich angestubst" - -#: include/enotify.php:288 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s hat dich auf %2$s angestupst" - -#: include/enotify.php:289 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]hat dich angestupst[/url]." - -#: include/enotify.php:306 -#, php-format -msgid "%s %s tagged your post" -msgstr "%s%s hat deinen Beitrag verschlagwortet" - -#: include/enotify.php:308 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s Deinen Beitrag auf %2$s verschlagwortet" - -#: include/enotify.php:309 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s verschlagwortete [url=%2$s]Deinen Beitrag[/url]" - -#: include/enotify.php:321 -#, php-format -msgid "%s Introduction received" -msgstr "%sVorstellung erhalten" - -#: include/enotify.php:323 -#, 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:324 -#, 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:329 include/enotify.php:375 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Hier kannst du das Profil betrachten: %s" - -#: include/enotify.php:331 -#, 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:338 -#, php-format -msgid "%s A new person is sharing with you" -msgstr "%sEine neue Person teilt nun mit dir" - -#: include/enotify.php:340 include/enotify.php:341 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s teilt mit dir auf %2$s" - -#: include/enotify.php:348 -#, php-format -msgid "%s You have a new follower" -msgstr "%sDu hast einen neuen Kontakt" - -#: include/enotify.php:350 include/enotify.php:351 -#, 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:364 -#, php-format -msgid "%s Friend suggestion received" -msgstr "%sKontaktvorschlag erhalten" - -#: include/enotify.php:366 -#, 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:367 -#, 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:373 -msgid "Name:" -msgstr "Name:" - -#: include/enotify.php:374 -msgid "Photo:" -msgstr "Foto:" - -#: include/enotify.php:377 -#, 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:385 include/enotify.php:400 -#, php-format -msgid "%s Connection accepted" -msgstr "%sKontaktanfrage bestätigt" - -#: include/enotify.php:387 include/enotify.php:402 -#, 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:388 include/enotify.php:403 -#, 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:393 -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:395 -#, 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:408 -#, 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' 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:410 -#, 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:412 -#, 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:422 mod/removeme.php:63 -msgid "[Friendica System Notify]" -msgstr "[Friendica-Systembenachrichtigung]" - -#: include/enotify.php:422 -msgid "registration request" -msgstr "Registrierungsanfrage" - -#: include/enotify.php:424 -#, 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:425 -#, 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:430 -#, php-format -msgid "" -"Full Name:\t%s\n" -"Site Location:\t%s\n" -"Login Name:\t%s (%s)" -msgstr "Kompletter Name: %s\nURL der Seite: %s\nLogin Name: %s(%s)" - -#: include/enotify.php:436 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." - -#: 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/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/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/conversation.php:195 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:230 include/conversation.php:239 mod/tagger.php:90 -msgid "status" -msgstr "Status" - -#: include/conversation.php:249 mod/tagger.php:123 -#, 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:636 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: include/conversation.php:702 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:707 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:744 include/conversation.php:747 -#: include/conversation.php:750 include/conversation.php:753 -#, php-format -msgid "You had been addressed (%s)." -msgstr "Du wurdest angeschrieben (%s)." - -#: include/conversation.php:756 -#, php-format -msgid "You are following %s." -msgstr "Du folgst %s." - -#: include/conversation.php:759 -msgid "Tagged" -msgstr "Verschlagwortet" - -#: include/conversation.php:772 include/conversation.php:1115 -#: include/conversation.php:1153 -#, php-format -msgid "%s reshared this." -msgstr "%s hat dies geteilt" - -#: include/conversation.php:774 -msgid "Reshared" -msgstr "Geteilt" - -#: include/conversation.php:774 -#, php-format -msgid "Reshared by %s" -msgstr "Von %s geteilt" - -#: include/conversation.php:777 -#, php-format -msgid "%s is participating in this thread." -msgstr "%s ist an der Unterhaltung beteiligt." - -#: include/conversation.php:780 -msgid "Stored" -msgstr "Gespeichert" - -#: include/conversation.php:783 -msgid "Global" -msgstr "Global" - -#: include/conversation.php:786 -msgid "Relayed" -msgstr "Übermittelt" - -#: include/conversation.php:786 -#, php-format -msgid "Relayed by %s." -msgstr "Von %s übermittelt" - -#: include/conversation.php:789 -msgid "Fetched" -msgstr "Abgerufen" - -#: include/conversation.php:789 -#, php-format -msgid "Fetched because of %s" -msgstr "Wegen %s abgerufen" - -#: include/conversation.php:1100 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:1103 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:1106 -#, php-format -msgid "%s attends." -msgstr "%s nimmt teil." - -#: include/conversation.php:1109 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nimmt nicht teil." - -#: include/conversation.php:1112 -#, php-format -msgid "%s attends maybe." -msgstr "%s nimmt eventuell teil." - -#: include/conversation.php:1121 -msgid "and" -msgstr "und" - -#: include/conversation.php:1124 -#, php-format -msgid "and %d other people" -msgstr "und %dandere" - -#: include/conversation.php:1132 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:1133 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:1136 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:1137 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen dies nicht." - -#: include/conversation.php:1140 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d Personen nehmen teil" - -#: include/conversation.php:1141 -#, php-format -msgid "%s attend." -msgstr "%s nehmen teil." - -#: include/conversation.php:1144 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d Personen nehmen nicht teil" - -#: include/conversation.php:1145 -#, php-format -msgid "%s don't attend." -msgstr "%s nehmen nicht teil." - -#: include/conversation.php:1148 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d Personen nehmen eventuell teil" - -#: include/conversation.php:1149 -#, php-format -msgid "%s attend maybe." -msgstr "%s nimmt eventuell teil." - -#: include/conversation.php:1152 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d Personen haben dies geteilt" - -#: include/conversation.php:1182 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1184 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1186 -msgid "Where are you right now?" -msgstr "Wo hältst du dich jetzt gerade auf?" - -#: include/conversation.php:1187 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1197 -msgid "New Post" -msgstr "Neuer Beitrag" - -#: include/conversation.php:1200 -msgid "Share" -msgstr "Teilen" - -#: include/conversation.php:1202 mod/editpost.php:90 mod/wallmessage.php:153 -#: mod/message.php:202 mod/message.php:371 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: include/conversation.php:1203 mod/editpost.php:91 -msgid "upload photo" -msgstr "Bild hochladen" - -#: include/conversation.php:1204 mod/editpost.php:92 -msgid "Attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1205 mod/editpost.php:93 -msgid "attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1215 mod/editpost.php:101 -msgid "set location" -msgstr "Ort setzen" - -#: include/conversation.php:1216 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: include/conversation.php:1217 mod/editpost.php:103 -msgid "clear location" -msgstr "Ort löschen" - -#: include/conversation.php:1223 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: include/conversation.php:1224 mod/photos.php:969 mod/photos.php:1335 -#: mod/editpost.php:134 mod/events.php:578 -msgid "Permissions" -msgstr "Berechtigungen" - -#: include/conversation.php:1233 mod/editpost.php:114 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: include/conversation.php:1251 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "Composer Seite öffnen" - -#: 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/wall_upload.php:233 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" - -#: 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/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:79 mod/repair_ostatus.php:65 -msgid "Done" -msgstr "Erledigt" - -#: mod/ostatus_subscribe.php:93 -msgid "success" -msgstr "Erfolg" - -#: mod/ostatus_subscribe.php:95 -msgid "failed" -msgstr "Fehlgeschlagen" - -#: mod/ostatus_subscribe.php:103 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:130 mod/photos.php:1638 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:132 mod/photos.php:1105 mod/photos.php:1640 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:183 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:222 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:280 -msgid "Album successfully deleted" -msgstr "Album wurde erfolgreich gelöscht." - -#: mod/photos.php:282 -msgid "Album was empty." -msgstr "Album ist leer." - -#: mod/photos.php:314 -msgid "Failed to delete the photo." -msgstr "Das Foto konnte nicht gelöscht werden." - -#: mod/photos.php:589 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:589 -#, 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:678 -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:681 -msgid "Image file is missing" -msgstr "Bilddatei konnte nicht gefunden werden." - -#: mod/photos.php:686 -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:710 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:841 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:907 mod/videos.php:182 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/photos.php:961 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:965 mod/photos.php:1050 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:966 -msgid "or select existing album:" -msgstr "oder wähle ein bestehendes Album:" - -#: mod/photos.php:967 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1033 -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:1034 mod/photos.php:1055 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:1061 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1062 -msgid "Drop Album" -msgstr "Album löschen" - -#: mod/photos.php:1067 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1069 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1090 mod/photos.php:1623 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1127 -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:1129 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1139 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest du wirklich dieses Foto löschen?" - -#: mod/photos.php:1140 mod/photos.php:1340 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:1231 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1233 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1234 -msgid "Delete photo" -msgstr "Foto löschen" - -#: mod/photos.php:1235 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1242 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1248 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1308 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1311 -msgid "[Select tags to remove]" -msgstr "[Zu entfernende Tags auswählen]" - -#: mod/photos.php:1326 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1327 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1328 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1328 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1329 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1330 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1331 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1533 -msgid "Like" -msgstr "Mag ich" - -#: mod/photos.php:1535 -msgid "Dislike" -msgstr "Mag ich nicht" - -#: mod/photos.php:1559 -msgid "Map" -msgstr "Karte" - -#: mod/photos.php:1629 mod/videos.php:259 -msgid "View Album" -msgstr "Album betrachten" - -#: 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:241 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: 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:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: 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:278 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: 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: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: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: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: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: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: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:522 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" - -#: mod/settings.php:90 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: 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:248 -msgid "Importing Contacts done" -msgstr "Kontakte wurden importiert." - -#: mod/settings.php:261 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: mod/settings.php:273 -msgid "Passwords do not match." -msgstr "Die Passwörter stimmen nicht überein." - -#: mod/settings.php:287 -msgid "Password unchanged." -msgstr "Passwort unverändert." - -#: mod/settings.php:372 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: mod/settings.php:375 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: mod/settings.php:382 -msgid "Wrong Password." -msgstr "Falsches Passwort" - -#: mod/settings.php:387 -msgid "Invalid email." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/settings.php:393 -msgid "Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: mod/settings.php:431 -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:434 -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:451 -msgid "Settings were not updated." -msgstr "Einstellungen nicht aktualisiert" - -#: mod/settings.php:507 mod/settings.php:533 mod/settings.php:567 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Redirect" -msgstr "Umleiten" - -#: mod/settings.php:514 mod/settings.php:540 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:525 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: mod/settings.php:566 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:570 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: mod/settings.php:571 -msgid "No name" -msgstr "Kein Name" - -#: mod/settings.php:572 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:583 -msgid "No Addon settings configured" -msgstr "Keine Addon-Einstellungen konfiguriert" - -#: mod/settings.php:592 -msgid "Addon Settings" -msgstr "Addon Einstellungen" - -#: mod/settings.php:613 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:638 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:638 mod/settings.php:639 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:638 mod/settings.php:639 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:638 mod/settings.php:639 -#, 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:639 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:670 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:675 mod/settings.php:711 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:686 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:687 -msgid "Accept only top level posts by contacts you follow" -msgstr "Ausschließlich Unterhaltungen von meinen Kontakten anzeigen" - -#: mod/settings.php:687 -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:688 -msgid "Disable Content Warning" -msgstr "Inhaltswarnung ausschalten" - -#: mod/settings.php:688 -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:689 -msgid "Disable intelligent shortening" -msgstr "Intelligentes Link-Kürzen ausschalten" - -#: mod/settings.php:689 -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:690 -msgid "Attach the link title" -msgstr "Link Titel hinzufügen" - -#: mod/settings.php:690 -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:691 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" - -#: mod/settings.php:691 -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:692 -msgid "Default group for OStatus contacts" -msgstr "Voreingestellte Gruppe für OStatus-Kontakte" - -#: mod/settings.php:693 -msgid "Your legacy GNU Social account" -msgstr "Dein alter GNU Social-Account" - -#: mod/settings.php:693 -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:696 -msgid "Repair OStatus subscriptions" -msgstr "OStatus-Abonnements reparieren" - -#: mod/settings.php:700 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:701 -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:702 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail-Check" - -#: mod/settings.php:704 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:705 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:706 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:707 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:708 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:709 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:710 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:711 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:711 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:712 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/settings.php:726 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." - -#: mod/settings.php:763 -msgid "Personal Page Subtypes" -msgstr "Unterarten der persönlichen Seite" - -#: mod/settings.php:764 -msgid "Community Forum Subtypes" -msgstr "Unterarten des Gemeinschaftsforums" - -#: mod/settings.php:772 -msgid "Account for a personal profile." -msgstr "Konto für ein persönliches Profil." - -#: mod/settings.php:776 -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:780 -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:784 -msgid "Account for community discussions." -msgstr "Konto für Diskussionsforen. " - -#: mod/settings.php:788 -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:792 -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:796 -msgid "Automatically approves all contact requests." -msgstr "Bestätigt alle Kontaktanfragen automatisch." - -#: mod/settings.php:800 -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:803 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: mod/settings.php:804 -msgid "Requires manual approval of contact requests." -msgstr "Kontaktanfragen müssen manuell bestätigt werden." - -#: mod/settings.php:815 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:815 -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:823 -msgid "Publish your profile in your local site directory?" -msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" - -#: mod/settings.php:823 -#, 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:829 -#, 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:835 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." - -#: mod/settings.php:846 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: mod/settings.php:854 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" - -#: mod/settings.php:855 -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:856 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" - -#: mod/settings.php:857 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: mod/settings.php:857 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: mod/settings.php:858 -msgid "Password:" -msgstr "Passwort:" - -#: mod/settings.php:858 -msgid "Your current password to confirm the changes of the email address" -msgstr "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen" - -#: mod/settings.php:861 -msgid "Delete OpenID URL" -msgstr "OpenID URL löschen" - -#: mod/settings.php:863 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: mod/settings.php:865 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: mod/settings.php:866 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: mod/settings.php:867 -msgid "Your Language:" -msgstr "Deine Sprache:" - -#: mod/settings.php:867 -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:868 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: mod/settings.php:869 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: mod/settings.php:871 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: mod/settings.php:873 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" - -#: mod/settings.php:873 mod/settings.php:883 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: mod/settings.php:875 -msgid "Allow your profile to be searchable globally?" -msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" - -#: mod/settings.php:875 -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:876 -msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" - -#: mod/settings.php:876 -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:877 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: mod/settings.php:877 -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:878 -msgid "Make public posts unlisted" -msgstr "Öffentliche Beiträge nicht listen" - -#: mod/settings.php:878 -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:879 -msgid "Make all posted pictures accessible" -msgstr "Alle geposteten Bilder zugreifbar machen" - -#: mod/settings.php:879 -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:880 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" - -#: mod/settings.php:880 -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:881 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" - -#: mod/settings.php:881 -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:882 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" - -#: mod/settings.php:882 -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:883 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: mod/settings.php:885 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: mod/settings.php:889 -msgid "Expiration settings" -msgstr "Verfalls-Einstellungen" - -#: mod/settings.php:890 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: mod/settings.php:890 -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:891 -msgid "Expire posts" -msgstr "Beiträge verfallen lassen" - -#: mod/settings.php:891 -msgid "When activated, posts and comments will be expired." -msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." - -#: mod/settings.php:892 -msgid "Expire personal notes" -msgstr "Persönliche Notizen verfallen lassen" - -#: mod/settings.php:892 -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:893 -msgid "Expire starred posts" -msgstr "Markierte Beiträge verfallen lassen" - -#: mod/settings.php:893 -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:894 -msgid "Expire photos" -msgstr "Fotos verfallen lassen" - -#: mod/settings.php:894 -msgid "When activated, photos will be expired." -msgstr "Wenn aktiviert, verfallen Fotos." - -#: mod/settings.php:895 -msgid "Only expire posts by others" -msgstr "Nur Beiträge anderer verfallen lassen." - -#: mod/settings.php:895 -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:898 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: mod/settings.php:899 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden, wenn:" - -#: mod/settings.php:900 -msgid "You receive an introduction" -msgstr "– du eine Kontaktanfrage erhältst" - -#: mod/settings.php:901 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: mod/settings.php:902 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: mod/settings.php:903 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: mod/settings.php:904 -msgid "You receive a private message" -msgstr "– du eine private Nachricht erhältst" - -#: mod/settings.php:905 -msgid "You receive a friend suggestion" -msgstr "– du eine Empfehlung erhältst" - -#: mod/settings.php:906 -msgid "You are tagged in a post" -msgstr "– du in einem Beitrag erwähnt wirst" - -#: mod/settings.php:907 -msgid "You are poked/prodded/etc. in a post" -msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst" - -#: mod/settings.php:909 -msgid "Activate desktop notifications" -msgstr "Desktop-Benachrichtigungen einschalten" - -#: mod/settings.php:909 -msgid "Show desktop popup on new notifications" -msgstr "Desktop-Benachrichtigungen einschalten" - -#: mod/settings.php:911 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs-E-Mail als Rein-Text." - -#: mod/settings.php:913 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" - -#: mod/settings.php:915 -msgid "Show detailled notifications" -msgstr "Detaillierte Benachrichtigungen anzeigen" - -#: mod/settings.php:917 -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:919 -msgid "Show notifications of ignored contacts" -msgstr "Zeige Benachrichtigungen von ignorierten Kontakten" - -#: mod/settings.php:921 -msgid "" -"You don't see posts from ignored contacts. But you still see their comments." -" This setting controls if you want to still receive regular notifications " -"that are caused by ignored contacts or not." -msgstr "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen." - -#: mod/settings.php:923 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: mod/settings.php:924 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: mod/settings.php:927 -msgid "Import Contacts" -msgstr "Kontakte Importieren" - -#: mod/settings.php:928 -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:929 -msgid "Upload File" -msgstr "Datei hochladen" - -#: mod/settings.php:931 -msgid "Relocate" -msgstr "Umziehen" - -#: mod/settings.php:932 -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:933 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: mod/editpost.php:44 mod/editpost.php:54 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: mod/editpost.php:61 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: mod/editpost.php:94 mod/wallmessage.php:154 mod/message.php:203 -#: mod/message.php:372 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: 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/suggest.php:44 -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/fbrowser.php:131 -msgid "Files" -msgstr "Dateien" - -#: mod/ping.php:285 -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/ping.php:315 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "{0} und %d weitere möchten sich registrieren" - -#: mod/api.php:102 mod/api.php:124 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" - -#: mod/api.php:103 -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:126 -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/display.php:233 mod/display.php:317 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." - -#: mod/display.php:397 -msgid "The feed for this item is unavailable." -msgstr "Der Feed für diesen Beitrag ist nicht verfügbar." - -#: 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/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:125 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:100 -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:108 -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:113 -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:148 mod/unfollow.php:97 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/follow.php:161 mod/dfrn_request.php:648 -#, php-format -msgid "%s knows you" -msgstr "%skennt dich" - -#: mod/follow.php:162 mod/dfrn_request.php:649 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/follow.php:203 -msgid "The contact could not be added." -msgstr "Der Kontakt konnte nicht hinzugefügt werden." - -#: mod/item.php:134 mod/item.php:138 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." - -#: mod/item.php:339 mod/item.php:344 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." - -#: mod/item.php:705 -msgid "Post updated." -msgstr "Beitrag aktualisiert." - -#: mod/item.php:722 mod/item.php:727 -msgid "Item wasn't stored." -msgstr "Eintrag wurde nicht gespeichert" - -#: mod/item.php:738 -msgid "Item couldn't be fetched." -msgstr "Eintrag konnte nicht geholt werden." - -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." - -#: 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: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: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:448 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: 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 "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: 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/dfrn_request.php:637 -#, 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 "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/cal.php:275 mod/events.php:418 -msgid "View" -msgstr "Ansehen" - -#: mod/cal.php:276 mod/events.php:420 -msgid "Previous" -msgstr "Vorherige" - -#: mod/cal.php:284 mod/events.php:430 -msgid "list" -msgstr "Liste" - -#: mod/cal.php:306 -msgid "This calendar format is not supported" -msgstr "Dieses Kalenderformat wird nicht unterstützt." - -#: mod/cal.php:308 -msgid "No exportable data found" -msgstr "Keine exportierbaren Daten gefunden" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "Kalender" - -#: mod/uimport.php:45 -msgid "User imports on closed servers can only be done by an administrator." -msgstr "Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren." - -#: mod/uimport.php:63 -msgid "Move account" -msgstr "Account umziehen" - -#: mod/uimport.php:64 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." - -#: 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 "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist." - -#: 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 "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" - -#: mod/uimport.php:67 -msgid "Account file" -msgstr "Account-Datei" - -#: mod/uimport.php:67 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" - -#: mod/lostpass.php:40 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: mod/lostpass.php:52 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: mod/lostpass.php:58 -#, php-format -msgid "" -"\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." -msgstr "\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." - -#: mod/lostpass.php:69 -#, php-format -msgid "" -"\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" -msgstr "\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" - -#: mod/lostpass.php:84 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: mod/lostpass.php:100 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." - -#: mod/lostpass.php:113 -msgid "Request has expired, please make a new one." -msgstr "Die Anfrage ist abgelaufen. Bitte stelle eine erneute." - -#: mod/lostpass.php:128 -msgid "Forgot your Password?" -msgstr "Hast du dein Passwort vergessen?" - -#: mod/lostpass.php:129 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." - -#: mod/lostpass.php:131 -msgid "Reset" -msgstr "Zurücksetzen" - -#: mod/lostpass.php:147 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: mod/lostpass.php:148 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: mod/lostpass.php:149 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere dein neues Passwort - und dann" - -#: mod/lostpass.php:150 -msgid "click here to login" -msgstr "hier klicken, um dich anzumelden" - -#: mod/lostpass.php:151 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." - -#: mod/lostpass.php:155 -msgid "Your password has been reset." -msgstr "Dein Passwort wurde zurückgesetzt." - -#: mod/lostpass.php:158 -#, php-format -msgid "" -"\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" -msgstr "\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)." - -#: mod/lostpass.php:164 -#, php-format -msgid "" -"\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" -msgstr "\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." - -#: mod/lostpass.php:176 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde dein Passwort geändert" - -#: mod/events.php:138 mod/events.php:140 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." - -#: mod/events.php:147 mod/events.php:149 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:419 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:531 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:532 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:533 mod/events.php:538 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:546 mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:548 mod/events.php:553 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:559 mod/events.php:572 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:565 mod/events.php:567 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:568 mod/events.php:569 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/events.php:594 -msgid "Failed to remove event" -msgstr "Entfernen der Veranstaltung fehlgeschlagen" - -#: 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:83 -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:90 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/wallmessage.php:85 mod/message.php:93 -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:184 mod/message.php:297 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: mod/wallmessage.php:142 mod/message.php:193 -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:194 mod/message.php:363 -msgid "To:" -msgstr "An:" - -#: mod/wallmessage.php:145 mod/message.php:195 mod/message.php:364 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: mod/message.php:87 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:147 -msgid "Conversation not found." -msgstr "Unterhaltung nicht gefunden." - -#: mod/message.php:152 -msgid "Message was not deleted." -msgstr "Nachricht wurde nicht gelöscht" - -#: mod/message.php:170 -msgid "Conversation was not removed." -msgstr "Unterhaltung wurde nicht entfernt" - -#: mod/message.php:233 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:289 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:339 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: mod/message.php:341 mod/message.php:473 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - H:i" - -#: mod/message.php:356 mod/message.php:470 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:358 -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:362 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/message.php:444 -#, php-format -msgid "Unknown sender - %s" -msgstr "Unbekannter Absender - %s" - -#: mod/message.php:446 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: mod/message.php:448 -#, php-format -msgid "%s and You" -msgstr "%s und du" - -#: mod/message.php:476 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/redir.php:50 mod/redir.php:130 -msgid "Bad Request." -msgstr "Ungültige Anfrage." - -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Erneuern der OStatus-Abonements" - -#: mod/unfollow.php:65 mod/unfollow.php:133 -msgid "You aren't following this contact." -msgstr "Du folgst diesem Kontakt." - -#: mod/unfollow.php:71 mod/unfollow.php:139 -msgid "Unfollowing is currently not supported by your network." -msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt." - -#: mod/unfollow.php:95 -msgid "Disconnect/Unfollow" -msgstr "Verbindung lösen/Nicht mehr folgen" - -#: mod/notes.php:59 -msgid "Personal notes are visible only by yourself." -msgstr "Persönliche Notizen sind nur für dich sichtbar." diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index e8b5fdb7fc..711b571533 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -6,70 +6,855 @@ function string_plural_select_de($n){ return intval($n != 1); }} ; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age: "] = "Alter: "; -$a->strings["%d year old"] = [ - 0 => "%d Jahr alt", - 1 => "%d Jahre alt", +$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["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"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; +$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["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["event"] = "Veranstaltung"; +$a->strings["status"] = "Status"; +$a->strings["photo"] = "Foto"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Delete"] = "Löschen"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["You had been addressed (%s)."] = "Du wurdest angeschrieben (%s)."; +$a->strings["You are following %s."] = "Du folgst %s."; +$a->strings["Tagged"] = "Verschlagwortet"; +$a->strings["%s reshared this."] = "%s hat dies geteilt"; +$a->strings["Reshared"] = "Geteilt"; +$a->strings["Reshared by %s"] = "Von %s geteilt"; +$a->strings["%s is participating in this thread."] = "%s ist an der Unterhaltung beteiligt."; +$a->strings["Stored"] = "Gespeichert"; +$a->strings["Global"] = "Global"; +$a->strings["Relayed"] = "Übermittelt"; +$a->strings["Relayed by %s."] = "Von %s übermittelt"; +$a->strings["Fetched"] = "Abgerufen"; +$a->strings["Fetched because of %s"] = "Wegen %s abgerufen"; +$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"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["View Contact"] = "Kontakt anzeigen"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Block"] = "Sperren"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Languages"] = "Sprachen"; +$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."; +$a->strings["%s doesn't attend."] = "%s nimmt nicht teil."; +$a->strings["%s attends maybe."] = "%s nimmt eventuell teil."; +$a->strings["and"] = "und"; +$a->strings["and %d other people"] = "und %dandere"; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["%s don't like this."] = "%s mögen dies nicht."; +$a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; +$a->strings["%s attend."] = "%s nehmen teil."; +$a->strings["%2\$d people don't attend"] = "%2\$d Personen nehmen nicht teil"; +$a->strings["%s don't attend."] = "%s nehmen nicht teil."; +$a->strings["%2\$d people attend maybe"] = "%2\$d Personen nehmen eventuell teil"; +$a->strings["%s attend maybe."] = "%s nimmt eventuell teil."; +$a->strings["%2\$d people reshared this"] = "%2\$d Personen haben dies geteilt"; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a image/video/audio/webpage URL:"] = "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["New Post"] = "Neuer Beitrag"; +$a->strings["Share"] = "Teilen"; +$a->strings["Loading..."] = "lädt..."; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Link"; +$a->strings["Link or Media"] = "Link oder Mediendatei"; +$a->strings["Video"] = "Video"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Preview"] = "Vorschau"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Browser"] = "Browser"; +$a->strings["Open Compose page"] = "Composer Seite öffnen"; +$a->strings["[Friendica:Notify]"] = "[Friendica Meldung]"; +$a->strings["%s New mail received at %s"] = "%sNeue Nachricht auf %s empfangen"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue, private Nachricht auf %2\$s geschickt."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s."; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."; +$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = "%1\$s hat dir auf %2\$s's %3\$s%4\$s geantwortet"; +$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = "%1\$s hat dich auf %2\$s's %3\$s %4\$s erwähnt"; +$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = "%1\$s kommentierte %2\$s's %3\$s%4\$s"; +$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = "%1\$s hat dir auf (%2\$s) %3\$s geantwortet"; +$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = "%1\$s erwähnte dich auf (%2\$s) %3\$s"; +$a->strings["%1\$s commented on your %2\$s %3\$s"] = "%1\$s kommentierte auf (%2\$s) %3\$s"; +$a->strings["%1\$s replied to you on their %2\$s %3\$s"] = "%1\$s hat dir auf dem eigenen %2\$s %3\$s geantwortet"; +$a->strings["%1\$s tagged you on their %2\$s %3\$s"] = "%1\$s hat dich auf dem eigenen %2\$s %3\$s erwähnt"; +$a->strings["%1\$s commented on their %2\$s %3\$s"] = "%1\$s hat den eigenen %2\$s %3\$s kommentiert"; +$a->strings["%s %s tagged you"] = "%s %s hat dich erwähnt"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s"; +$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = "%1\$sKommentar von %3\$s auf Unterhaltung %2\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; +$a->strings["%s %s posted to your profile wall"] = "%s%s hat auf deine Pinnwand gepostet"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb um %2\$s auf Deine Pinnwand"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet"; +$a->strings["%s %s shared a new post"] = "%s%shat einen Beitrag geteilt"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; +$a->strings["%s %s shared a post from %s"] = "%s%s hat einen Beitrag von %s geteilt"; +$a->strings["%1\$s shared a post from %2\$s at %3\$s"] = "%1\$s hat einen Beitrag von %2\$s auf %3\$s geteilt"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url] from %3\$s."] = "%1\$s [url=%2\$s]teilte einen Beitrag[/url] von %3\$s."; +$a->strings["%1\$s %2\$s poked you"] = "%1\$s%2\$shat dich angestubst"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url]."; +$a->strings["%s %s tagged your post"] = "%s%s hat deinen Beitrag verschlagwortet"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s Deinen Beitrag auf %2\$s verschlagwortet"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s verschlagwortete [url=%2\$s]Deinen Beitrag[/url]"; +$a->strings["%s Introduction received"] = "%sVorstellung erhalten"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; +$a->strings["%s A new person is sharing with you"] = "%sEine neue Person teilt nun mit dir"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s"; +$a->strings["%s You have a new follower"] = "%sDu hast einen neuen Kontakt"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; +$a->strings["%s Friend suggestion received"] = "%sKontaktvorschlag erhalten"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["%s Connection accepted"] = "%sKontaktanfrage bestätigt"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und E-Mails ohne Einschränkungen austauschen."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."; +$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' 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."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."; +$a->strings["[Friendica System Notify]"] = "[Friendica-Systembenachrichtigung]"; +$a->strings["registration request"] = "Registrierungsanfrage"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; +$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["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["Yes"] = "Ja"; +$a->strings["No"] = "Nein"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["User not found."] = "Benutzer nicht gefunden."; +$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["months"] = "Monate"; $a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; $a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["in %1\$d %2\$s"] = "in %1\$d %2\$s"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; -$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["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["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Contact not found."] = "Kontakt nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden"; +$a->strings["%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 Abonnieren 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["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["Files"] = "Dateien"; +$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["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["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden."; +$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["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ückgesetzt."; +$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 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["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["Discard"] = "Verwerfen"; +$a->strings["Messages"] = "Nachrichten"; +$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["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["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Personal notes are visible only by yourself."] = "Persönliche Notizen sind nur für dich sichtbar."; +$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["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 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["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["This is you"] = "Das bist du"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Like"] = "Mag ich"; +$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["Dislike"] = "Mag ich nicht"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$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["{0} and %d others requested registration"] = "{0} und %d weitere möchten sich registrieren"; +$a->strings["Bad Request."] = "Ungültige Anfrage."; +$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["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."; +$a->strings["Passwords do not match."] = "Die Passwörter stimmen nicht überein."; +$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; +$a->strings["Password changed."] = "Passwort geändert."; +$a->strings["Password unchanged."] = "Passwort unverändert."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["Wrong Password."] = "Falsches Passwort"; +$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 were not updated."] = "Einstellungen nicht aktualisiert"; +$a->strings["Connected Apps"] = "Verbundene Programme"; +$a->strings["Name"] = "Name"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Created"] = "Erstellt"; +$a->strings["Remove authorization"] = "Autorisierung entziehen"; +$a->strings["No Addon settings configured"] = "Keine Addon-Einstellungen konfiguriert"; +$a->strings["Addon Settings"] = "Addon Einstellungen"; +$a->strings["Additional Features"] = "Zusätzliche Features"; +$a->strings["Save Settings"] = "Einstellungen speichern"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings["enabled"] = "eingeschaltet"; +$a->strings["disabled"] = "ausgeschaltet"; +$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; +$a->strings["OStatus (GNU Social)"] = "OStatus (GNU Social)"; +$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; +$a->strings["None"] = "Keine"; +$a->strings["Social Networks"] = "Soziale Netzwerke"; +$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien"; +$a->strings["Accept only top level posts by contacts you follow"] = "Ausschließlich Unterhaltungen von meinen Kontakten anzeigen"; +$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."] = "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."; +$a->strings["Disable Content Warning"] = "Inhaltswarnung ausschalten"; +$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."] = "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."; +$a->strings["Disable intelligent shortening"] = "Intelligentes Link-Kürzen ausschalten"; +$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."] = "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."; +$a->strings["Attach the link title"] = "Link Titel hinzufügen"; +$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."] = "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."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"; +$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."] = "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,."; +$a->strings["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus-Kontakte"; +$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social-Account"; +$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."] = "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."; +$a->strings["Repair OStatus subscriptions"] = "OStatus-Abonnements reparieren"; +$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."; +$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail-Check"; +$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; +$a->strings["IMAP port:"] = "IMAP-Port:"; +$a->strings["Security:"] = "Sicherheit:"; +$a->strings["Email login name:"] = "E-Mail-Login-Name:"; +$a->strings["Email password:"] = "E-Mail-Passwort:"; +$a->strings["Reply-to address:"] = "Reply-to Adresse:"; +$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; +$a->strings["Action after import:"] = "Aktion nach Import:"; +$a->strings["Mark as seen"] = "Als gelesen markieren"; +$a->strings["Move to folder"] = "In einen Ordner verschieben"; +$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; +$a->strings["Unable to find your profile. Please contact your admin."] = "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin."; +$a->strings["Account Types"] = "Kontenarten"; +$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite"; +$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums"; +$a->strings["Personal Page"] = "Persönliche Seite"; +$a->strings["Account for a personal profile."] = "Konto für ein persönliches Profil."; +$a->strings["Organisation Page"] = "Organisationsseite"; +$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."; +$a->strings["News Page"] = "Nachrichtenseite"; +$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."; +$a->strings["Community Forum"] = "Gemeinschaftsforum"; +$a->strings["Account for community discussions."] = "Konto für Diskussionsforen. "; +$a->strings["Normal Account Page"] = "Normales Konto"; +$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."; +$a->strings["Soapbox Page"] = "Marktschreier-Konto"; +$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."; +$a->strings["Public Forum"] = "Öffentliches Forum"; +$a->strings["Automatically approves all contact requests."] = "Bestätigt alle Kontaktanfragen automatisch."; +$a->strings["Automatic Friend Page"] = "Automatische Freunde-Seite"; +$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."; +$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; +$a->strings["Requires manual approval of contact requests."] = "Kontaktanfragen müssen manuell bestätigt werden."; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; +$a->strings["Publish your profile in your local site directory?"] = "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?"; +$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."] = "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein."; +$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden."; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'."; +$a->strings["Account Settings"] = "Kontoeinstellungen"; +$a->strings["Password Settings"] = "Passwort-Einstellungen"; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = "Erlaubte Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen, Doppelpunkten (:) und akzentuierten Buchstaben."; +$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"; +$a->strings["Current Password:"] = "Aktuelles Passwort:"; +$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; +$a->strings["Password:"] = "Passwort:"; +$a->strings["Your current password to confirm the changes of the email address"] = "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen"; +$a->strings["Delete OpenID URL"] = "OpenID URL löschen"; +$a->strings["Basic Settings"] = "Grundeinstellungen"; +$a->strings["Full Name:"] = "Kompletter Name:"; +$a->strings["Email Address:"] = "E-Mail-Adresse:"; +$a->strings["Your Timezone:"] = "Deine Zeitzone:"; +$a->strings["Your Language:"] = "Deine Sprache:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken"; +$a->strings["Default Post Location:"] = "Standardstandort:"; +$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Kontaktanfragen/Tag:"; +$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; +$a->strings["Allow your profile to be searchable globally?"] = "Darf dein Profil bei Suchanfragen gefunden werden?"; +$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."] = "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."; +$a->strings["Hide your contact/friend list from viewers of your profile?"] = "Liste der Kontakte vor Betrachtern des Profil verbergen?"; +$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest."; +$a->strings["Hide your profile details from anonymous viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; +$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."] = "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."; +$a->strings["Make public posts unlisted"] = "Öffentliche Beiträge nicht listen"; +$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."] = "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."; +$a->strings["Make all posted pictures accessible"] = "Alle geposteten Bilder zugreifbar machen"; +$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."] = "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."; +$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?"; +$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."; +$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"; +$a->strings["Your contacts can add additional tags to your posts."] = "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen."; +$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?"; +$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; +$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; +$a->strings["Expiration settings"] = "Verfalls-Einstellungen"; +$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer, verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; +$a->strings["Expire posts"] = "Beiträge verfallen lassen"; +$a->strings["When activated, posts and comments will be expired."] = "Ist dies aktiviert, werden Beiträge und Kommentare verfallen."; +$a->strings["Expire personal notes"] = "Persönliche Notizen verfallen lassen"; +$a->strings["When activated, the personal notes on your profile page will be expired."] = "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen."; +$a->strings["Expire starred posts"] = "Markierte Beiträge verfallen lassen"; +$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen."; +$a->strings["Expire photos"] = "Fotos verfallen lassen"; +$a->strings["When activated, photos will be expired."] = "Wenn aktiviert, verfallen Fotos."; +$a->strings["Only expire posts by others"] = "Nur Beiträge anderer verfallen lassen."; +$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts."; +$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden, wenn:"; +$a->strings["You receive an introduction"] = "– du eine Kontaktanfrage erhältst"; +$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; +$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; +$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst"; +$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst"; +$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst"; +$a->strings["Activate desktop notifications"] = "Desktop-Benachrichtigungen einschalten"; +$a->strings["Show desktop popup on new notifications"] = "Desktop-Benachrichtigungen einschalten"; +$a->strings["Text-only notification emails"] = "Benachrichtigungs-E-Mail als Rein-Text."; +$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil"; +$a->strings["Show detailled notifications"] = "Detaillierte Benachrichtigungen anzeigen"; +$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt."; +$a->strings["Show notifications of ignored contacts"] = "Zeige Benachrichtigungen von ignorierten Kontakten"; +$a->strings["You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not."] = "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen."; +$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; +$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; +$a->strings["Import Contacts"] = "Kontakte Importieren"; +$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält."; +$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["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["Friend Suggestions"] = "Kontaktvorschläge"; +$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["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"; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist."; +$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["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["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["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["No system theme config value set."] = "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt."; $a->strings["You must be logged in to use addons. "] = "Du musst angemeldet sein, um Addons benutzen zu können."; -$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["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["Block this author? They won't be able to follow you nor see your public posts, and you won't be able to see their posts and their notifications."] = "Soll dieser Autor geblockt werden? Sie werden nicht in der Lage sein, dir zu folgen oder deine öffentlichen Beiträge zu sehen. Außerdem wirst du nicht in der Lage sein ihre Beiträge und Benachrichtigungen zu lesen."; $a->strings["toggle mobile"] = "mobile Ansicht umschalten"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["Record not found"] = "Eintrag nicht gefunden"; -$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; -$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; -$a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; -$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; -$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; -$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; -$a->strings["%s is 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["The database version had been set to %s."] = "Die Datenbank Version wurde auf %s gesetzt."; -$a->strings["The post update is at version %d, it has to be at %d to safely drop the tables."] = "Das post-update ist auf der Version %d. Damit die Tabellen sicher entfernt werden können muss es die Version %d haben."; -$a->strings["No unused tables found."] = "Keine Tabellen gefunden die nicht verwendet werden."; -$a->strings["These tables are not used for friendica and will be deleted when you execute \"dbstructure drop -e\":"] = "Diese Tabellen werden nicht von Friendica verwendet. Sie werden gelöscht, wenn du \"dbstructure drop -e\" ausführst."; -$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["Friendica can't display this page at the moment, please contact the administrator."] = "Friendica kann die Seite im Moment nicht darstellen. Bitte kontaktiere das Administratoren Team."; -$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["Yourself"] = "Du selbst"; +$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["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["All contacts"] = "Alle Kontakte"; $a->strings["Followers"] = "Folgende"; +$a->strings["Following"] = "Gefolgte"; +$a->strings["Mutual friends"] = "Beidseitige Freundschaft"; +$a->strings["Common"] = "Gemeinsam"; +$a->strings["Addon not found"] = "Addon nicht gefunden"; +$a->strings["Addon already enabled"] = "Addon bereits aktiviert"; +$a->strings["Addon already disabled"] = "Addon bereits deaktiviert"; +$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 user nickname: "] = "Spitzname angeben:"; +$a->strings["Enter new password: "] = "Neues Passwort eingeben:"; +$a->strings["Enter user name: "] = "Nutzername 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["Enter category: "] = "Kategorie eingeben"; +$a->strings["Enter key: "] = "Schlüssel eingeben"; +$a->strings["Enter value: "] = "Wert eingeben"; +$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["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["Forums"] = "Foren"; +$a->strings["External link to forum"] = "Externer Link zum Forum"; +$a->strings["show less"] = "weniger anzeigen"; +$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["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["Link to source"] = "Link zum Originalbeitrag"; +$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["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["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["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["Archives"] = "Archiv"; +$a->strings["Persons"] = "Personen"; +$a->strings["Organisations"] = "Organisationen"; +$a->strings["News"] = "Nachrichten"; +$a->strings["All"] = "Alle"; +$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["Yourself"] = "Du selbst"; $a->strings["Mutuals"] = "Beidseitige Freundschaft"; $a->strings["Post to Email"] = "An E-Mail senden"; $a->strings["Public"] = "Öffentlich"; @@ -78,67 +863,7 @@ $a->strings["Limited/Private"] = "Begrenzt/Privat"; $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."] = "Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein."; $a->strings["Show to:"] = "Sichtbar für:"; $a->strings["Except to:"] = "Ausgenommen:"; -$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["Connectors"] = "Connectoren"; -$a->strings["Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "Aktualisierungen von der Version %s werden nicht unterstützt. Bitte aktualisiere vorher auf die Version 2021.01 von Friendica und warte bis das Postupdate auf die Version 1383 abgeschlossen ist."; -$a->strings["Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "Aktualisierungen von der Postupdate Version %s werden nicht unterstützt. Bitte aktualisiere zunächst auf die Friendica Version 2021.01 und warte bis das Postupdate 1383 abgeschlossen ist."; -$a->strings["%s: executing pre update %d"] = "%s: Pre-Update %d wird ausgeführt"; -$a->strings["%s: executing post update %d"] = "%s: Post-Update %d wird ausgeführt"; -$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 [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["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; -$a->strings["Mon"] = "Mo"; -$a->strings["Tue"] = "Di"; -$a->strings["Wed"] = "Mi"; -$a->strings["Thu"] = "Do"; -$a->strings["Fri"] = "Fr"; -$a->strings["Sat"] = "Sa"; -$a->strings["Sun"] = "So"; -$a->strings["Jan"] = "Jan"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "März"; -$a->strings["Apr"] = "Apr"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Juli"; -$a->strings["Aug"] = "Aug"; -$a->strings["Sep"] = "Sep"; -$a->strings["Oct"] = "Okt"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dez"; -$a->strings["poke"] = "anstupsen"; -$a->strings["poked"] = "stupste"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "abfuhrerteilte"; $a->strings["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."] = "Die Datenbankkonfigurationsdatei \"config/local.config.php\" konnte nicht erstellt werden. Um eine Konfigurationsdatei in Ihrem Webserver-Verzeichnis zu erstellen, gehe wie folgt vor."; $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 \"doc/INSTALL.md\"."] = "Lies bitte die \"doc/INSTALL.md\"."; @@ -200,6 +925,67 @@ $a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweite $a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF"; $a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["Mon"] = "Mo"; +$a->strings["Tue"] = "Di"; +$a->strings["Wed"] = "Mi"; +$a->strings["Thu"] = "Do"; +$a->strings["Fri"] = "Fr"; +$a->strings["Sat"] = "Sa"; +$a->strings["Sun"] = "So"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "März"; +$a->strings["Apr"] = "Apr"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Juli"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sep"] = "Sep"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dez"; +$a->strings["poke"] = "anstupsen"; +$a->strings["poked"] = "stupste"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "abfuhrerteilte"; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = "Friendica kann die Seite im Moment nicht darstellen. Bitte kontaktiere das Administratoren Team."; +$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["Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "Aktualisierungen von der Version %s werden nicht unterstützt. Bitte aktualisiere vorher auf die Version 2021.01 von Friendica und warte bis das Postupdate auf die Version 1383 abgeschlossen ist."; +$a->strings["Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "Aktualisierungen von der Postupdate Version %s werden nicht unterstützt. Bitte aktualisiere zunächst auf die Friendica Version 2021.01 und warte bis das Postupdate 1383 abgeschlossen ist."; +$a->strings["%s: executing pre update %d"] = "%s: Pre-Update %d wird ausgeführt"; +$a->strings["%s: executing post update %d"] = "%s: Post-Update %d wird ausgeführt"; +$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 [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!"; @@ -210,785 +996,214 @@ $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["Access denied."] = "Zugriff verweigert."; -$a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["Contact not found."] = "Kontakt nicht gefunden."; -$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["Submit"] = "Senden"; -$a->strings["Bad Request"] = "Ungültige Anfrage"; +$a->strings["The database version had been set to %s."] = "Die Datenbank Version wurde auf %s gesetzt."; +$a->strings["The post update is at version %d, it has to be at %d to safely drop the tables."] = "Das post-update ist auf der Version %d. Damit die Tabellen sicher entfernt werden können muss es die Version %d haben."; +$a->strings["No unused tables found."] = "Keine Tabellen gefunden die nicht verwendet werden."; +$a->strings["These tables are not used for friendica and will be deleted when you execute \"dbstructure drop -e\":"] = "Diese Tabellen werden nicht von Friendica verwendet. Sie werden gelöscht, wenn du \"dbstructure drop -e\" ausführst."; +$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["Record not found"] = "Eintrag nicht gefunden"; +$a->strings["Unprocessable Entity"] = "Entität konnte nicht verarbeitet werden"; $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["Stack trace:"] = "Stack trace:"; -$a->strings["Exception thrown in %s:%d"] = "Exception thrown in %s:%d"; -$a->strings["Item was not removed"] = "Item wurde nicht entfernt"; -$a->strings["Item was not deleted"] = "Item wurde nicht gelöscht"; -$a->strings["You must be logged in to use this module"] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können."; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Save"] = "Speichern"; -$a->strings["API endpoint \"%s\" is not implemented"] = "API endpoint \"%s\" is not implemented"; -$a->strings["The API endpoint is currently not implemented but might be in the future."] = "The API endpoint is currently not implemented but might be in the future."; -$a->strings["Contact not found"] = "Kontakt nicht gefunden"; -$a->strings["User not found"] = "Nutzer nicht gefunden"; -$a->strings["Profile not found"] = "Profil wurde nicht gefunden"; -$a->strings["Error while sending poke, please retry."] = "Beim Versenden des Stupsers ist ein Fehler aufgetreten. Bitte erneut versuchen."; -$a->strings["You must be logged in to use this module."] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können."; -$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["Loading..."] = "lädt..."; -$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."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["Name"] = "Name"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Account URL Alias"] = "Konto URL Alias"; -$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen"; -$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["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["No known contacts."] = "Keine bekannten Kontakte."; -$a->strings["No common contacts."] = "Keine gemeinsamen 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["These contacts both follow and are followed by %s."] = "Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s."; -$a->strings["Common contact (%s)"] = [ - 0 => "Gemeinsamer Kontakt (%s)", - 1 => "Gemeinsame Kontakte (%s)", -]; -$a->strings["Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts)."] = "Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)"; -$a->strings["Contact (%s)"] = [ - 0 => "Kontakt (%s)", - 1 => "Kontakte (%s)", -]; -$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["Blocked domain"] = "Blockierte Domain"; -$a->strings["Reason for the block"] = "Begründung für die Blockierung"; -$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["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name was not changed."] = "Der Name der Gruppe wurde nicht verä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 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["All Contacts"] = "Alle Kontakte"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$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["Notifications"] = "Benachrichtigungen"; -$a->strings["Method Not Allowed."] = "Methode nicht erlaubt."; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["Forum Search - %s"] = "Forensuche - %s"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$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["Profile URL"] = "Profil URL"; +$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; +$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; +$a->strings["New Follower"] = "Neuer Bewunderer"; +$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; +$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; +$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; +$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; +$a->strings["%s is 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["Approve"] = "Genehmigen"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Discard"] = "Verwerfen"; -$a->strings["Claims to be known to you: "] = "Behauptet, dich zu kennen: "; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nein"; -$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["Location:"] = "Ort:"; -$a->strings["About:"] = "Über:"; -$a->strings["Tags:"] = "Tags:"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen"; -$a->strings["Network:"] = "Netzwerk:"; -$a->strings["No introductions."] = "Keine Kontaktanfragen."; -$a->strings["No more %s notifications."] = "Keine weiteren %s-Benachrichtigungen"; -$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["You must be logged in to show this page."] = "Du musst eingeloggt sein damit diese Seite angezeigt werden kann."; -$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["A Decentralized Social Network"] = "Ein dezentrales Soziales Netzwerk"; -$a->strings["Please login to continue."] = "Bitte melde dich an, um fortzufahren."; -$a->strings["You don't have access to administration pages."] = "Du hast keinen Zugriff auf die Administrationsseiten."; -$a->strings["Submanaged account can't access the administration pages. Please log back in as the main account."] = "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto."; -$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["Terms of Service"] = "Nutzungsbedingungen"; -$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"] = "Umwandlung nach ActivityPub"; -$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["User not found."] = "Benutzer nicht gefunden."; -$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["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["You're currently viewing your profile as %s Cancel"] = "Du betrachtest dein Profil gerade als %s Abbrechen"; -$a->strings["Full Name:"] = "Kompletter Name:"; -$a->strings["Member since:"] = "Mitglied seit:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Description:"] = "Beschreibung"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Forums:"] = "Foren:"; -$a->strings["Profile"] = "Profil"; -$a->strings["View profile as:"] = "Das Profil aus der Sicht von jemandem anderen betrachten:"; -$a->strings["Basic"] = "Allgemein"; -$a->strings["Advanced"] = "Erweitert"; -$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["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["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["Required"] = "Benötigt"; -$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 Einladungscode"; -$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["New Password:"] = "Neues Passwort:"; -$a->strings["Leave empty for an auto generated password."] = "Leer lassen, um das Passwort automatisch zu generieren."; -$a->strings["Confirm:"] = "Bestätigen:"; -$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["Register"] = "Registrieren"; -$a->strings["Import"] = "Import"; -$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:Or you can submit the authentication settings manually:
\nOder du kannst die Authentifizierungseinstellungen manuell übermitteln:
\nPlease scan this QR Code with your authenticator app and submit the provided code.
"] = "Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.
"; -$a->strings["Or you can open the following URL in your mobile device:
"] = "Oder du kannst die folgende URL in deinem Mobilgerät öffnen:
"; -$a->strings["Please enter a code from your authentication app"] = "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein"; -$a->strings["Verify code and enable two-factor authentication"] = "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung"; -$a->strings["Two-factor authentication successfully disabled."] = "Zwei-Faktor Authentifizierung erfolgreich deaktiviert."; -$a->strings["Wrong Password"] = "Falsches Passwort"; -$a->strings["Two-factor authentication"] = "Zwei-Faktor Authentifizierung"; -$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.
"; -$a->strings["Authenticator app"] = "Zwei-Faktor Authentifizierungsapp"; -$a->strings["Configured"] = "Konfiguriert"; -$a->strings["Not Configured"] = "Nicht konfiguriert"; -$a->strings["You haven't finished configuring your authenticator app.
"] = "Die Konfiguration deiner Zwei-Faktor Authentifizierungsapp ist nicht abgeschlossen.
"; -$a->strings["Your authenticator app is correctly configured.
"] = "Deine Zwei-Faktor Authentifizierungsapp ist korrekt konfiguriert.
"; -$a->strings["Recovery codes"] = "Wiederherstellungsschlüssel"; -$a->strings["Remaining valid codes"] = "Verbleibende Wiederherstellungsschlüssel"; -$a->strings["These one-use codes can replace an authenticator app code in case you have lost access to it.
"] = "Diese Einmalcodes können einen Authentifikator-App-Code ersetzen, falls du den Zugriff darauf verloren hast.
"; -$a->strings["App-specific passwords"] = "App spezifische Passwörter"; -$a->strings["Generated app-specific passwords"] = "App spezifische Passwörter erstellen"; -$a->strings["These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.
"] = "Diese zufällig erzeugten Passwörter erlauben es dir dich mit Apps anzumelden, die keine Zwei-Faktor-Authentifizierung unterstützen.
"; -$a->strings["Current password:"] = "Aktuelles Passwort:"; -$a->strings["You need to provide your current password to change two-factor authentication settings."] = "Du musst dein aktuelles Passwort eingeben um die Einstellungen der Zwei-Faktor-Authentifizierung zu ändern"; -$a->strings["Enable two-factor authentication"] = "Aktiviere die Zwei-Faktor-Authentifizierung"; -$a->strings["Disable two-factor authentication"] = "Deaktiviere die Zwei-Faktor-Authentifizierung"; -$a->strings["Show recovery codes"] = "Wiederherstellungscodes anzeigen"; -$a->strings["Manage app-specific passwords"] = "App spezifische Passwörter verwalten"; -$a->strings["Manage trusted browsers"] = "Vertrauenswürdige Browser verwalten"; -$a->strings["Finish app configuration"] = "Beende die App-Konfiguration"; -$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["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 dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.
Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein Konto.
"; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Wenn du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr."; -$a->strings["Generate new recovery codes"] = "Generiere neue Wiederherstellungscodes"; -$a->strings["Next: Verification"] = "Weiter: Überprüfung"; -$a->strings["Trusted browsers successfully removed."] = "Die vertrauenswürdigen Browser wurden erfolgreich entfernt."; -$a->strings["Trusted browser successfully removed."] = "Der vertrauenswürdige Browser erfolgreich entfernt."; -$a->strings["Two-factor Trusted Browsers"] = "Zwei-Faktor vertrauenswürdige Browser"; -$a->strings["Trusted browsers are individual browsers you chose to skip two-factor authentication to access Friendica. Please use this feature sparingly, as it can negate the benefit of two-factor authentication."] = "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt."; -$a->strings["Device"] = "Gerät"; -$a->strings["OS"] = "OS"; -$a->strings["Browser"] = "Browser"; -$a->strings["Trusted"] = "Vertrauenswürdig"; -$a->strings["Last Use"] = "Zuletzt verwendet"; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Remove All"] = "Alle entfernen"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Photo not found."] = "Foto nicht gefunden"; -$a->strings["Profile picture successfully updated."] = "Profilbild erfolgreich aktualisiert."; -$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 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["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["Profile Picture Settings"] = "Einstellungen zum Profilbild"; -$a->strings["Current Profile Picture"] = "Aktuelles Profilbild"; -$a->strings["Upload Profile Picture"] = "Profilbild aktualisieren"; -$a->strings["Upload Picture:"] = "Bild hochladen"; -$a->strings["Upload"] = "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["Profile Name is required."] = "Profilname ist erforderlich."; -$a->strings["Profile couldn't be updated."] = "Das Profil konnte nicht aktualisiert werden."; -$a->strings["Label:"] = "Bezeichnung:"; -$a->strings["Value:"] = "Wert:"; -$a->strings["Field Permissions"] = "Berechtigungen des Felds"; -$a->strings["(click to open/close)"] = "(klicke zum Öffnen/Schließen)"; -$a->strings["Add a new profile field"] = "Neues Profilfeld hinzufügen"; -$a->strings["Profile Actions"] = "Profilaktionen"; -$a->strings["Edit Profile Details"] = "Profil bearbeiten"; -$a->strings["Change Profile Photo"] = "Profilbild ändern"; -$a->strings["Profile picture"] = "Profilbild"; -$a->strings["Location"] = "Wohnort"; -$a->strings["Custom Profile Fields"] = "Benutzerdefinierte Profilfelder"; -$a->strings["Display name:"] = "Anzeigename:"; -$a->strings["Street Address:"] = "Adresse:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."; -$a->strings["Homepage URL:"] = "Adresse der Homepage:"; -$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"; -$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; -$a->strings["Custom fields appear on your profile page.
\n\t\t\t\tYou can use BBCodes in the field values.
\n\t\t\t\tReorder by dragging the field title.
\n\t\t\t\tEmpty the label field to remove a custom field.
\n\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"] = "Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite
.\n\nBBCode kann verwendet werden
\nDie Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.
\nWird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.
\nNicht öffentliche Felder können nur von den ausgewählten Friendica Kontakte gesehen werden.
"; -$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["Manage Accounts"] = "Accounts Verwalten"; -$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["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["Export personal data"] = "Persönliche Daten exportieren"; -$a->strings["Lock feature %s"] = "Feature festlegen: %s"; -$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten"; +$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["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["Disable"] = "Ausschalten"; +$a->strings["Enable"] = "Einschalten"; +$a->strings["Administration"] = "Administration"; +$a->strings["Addons"] = "Addons"; +$a->strings["Toggle"] = "Umschalten"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Betreuer:"; +$a->strings["Addons reloaded"] = "Addons neu geladen"; +$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["List of all users"] = "Liste aller Benutzerkonten"; +$a->strings["Active"] = "Aktive"; +$a->strings["List of active accounts"] = "Liste der aktiven Benutzerkonten"; +$a->strings["Pending"] = "Ausstehend"; +$a->strings["List of pending registrations"] = "Liste der anstehenden Benutzerkonten"; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["List of blocked users"] = "Liste der geblockten Benutzer"; +$a->strings["Deleted"] = "Gelöscht"; +$a->strings["List of pending user deletions"] = "Liste der auf Löschung wartenden Benutzer"; +$a->strings["Private Forum"] = "Privates Forum"; +$a->strings["Relay"] = "Relais"; +$a->strings["%s contact unblocked"] = [ + 0 => "%sKontakt wieder freigegeben", + 1 => "%sKontakte wieder freigegeben", +]; +$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 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["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*
: Any number of characters?
: Any single character[<char1><char2>...]
: char1 or char2Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:
\n*
: Beliebige Anzahl von Zeichen?
: Ein einzelnes beliebiges Zeichen[<Zeichen1><Zeichen2>...]
:Zeichen1 oder Zeichen2.htconfig.php
. See the Config help page for help with the transition."] = "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 .htconfig.php
. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen.";
-$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."] = "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.";
-$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."] = "%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.";
-$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')";
-$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')";
-$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = "Friendica's system.basepath wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden.";
-$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt.";
-$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigiere deine Konfiguration.";
-$a->strings["Normal Account"] = "Normales Konto";
-$a->strings["Automatic Follower Account"] = "Automatisch folgendes Konto (Marktschreier)";
-$a->strings["Public Forum Account"] = "Öffentliches Forum-Konto";
-$a->strings["Automatic Friend Account"] = "Automatische Freunde-Seite";
-$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["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["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 Source"] = "Beitrags Quelle";
$a->strings["Item Guid"] = "Beitrags-Guid";
$a->strings["Item Id"] = "Item Id";
$a->strings["Item URI"] = "Item URI";
@@ -1075,15 +1242,34 @@ $a->strings["Term"] = "Term";
$a->strings["URL"] = "URL";
$a->strings["Mention"] = "Mention";
$a->strings["Implicit Mention"] = "Implicit Mention";
-$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["Source"] = "Quelle";
+$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["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";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
+$a->strings["Log level"] = "Protokoll-Level";
+$a->strings["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\\nThe server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n*
: Any number of characters?
: Any single character[<char1><char2>...]
: char1 or char2Die Server Domain Muster sind Groß-/Kleinschreibung unabhängig mit Shell-Jokerzeichen, die die folgenden Sonderzeichen umfassen:
\n*
: Beliebige Anzahl von Zeichen?
: Ein einzelnes beliebiges Zeichen[<Zeichen1><Zeichen2>...]
:Zeichen1 oder Zeichen2.htconfig.php
. See the Config help page for help with the transition."] = "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 .htconfig.php
. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen.";
+$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."] = "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.";
+$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."] = "%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.";
+$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')";
+$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')";
+$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = "Friendica's system.basepath wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden.";
+$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt.";
+$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigiere deine Konfiguration.";
+$a->strings["Normal Account"] = "Normales Konto";
+$a->strings["Automatic Follower Account"] = "Automatisch folgendes Konto (Marktschreier)";
+$a->strings["Public Forum Account"] = "Öffentliches Forum-Konto";
+$a->strings["Automatic Friend Account"] = "Automatische Freunde-Seite";
+$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 %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["Themes reloaded"] = "Themes wurden neu geladen";
+$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["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";
@@ -1324,17 +1519,6 @@ $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["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["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["New User"] = "Neuer Nutzer";
-$a->strings["Add User"] = "Nutzer hinzufügen";
-$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"] = "E-Mail";
-$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
$a->strings["%s user blocked"] = [
0 => "%s Nutzer blockiert",
1 => "%s Nutzer blockiert",
@@ -1361,10 +1545,17 @@ $a->strings["%s user unblocked"] = [
1 => "%s Nutzer freigeschaltet",
];
$a->strings["User \"%s\" unblocked"] = "Nutzer \"%s\" frei geschaltet";
-$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
-$a->strings["Permanent deletion"] = "Permanent löschen";
$a->strings["Blocked Users"] = "Blockierte Benutzer";
+$a->strings["New User"] = "Neuer Nutzer";
+$a->strings["Add User"] = "Nutzer hinzufügen";
+$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["Users awaiting permanent deletion"] = "Nutzer wartet auf permanente Löschung";
+$a->strings["Permanent deletion"] = "Permanent löschen";
+$a->strings["Users"] = "Nutzer";
+$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
$a->strings["%s user approved"] = [
0 => "%sNutzer zugelassen",
1 => "%sNutzer zugelassen",
@@ -1380,382 +1571,758 @@ $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["All"] = "Alle";
-$a->strings["List of all users"] = "Liste aller Benutzerkonten";
-$a->strings["Active"] = "Aktive";
-$a->strings["List of active accounts"] = "Liste der aktiven Benutzerkonten";
-$a->strings["List of pending registrations"] = "Liste der anstehenden Benutzerkonten";
-$a->strings["List of blocked users"] = "Liste der geblockten Benutzer";
-$a->strings["Deleted"] = "Gelöscht";
-$a->strings["List of pending user deletions"] = "Liste der auf Löschung wartenden Benutzer";
-$a->strings["Normal Account Page"] = "Normales Konto";
-$a->strings["Soapbox Page"] = "Marktschreier-Konto";
-$a->strings["Public Forum"] = "Öffentliches Forum";
-$a->strings["Automatic Friend Page"] = "Automatische Freunde-Seite";
-$a->strings["Private Forum"] = "Privates Forum";
-$a->strings["Personal Page"] = "Persönliche Seite";
-$a->strings["Organisation Page"] = "Organisationsseite";
-$a->strings["News Page"] = "Nachrichtenseite";
-$a->strings["Community Forum"] = "Gemeinschaftsforum";
-$a->strings["Relay"] = "Relais";
-$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 reloaded"] = "Themes wurden neu geladen";
-$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["Unknown theme."] = "Unbekanntes Theme";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Missing parameters"] = "Fehlende Parameter";
+$a->strings["Contact not found"] = "Kontakt nicht gefunden";
+$a->strings["Profile not found"] = "Profil wurde nicht gefunden";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Applications"] = "Anwendungen";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["You don't have access to administration pages."] = "Du hast keinen Zugriff auf die Administrationsseiten.";
+$a->strings["Submanaged account can't access the administration pages. Please log back in as the main 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["Babel"] = "Babel";
+$a->strings["ActivityPub Conversion"] = "Umwandlung nach ActivityPub";
+$a->strings["Addon Features"] = "Addon Features";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen, die auf Bestätigung warten";
+$a->strings["API endpoint %s %s is not implemented"] = "API Endpunkt %s %s ist nicht implementiert";
+$a->strings["The API endpoint is currently not implemented but might be in the future."] = "The API endpoint is currently not implemented but might be in the future.";
+$a->strings["Profile Details"] = "Profildetails";
$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["Account"] = "Nutzerkonto";
+$a->strings["Two-factor authentication"] = "Zwei-Faktor Authentifizierung";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Manage Accounts"] = "Accounts 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["%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["You can't block yourself"] = "Du kannst dich nicht selbst blockieren";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["You can't ignore yourself"] = "Du kannst dich nicht selbst ignorieren";
+$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 not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["(Update was successful)"] = "(Aktualisierung war 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["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["Native reshare"] = "Natives Teilen";
+$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["Keyword Deny List"] = "Liste der gesperrten Schlüsselwörter";
+$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["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).";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Only show pending contacts"] = "Zeige nur noch ausstehende Kontakte.";
+$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 known contacts"] = "Alle bekannten 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["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.";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Account URL Alias"] = "Konto URL Alias";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$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["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["No known contacts."] = "Keine bekannten Kontakte.";
+$a->strings["No common contacts."] = "Keine gemeinsamen 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["These contacts both follow and are followed by %s."] = "Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s.";
+$a->strings["Common contact (%s)"] = [
+ 0 => "Gemeinsamer Kontakt (%s)",
+ 1 => "Gemeinsame Kontakte (%s)",
+];
+$a->strings["Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts)."] = "Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)";
+$a->strings["Contact (%s)"] = [
+ 0 => "Kontakt (%s)",
+ 1 => "Kontakte (%s)",
+];
+$a->strings["Error while sending poke, please retry."] = "Beim Versenden des Stupsers ist ein Fehler aufgetreten. Bitte erneut versuchen.";
+$a->strings["You must be logged in to use this module."] = "Du musst eingeloggt sein, um dieses Modul benutzen zu können.";
+$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["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["Own Contacts"] = "Eigene Kontakte";
+$a->strings["Include"] = "Einschließen";
+$a->strings["Hide"] = "Verbergen";
+$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["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group: %s"] = "Gruppe: %s";
+$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["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["Formatted"] = "Formatiert";
+$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["Source input"] = "Originaltext:";
+$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext";
+$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (pures HTML)";
+$a->strings["BBCode::convert (hex)"] = "BBCode::convert (hex)";
+$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 Purified (raw)"] = "HTML Purified (raw)";
+$a->strings["HTML Purified (hex)"] = "HTML Purified (hex)";
+$a->strings["HTML Purified"] = "HTML Purified";
+$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"] = "Beiträgs Array bevor die Entitäten erweitert wurden.";
+$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["Babel Diagnostic"] = "Babel Diagnostik";
+$a->strings["Source text"] = "Quelltext";
+$a->strings["BBCode"] = "BBCode";
+$a->strings["Markdown"] = "Markdown";
+$a->strings["HTML"] = "HTML";
+$a->strings["Twitter Source / Tweet URL (requires API key)"] = "Twitter Quelle / Tweet URL (benötigt API Schlüssel)";
+$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["Probe Diagnostic"] = "Probe Diagnostik";
+$a->strings["Output"] = "Ergebnis";
+$a->strings["Lookup address"] = "Adresse nachschlagen";
+$a->strings["Webfinger Diagnostic"] = "Webfinger Diagnostik";
+$a->strings["Lookup address:"] = "Adresse nachschlagen:";
+$a->strings["Switch between your accounts"] = "Wechsle deine Konten";
+$a->strings["Manage your accounts"] = "Verwalte deine Konten";
+$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["Item was not removed"] = "Item wurde nicht entfernt";
+$a->strings["Item was not deleted"] = "Item wurde nicht gelöscht";
+$a->strings["- select -"] = "- auswählen -";
+$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["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["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name was not changed."] = "Der Name der Gruppe wurde nicht verä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["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["Group is empty"] = "Gruppe ist leer";
+$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["Method Not Allowed."] = "Methode nicht erlaubt.";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["No profile"] = "Kein Profil";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikationsserver - Installation";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Requirement not satisfied"] = "Anforderung ist nicht erfüllt";
+$a->strings["Optional requirement not satisfied"] = "Optionale Anforderung ist nicht erfüllt";
+$a->strings["OK"] = "Ok";
+$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["Open the two-factor authentication app on your device to get an authentication code and verify your identity.
"] = "Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.
"; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Hast du dein Handy nicht? Gib einen Zwei-Faktor-Wiederherstellungscode ein"; -$a->strings["This is my two-factor authenticator app device"] = "Dies ist das Gerät auf dem meine 2FA Authentifizierungs-App läuft."; -$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.
"] = "Du kannst einen deiner einmaligen Wiederherstellungscodes eingeben, falls du den Zugriff auf dein Mobilgerät verloren hast."; -$a->strings["Please enter a recovery code"] = "Bitte gib einen Wiederherstellungscode ein"; -$a->strings["Submit recovery code and complete login"] = "Sende den Wiederherstellungscode und schließe die Anmeldung ab"; +$a->strings["No contacts."] = "Keine Kontakte."; +$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["Forums:"] = "Foren:"; +$a->strings["View profile as:"] = "Das Profil aus der Sicht von jemandem anderen betrachten:"; +$a->strings["View as"] = "Betrachten als"; +$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 Einladungscode"; +$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:You can enter one of your one-time recovery codes in case you lost access to your mobile device.
"] = "Du kannst einen deiner einmaligen Wiederherstellungscodes eingeben, falls du den Zugriff auf dein Mobilgerät verloren hast."; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Hast du dein Handy nicht? Gib einen Zwei-Faktor-Wiederherstellungscode ein"; +$a->strings["Please enter a recovery code"] = "Bitte gib einen Wiederherstellungscode ein"; +$a->strings["Submit recovery code and complete login"] = "Sende den Wiederherstellungscode und schließe die Anmeldung ab"; +$a->strings["Open the two-factor authentication app on your device to get an authentication code and verify your identity.
"] = "Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.
"; +$a->strings["Please enter a code from your authentication app"] = "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein"; +$a->strings["This is my two-factor authenticator app device"] = "Dies ist das Gerät auf dem meine 2FA Authentifizierungs-App läuft."; +$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["Display the resharer"] = "Teilenden anzeigen"; +$a->strings["Display the first resharer as icon and text on a reshared item."] = "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde."; +$a->strings["Stay local"] = "Bleib lokal"; +$a->strings["Don't go to a remote system when following a contact link."] = "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird"; +$a->strings["Beginning of week:"] = "Wochenbeginn:"; +$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; +$a->strings["Profile couldn't be updated."] = "Das Profil konnte nicht aktualisiert werden."; +$a->strings["Label:"] = "Bezeichnung:"; +$a->strings["Value:"] = "Wert:"; +$a->strings["Field Permissions"] = "Berechtigungen des Felds"; +$a->strings["(click to open/close)"] = "(klicke zum Öffnen/Schließen)"; +$a->strings["Add a new profile field"] = "Neues Profilfeld hinzufügen"; +$a->strings["Profile Actions"] = "Profilaktionen"; +$a->strings["Edit Profile Details"] = "Profil bearbeiten"; +$a->strings["Change Profile Photo"] = "Profilbild ändern"; +$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:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."; +$a->strings["Homepage URL:"] = "Adresse der Homepage:"; +$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"; +$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; +$a->strings["Custom fields appear on your profile page.
\n\t\t\t\tYou can use BBCodes in the field values.
\n\t\t\t\tReorder by dragging the field title.
\n\t\t\t\tEmpty the label field to remove a custom field.
\n\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"] = "Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite
.\n\nBBCode kann verwendet werden
\nDie Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.
\nWird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.
\nNicht öffentliche Felder können nur von den ausgewählten Friendica Kontakte gesehen werden.
"; +$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Photo not found."] = "Foto nicht gefunden"; +$a->strings["Profile picture successfully updated."] = "Profilbild erfolgreich aktualisiert."; +$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["Profile Picture Settings"] = "Einstellungen zum Profilbild"; +$a->strings["Current Profile Picture"] = "Aktuelles Profilbild"; +$a->strings["Upload Profile Picture"] = "Profilbild aktualisieren"; +$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 gib dein 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["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.
"; +$a->strings["Authenticator app"] = "Zwei-Faktor Authentifizierungsapp"; +$a->strings["Configured"] = "Konfiguriert"; +$a->strings["Not Configured"] = "Nicht konfiguriert"; +$a->strings["You haven't finished configuring your authenticator app.
"] = "Die Konfiguration deiner Zwei-Faktor Authentifizierungsapp ist nicht abgeschlossen.
"; +$a->strings["Your authenticator app is correctly configured.
"] = "Deine Zwei-Faktor Authentifizierungsapp ist korrekt konfiguriert.
"; +$a->strings["Recovery codes"] = "Wiederherstellungsschlüssel"; +$a->strings["Remaining valid codes"] = "Verbleibende Wiederherstellungsschlüssel"; +$a->strings["These one-use codes can replace an authenticator app code in case you have lost access to it.
"] = "Diese Einmalcodes können einen Authentifikator-App-Code ersetzen, falls du den Zugriff darauf verloren hast.
"; +$a->strings["App-specific passwords"] = "App spezifische Passwörter"; +$a->strings["Generated app-specific passwords"] = "App spezifische Passwörter erstellen"; +$a->strings["These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.
"] = "Diese zufällig erzeugten Passwörter erlauben es dir dich mit Apps anzumelden, die keine Zwei-Faktor-Authentifizierung unterstützen.
"; +$a->strings["Current password:"] = "Aktuelles Passwort:"; +$a->strings["You need to provide your current password to change two-factor authentication settings."] = "Du musst dein aktuelles Passwort eingeben um die Einstellungen der Zwei-Faktor-Authentifizierung zu ändern"; +$a->strings["Enable two-factor authentication"] = "Aktiviere die Zwei-Faktor-Authentifizierung"; +$a->strings["Disable two-factor authentication"] = "Deaktiviere die Zwei-Faktor-Authentifizierung"; +$a->strings["Show recovery codes"] = "Wiederherstellungscodes anzeigen"; +$a->strings["Manage app-specific passwords"] = "App spezifische Passwörter verwalten"; +$a->strings["Manage trusted browsers"] = "Vertrauenswürdige Browser verwalten"; +$a->strings["Finish app configuration"] = "Beende 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 dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.
Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein Konto.
"; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Wenn du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr."; +$a->strings["Generate new recovery codes"] = "Generiere neue Wiederherstellungscodes"; +$a->strings["Next: Verification"] = "Weiter: Überprüfung"; +$a->strings["Trusted browsers successfully removed."] = "Die vertrauenswürdigen Browser wurden erfolgreich entfernt."; +$a->strings["Trusted browser successfully removed."] = "Der vertrauenswürdige Browser erfolgreich entfernt."; +$a->strings["Two-factor Trusted Browsers"] = "Zwei-Faktor vertrauenswürdige Browser"; +$a->strings["Trusted browsers are individual browsers you chose to skip two-factor authentication to access Friendica. Please use this feature sparingly, as it can negate the benefit of two-factor authentication."] = "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt."; +$a->strings["Device"] = "Gerät"; +$a->strings["OS"] = "OS"; +$a->strings["Trusted"] = "Vertrauenswürdig"; +$a->strings["Last Use"] = "Zuletzt verwendet"; +$a->strings["Remove All"] = "Alle entfernen"; +$a->strings["Two-factor authentication successfully activated."] = "Zwei-Faktor-Authentifizierung erfolgreich aktiviert."; +$a->strings["Or you can submit the authentication settings manually:
\nOder du kannst die Authentifizierungseinstellungen manuell übermitteln:
\nPlease scan this QR Code with your authenticator app and submit the provided code.
"] = "Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.
"; +$a->strings["Or you can open the following URL in your mobile device:
"] = "Oder du kannst die folgende URL in deinem Mobilgerät öffnen:
"; +$a->strings["Verify code and enable two-factor authentication"] = "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung"; +$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["Forbidden"] = "Verboten"; +$a->strings["Not Found"] = "Nicht gefunden"; +$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["Stack trace:"] = "Stack trace:"; +$a->strings["Exception thrown in %s:%d"] = "Exception thrown in %s:%d"; +$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["Edit"] = "Bearbeiten"; +$a->strings["Pinned item"] = "Angehefteter Beitrag"; +$a->strings["Delete globally"] = "Global löschen"; +$a->strings["Remove locally"] = "Lokal entfernen"; +$a->strings["Block %s"] = "Blockiere %s"; +$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["Add tag"] = "Tag hinzufügen"; +$a->strings["Quote share this"] = "Teile und zitiere dies"; +$a->strings["Quote Share"] = "Zitat teilen"; +$a->strings["Reshare this"] = "Teile dies"; +$a->strings["Reshare"] = "Teilen"; +$a->strings["Cancel your Reshare"] = "Teilen aufheben"; +$a->strings["Unshare"] = "Nicht mehr 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["post"] = "Beitrag"; -$a->strings["Content warning: %s"] = "Inhaltswarnung: %s"; -$a->strings["View Video"] = "Video ansehen"; -$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["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["all-day"] = "ganztägig"; -$a->strings["Sept"] = "Sep"; -$a->strings["today"] = "Heute"; -$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["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["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["View Contact"] = "Kontakt anzeigen"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["UnFollow"] = "Entfolgen"; -$a->strings["View Status"] = "Status anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["Organisation"] = "Organisation"; -$a->strings["News"] = "Nachrichten"; -$a->strings["Forum"] = "Forum"; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$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["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["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["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$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["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch, dich mit der von dir angegebenen OpenID anzumelden, trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["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["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["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["Legacy module file not found: %s"] = "Legacy-Moduldatei nicht gefunden: %s"; +$a->strings["Show more"] = "Zeige mehr"; +$a->strings["Show fewer"] = "Zeige weniger"; +$a->strings["Attachments:"] = "Anhänge:"; +$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["The folder view/smarty3/ must be writable by webserver."] = "Das Verzeichnis view/smarty3/ muss für den Web-Server beschreibbar sein."; -$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["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["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; -$a->strings["Password changed."] = "Passwort geändert."; -$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["Export"] = "Exportieren"; -$a->strings["Export calendar as ical"] = "Kalender als ical exportieren"; -$a->strings["Export calendar as csv"] = "Kalender als csv exportieren"; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["No contacts"] = "Keine Kontakte"; -$a->strings["%d Contact"] = [ - 0 => "%d Kontakt", - 1 => "%d Kontakte", -]; -$a->strings["View Contacts"] = "Kontakte anzeigen"; -$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["Tags"] = "Tags"; -$a->strings["Forums"] = "Foren"; -$a->strings["External link to forum"] = "Externer Link zum Forum"; -$a->strings["show less"] = "weniger anzeigen"; -$a->strings["show more"] = "mehr 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["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your photos"] = "Deine Fotos"; -$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["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["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["Network"] = "Netzwerk"; -$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; -$a->strings["Introductions"] = "Kontaktanfragen"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark as seen"] = "Als gelesen markieren"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Accounts"] = "Nutzerkonten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/bearbeiten"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$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["newer"] = "neuer"; -$a->strings["older"] = "älter"; -$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["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["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["Local Directory"] = "Lokales Verzeichnis"; -$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["Persons"] = "Personen"; -$a->strings["Organisations"] = "Organisationen"; -$a->strings["Account Types"] = "Kontenarten"; -$a->strings["first"] = "erste"; -$a->strings["prev"] = "vorige"; -$a->strings["next"] = "nächste"; -$a->strings["last"] = "letzte"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$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["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["Hometown:"] = "Heimatort:"; $a->strings["Marital Status:"] = "Familienstand:"; $a->strings["With:"] = "Mit:"; @@ -1775,86 +2342,31 @@ $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["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["Edit"] = "Bearbeiten"; -$a->strings["pinned item"] = "Angehefteter Beitrag"; -$a->strings["Delete globally"] = "Global löschen"; -$a->strings["Remove locally"] = "Lokal entfernen"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Block %s"] = "Blockiere %s"; -$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["ignored"] = "Ignoriert"; -$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["I like this (toggle)"] = "Ich mag das (toggle)"; -$a->strings["like"] = "mag ich"; -$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; -$a->strings["dislike"] = "mag ich nicht"; -$a->strings["Quote share this"] = "Teile und zitiere dies"; -$a->strings["Quote Share"] = "Zitat teilen"; -$a->strings["Reshare this"] = "Teile dies"; -$a->strings["Reshare"] = "Teilen"; -$a->strings["Cancel your Reshare"] = "Teilen aufheben"; -$a->strings["Unshare"] = "Nicht mehr 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["Languages"] = "Sprachen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["to"] = "zu"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["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["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["All contacts"] = "Alle Kontakte"; -$a->strings["Common"] = "Gemeinsam"; -$a->strings["Attachments:"] = "Anhänge:"; -$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["No system theme config value set."] = "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt."; $a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; $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["Friendica Notification"] = "Friendica-Benachrichtigung"; +$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["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"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["months"] = "Monate"; +$a->strings["weeks"] = "Wochen"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["in %1\$d %2\$s"] = "in %1\$d %2\$s"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; +$a->strings["(no subject)"] = "(kein Betreff)"; $a->strings["default"] = "Standard"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; @@ -1863,16 +2375,6 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variationen"; -$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["Skip to main content"] = "Zum Inhalt der Seite gehen"; -$a->strings["Back to top"] = "Zurück nach Oben"; $a->strings["Light (Accented)"] = "Hell (Akzentuiert)"; $a->strings["Dark (Accented)"] = "Dunkel (Akzentuiert)"; $a->strings["Black (Accented)"] = "Schwarz (Akzentuiert)"; @@ -1900,9 +2402,18 @@ $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["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["Skip to main content"] = "Zum Inhalt der Seite gehen"; +$a->strings["Back to top"] = "Zurück nach Oben"; $a->strings["Guest"] = "Gast"; $a->strings["Visitor"] = "Besucher"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; $a->strings["Alignment"] = "Ausrichtung"; $a->strings["Left"] = "Links"; $a->strings["Center"] = "Mitte"; @@ -1920,514 +2431,3 @@ $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["[Friendica:Notify]"] = "[Friendica Meldung]"; -$a->strings["%s New mail received at %s"] = "%sNeue Nachricht auf %s empfangen"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue, private Nachricht auf %2\$s geschickt."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s."; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."; -$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = "%1\$s hat dir auf %2\$s's %3\$s%4\$s geantwortet"; -$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = "%1\$s hat dich auf %2\$s's %3\$s %4\$s erwähnt"; -$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = "%1\$s kommentierte %2\$s's %3\$s%4\$s"; -$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = "%1\$s hat dir auf (%2\$s) %3\$s geantwortet"; -$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = "%1\$s erwähnte dich auf (%2\$s) %3\$s"; -$a->strings["%1\$s commented on your %2\$s %3\$s"] = "%1\$s kommentierte auf (%2\$s) %3\$s"; -$a->strings["%1\$s replied to you on their %2\$s %3\$s"] = "%1\$s hat dir auf dem eigenen %2\$s %3\$s geantwortet"; -$a->strings["%1\$s tagged you on their %2\$s %3\$s"] = "%1\$s hat dich auf dem eigenen %2\$s %3\$s erwähnt"; -$a->strings["%1\$s commented on their %2\$s %3\$s"] = "%1\$s hat den eigenen %2\$s %3\$s kommentiert"; -$a->strings["%s %s tagged you"] = "%s %s hat dich erwähnt"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s"; -$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = "%1\$sKommentar von %3\$s auf Unterhaltung %2\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; -$a->strings["%s %s posted to your profile wall"] = "%s%s hat auf deine Pinnwand gepostet"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb um %2\$s auf Deine Pinnwand"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet"; -$a->strings["%s %s shared a new post"] = "%s%shat einen Beitrag geteilt"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; -$a->strings["%s %s shared a post from %s"] = "%s%s hat einen Beitrag von %s geteilt"; -$a->strings["%1\$s shared a post from %2\$s at %3\$s"] = "%1\$s hat einen Beitrag von %2\$s auf %3\$s geteilt"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url] from %3\$s."] = "%1\$s [url=%2\$s]teilte einen Beitrag[/url] von %3\$s."; -$a->strings["%1\$s %2\$s poked you"] = "%1\$s%2\$shat dich angestubst"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url]."; -$a->strings["%s %s tagged your post"] = "%s%s hat deinen Beitrag verschlagwortet"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s Deinen Beitrag auf %2\$s verschlagwortet"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s verschlagwortete [url=%2\$s]Deinen Beitrag[/url]"; -$a->strings["%s Introduction received"] = "%sVorstellung erhalten"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; -$a->strings["%s A new person is sharing with you"] = "%sEine neue Person teilt nun mit dir"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s"; -$a->strings["%s You have a new follower"] = "%sDu hast einen neuen Kontakt"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; -$a->strings["%s Friend suggestion received"] = "%sKontaktvorschlag erhalten"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["%s Connection accepted"] = "%sKontaktanfrage bestätigt"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und E-Mails ohne Einschränkungen austauschen."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."; -$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' 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."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."; -$a->strings["[Friendica System Notify]"] = "[Friendica-Systembenachrichtigung]"; -$a->strings["registration request"] = "Registrierungsanfrage"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; -$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["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["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["status"] = "Status"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["You had been addressed (%s)."] = "Du wurdest angeschrieben (%s)."; -$a->strings["You are following %s."] = "Du folgst %s."; -$a->strings["Tagged"] = "Verschlagwortet"; -$a->strings["%s reshared this."] = "%s hat dies geteilt"; -$a->strings["Reshared"] = "Geteilt"; -$a->strings["Reshared by %s"] = "Von %s geteilt"; -$a->strings["%s is participating in this thread."] = "%s ist an der Unterhaltung beteiligt."; -$a->strings["Stored"] = "Gespeichert"; -$a->strings["Global"] = "Global"; -$a->strings["Relayed"] = "Übermittelt"; -$a->strings["Relayed by %s."] = "Von %s übermittelt"; -$a->strings["Fetched"] = "Abgerufen"; -$a->strings["Fetched because of %s"] = "Wegen %s abgerufen"; -$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."; -$a->strings["%s doesn't attend."] = "%s nimmt nicht teil."; -$a->strings["%s attends maybe."] = "%s nimmt eventuell teil."; -$a->strings["and"] = "und"; -$a->strings["and %d other people"] = "und %dandere"; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["%s don't like this."] = "%s mögen dies nicht."; -$a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; -$a->strings["%s attend."] = "%s nehmen teil."; -$a->strings["%2\$d people don't attend"] = "%2\$d Personen nehmen nicht teil"; -$a->strings["%s don't attend."] = "%s nehmen nicht teil."; -$a->strings["%2\$d people attend maybe"] = "%2\$d Personen nehmen eventuell teil"; -$a->strings["%s attend maybe."] = "%s nimmt eventuell teil."; -$a->strings["%2\$d people reshared this"] = "%2\$d Personen haben dies geteilt"; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["New Post"] = "Neuer Beitrag"; -$a->strings["Share"] = "Teilen"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Open Compose page"] = "Composer Seite öffnen"; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$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["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["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["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["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["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["Like"] = "Mag ich"; -$a->strings["Dislike"] = "Mag ich nicht"; -$a->strings["Map"] = "Karte"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden"; -$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; -$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["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."; -$a->strings["Passwords do not match."] = "Die Passwörter stimmen nicht überein."; -$a->strings["Password unchanged."] = "Passwort unverändert."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["Wrong Password."] = "Falsches Passwort"; -$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 were not updated."] = "Einstellungen nicht aktualisiert"; -$a->strings["Add application"] = "Programm hinzufügen"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Umleiten"; -$a->strings["Icon url"] = "Icon URL"; -$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; -$a->strings["Connected Apps"] = "Verbundene Programme"; -$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; -$a->strings["No name"] = "Kein Name"; -$a->strings["Remove authorization"] = "Autorisierung entziehen"; -$a->strings["No Addon settings configured"] = "Keine Addon-Einstellungen konfiguriert"; -$a->strings["Addon Settings"] = "Addon Einstellungen"; -$a->strings["Additional Features"] = "Zusätzliche Features"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings["enabled"] = "eingeschaltet"; -$a->strings["disabled"] = "ausgeschaltet"; -$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; -$a->strings["OStatus (GNU Social)"] = "OStatus (GNU Social)"; -$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; -$a->strings["None"] = "Keine"; -$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien"; -$a->strings["Accept only top level posts by contacts you follow"] = "Ausschließlich Unterhaltungen von meinen Kontakten anzeigen"; -$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."] = "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."; -$a->strings["Disable Content Warning"] = "Inhaltswarnung ausschalten"; -$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."] = "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."; -$a->strings["Disable intelligent shortening"] = "Intelligentes Link-Kürzen ausschalten"; -$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."] = "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."; -$a->strings["Attach the link title"] = "Link Titel hinzufügen"; -$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."] = "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."; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"; -$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."] = "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,."; -$a->strings["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus-Kontakte"; -$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social-Account"; -$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."] = "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."; -$a->strings["Repair OStatus subscriptions"] = "OStatus-Abonnements reparieren"; -$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."; -$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail-Check"; -$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; -$a->strings["IMAP port:"] = "IMAP-Port:"; -$a->strings["Security:"] = "Sicherheit:"; -$a->strings["Email login name:"] = "E-Mail-Login-Name:"; -$a->strings["Email password:"] = "E-Mail-Passwort:"; -$a->strings["Reply-to address:"] = "Reply-to Adresse:"; -$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; -$a->strings["Action after import:"] = "Aktion nach Import:"; -$a->strings["Move to folder"] = "In einen Ordner verschieben"; -$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; -$a->strings["Unable to find your profile. Please contact your admin."] = "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin."; -$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite"; -$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums"; -$a->strings["Account for a personal profile."] = "Konto für ein persönliches Profil."; -$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."; -$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."; -$a->strings["Account for community discussions."] = "Konto für Diskussionsforen. "; -$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."; -$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."; -$a->strings["Automatically approves all contact requests."] = "Bestätigt alle Kontaktanfragen automatisch."; -$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."; -$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; -$a->strings["Requires manual approval of contact requests."] = "Kontaktanfragen müssen manuell bestätigt werden."; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; -$a->strings["Publish your profile in your local site directory?"] = "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?"; -$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."] = "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein."; -$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden."; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'."; -$a->strings["Account Settings"] = "Kontoeinstellungen"; -$a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = "Erlaubte Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen, Doppelpunkten (:) und akzentuierten Buchstaben."; -$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"; -$a->strings["Current Password:"] = "Aktuelles Passwort:"; -$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; -$a->strings["Password:"] = "Passwort:"; -$a->strings["Your current password to confirm the changes of the email address"] = "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen"; -$a->strings["Delete OpenID URL"] = "OpenID URL löschen"; -$a->strings["Basic Settings"] = "Grundeinstellungen"; -$a->strings["Email Address:"] = "E-Mail-Adresse:"; -$a->strings["Your Timezone:"] = "Deine Zeitzone:"; -$a->strings["Your Language:"] = "Deine Sprache:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken"; -$a->strings["Default Post Location:"] = "Standardstandort:"; -$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Kontaktanfragen/Tag:"; -$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; -$a->strings["Allow your profile to be searchable globally?"] = "Darf dein Profil bei Suchanfragen gefunden werden?"; -$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."] = "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."; -$a->strings["Hide your contact/friend list from viewers of your profile?"] = "Liste der Kontakte vor Betrachtern des Profil verbergen?"; -$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest."; -$a->strings["Hide your profile details from anonymous viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; -$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."] = "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."; -$a->strings["Make public posts unlisted"] = "Öffentliche Beiträge nicht listen"; -$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."] = "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."; -$a->strings["Make all posted pictures accessible"] = "Alle geposteten Bilder zugreifbar machen"; -$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."] = "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."; -$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?"; -$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."; -$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"; -$a->strings["Your contacts can add additional tags to your posts."] = "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen."; -$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?"; -$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; -$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; -$a->strings["Expiration settings"] = "Verfalls-Einstellungen"; -$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer, verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; -$a->strings["Expire posts"] = "Beiträge verfallen lassen"; -$a->strings["When activated, posts and comments will be expired."] = "Ist dies aktiviert, werden Beiträge und Kommentare verfallen."; -$a->strings["Expire personal notes"] = "Persönliche Notizen verfallen lassen"; -$a->strings["When activated, the personal notes on your profile page will be expired."] = "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen."; -$a->strings["Expire starred posts"] = "Markierte Beiträge verfallen lassen"; -$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen."; -$a->strings["Expire photos"] = "Fotos verfallen lassen"; -$a->strings["When activated, photos will be expired."] = "Wenn aktiviert, verfallen Fotos."; -$a->strings["Only expire posts by others"] = "Nur Beiträge anderer verfallen lassen."; -$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts."; -$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; -$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden, wenn:"; -$a->strings["You receive an introduction"] = "– du eine Kontaktanfrage erhältst"; -$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; -$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; -$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst"; -$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst"; -$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst"; -$a->strings["Activate desktop notifications"] = "Desktop-Benachrichtigungen einschalten"; -$a->strings["Show desktop popup on new notifications"] = "Desktop-Benachrichtigungen einschalten"; -$a->strings["Text-only notification emails"] = "Benachrichtigungs-E-Mail als Rein-Text."; -$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil"; -$a->strings["Show detailled notifications"] = "Detaillierte Benachrichtigungen anzeigen"; -$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt."; -$a->strings["Show notifications of ignored contacts"] = "Zeige Benachrichtigungen von ignorierten Kontakten"; -$a->strings["You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not."] = "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen."; -$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; -$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; -$a->strings["Import Contacts"] = "Kontakte Importieren"; -$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält."; -$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["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$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["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["Files"] = "Dateien"; -$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["{0} and %d others requested registration"] = "{0} und %d weitere möchten sich registrieren"; -$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["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["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["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["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["Profile Match"] = "Profilübereinstimmungen"; -$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["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["%s knows you"] = "%skennt dich"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden."; -$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["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["%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["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["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde dich mit diesem Profil an."; -$a->strings["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["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["View"] = "Ansehen"; -$a->strings["Previous"] = "Vorherige"; -$a->strings["list"] = "Liste"; -$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["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["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist."; -$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["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["Reset"] = "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ückgesetzt."; -$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["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["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["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen"; -$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["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$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["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Bad Request."] = "Ungültige Anfrage."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus-Abonements"; -$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["Personal notes are visible only by yourself."] = "Persönliche Notizen sind nur für dich sichtbar."; diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index ab3c0da23c..42ebac8544 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-10 20:30+0200\n" -"PO-Revision-Date: 2021-04-19 11:31+0000\n" +"POT-Creation-Date: 2021-05-04 09:08-0400\n" +"PO-Revision-Date: 2021-05-05 11:05+0000\n" "Last-Translator: Sylke ViciousThe server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "サーバードメインパターンの構文は、大文字と小文字を区別しないシェルワイルドカードであり、次の特殊文字で構成されています。
\n*
:任意の数の文字?
:任意の1文字[<char1><char2>...]
:char1またはchar2.htconfig.php
. See the Config help page for "
+"help with the transition."
+msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/local-sample.config.phpをコピーし、設定を .htconfig.php
から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。"
+
+#: src/Module/Admin/Summary.php:111
+#, 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の設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php
から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。"
+
+#: src/Module/Admin/Summary.php:117
+#, 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 に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。"
+
+#: src/Module/Admin/Summary.php:135
+#, php-format
+msgid "The logfile '%s' is not usable. No logging possible (error: '%s')"
+msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )"
+
+#: src/Module/Admin/Summary.php:149
+#, php-format
+msgid ""
+"The debug logfile '%s' is not usable. No logging possible (error: '%s')"
+msgstr "デバッグログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )"
+
+#: src/Module/Admin/Summary.php:165
+#, 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のsystem.basepathは '%s' から '%s' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。"
+
+#: src/Module/Admin/Summary.php:173
+#, php-format
+msgid ""
+"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
+"isn't used."
+msgstr "Friendicaの現在のsystem.basepath '%s' は間違っています。構成ファイル '%s'は使用されていません。"
+
+#: src/Module/Admin/Summary.php:181
+#, php-format
+msgid ""
+"Friendica's current system.basepath '%s' is not equal to the config file "
+"'%s'. Please fix your configuration."
+msgstr "Friendicaの現在のsystem.basepath '%s'は、構成ファイル '%s'と等しくありません。設定を修正してください。"
+
+#: src/Module/Admin/Summary.php:188
+msgid "Normal Account"
+msgstr "通常アカウント"
+
+#: src/Module/Admin/Summary.php:189
+msgid "Automatic Follower Account"
+msgstr "自動フォロワーアカウント"
+
+#: src/Module/Admin/Summary.php:190
+msgid "Public Forum Account"
+msgstr "公開フォーラムアカウント"
+
+#: src/Module/Admin/Summary.php:191
+msgid "Automatic Friend Account"
+msgstr "自動友達アカウント"
+
+#: src/Module/Admin/Summary.php:192
+msgid "Blog Account"
+msgstr "ブログアカウント"
+
+#: src/Module/Admin/Summary.php:193
+msgid "Private Forum Account"
+msgstr "プライベートフォーラムアカウント"
+
+#: src/Module/Admin/Summary.php:213
+msgid "Message queues"
+msgstr "メッセージキュー"
+
+#: src/Module/Admin/Summary.php:219
+msgid "Server Settings"
+msgstr "サーバー設定"
+
+#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285
+msgid "Summary"
+msgstr "概要"
+
+#: src/Module/Admin/Summary.php:235
+msgid "Registered users"
+msgstr "登録ユーザー"
+
+#: src/Module/Admin/Summary.php:237
+msgid "Pending registrations"
+msgstr "保留中の登録"
+
+#: src/Module/Admin/Summary.php:238
+msgid "Version"
+msgstr "バージョン"
+
+#: src/Module/Admin/Summary.php:242
+msgid "Active addons"
+msgstr "アクティブなアドオン"
+
+#: src/Module/Admin/Themes/Details.php:57 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
+#: src/Module/Admin/Themes/Details.php:59 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
+#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
#, php-format
msgid "Theme %s failed to install."
msgstr "テーマ%sのインストールに失敗しました。"
-#: src/Module/Admin/Themes/Details.php:116
+#: src/Module/Admin/Themes/Details.php:83
msgid "Screenshot"
msgstr "スクリーンショット"
-#: src/Module/Admin/Themes/Details.php:124
-#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:100
+#: src/Module/Admin/Themes/Details.php:91
+#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
msgid "Themes"
msgstr "テーマ"
-#: src/Module/Admin/Themes/Embed.php:86
+#: src/Module/Admin/Themes/Embed.php:65
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 "アクティブなテーマをリロードする"
@@ -5757,1302 +6982,21 @@ msgstr "[実験的]"
msgid "[Unsupported]"
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:77
-#, 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 "このページでは、Friendicaノードが属するフェデレーションソーシャルネットワークの既知の部分について統計を提供します。これらの数値は完全なものではなく、ノードが認識しているネットワークの部分のみを反映しています。"
-
-#: 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/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:68
-msgid "Can not parse base url. Must have at least .htconfig.php
. See the Config help page for "
-"help with the transition."
-msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/local-sample.config.phpをコピーし、設定を .htconfig.php
から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。"
-
-#: src/Module/Admin/Summary.php:87
-#, 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の設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php
から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。"
-
-#: src/Module/Admin/Summary.php:93
-#, 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 に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。"
-
-#: src/Module/Admin/Summary.php:111
-#, php-format
-msgid "The logfile '%s' is not usable. No logging possible (error: '%s')"
-msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )"
-
-#: src/Module/Admin/Summary.php:126
-#, php-format
-msgid ""
-"The debug logfile '%s' is not usable. No logging possible (error: '%s')"
-msgstr "デバッグログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )"
-
-#: src/Module/Admin/Summary.php:142
-#, 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のsystem.basepathは '%s' から '%s' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。"
-
-#: src/Module/Admin/Summary.php:150
-#, php-format
-msgid ""
-"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
-"isn't used."
-msgstr "Friendicaの現在のsystem.basepath '%s' は間違っています。構成ファイル '%s'は使用されていません。"
-
-#: src/Module/Admin/Summary.php:158
-#, php-format
-msgid ""
-"Friendica's current system.basepath '%s' is not equal to the config file "
-"'%s'. Please fix your configuration."
-msgstr "Friendicaの現在のsystem.basepath '%s'は、構成ファイル '%s'と等しくありません。設定を修正してください。"
-
-#: src/Module/Admin/Summary.php:165
-msgid "Normal Account"
-msgstr "通常アカウント"
-
-#: src/Module/Admin/Summary.php:166
-msgid "Automatic Follower Account"
-msgstr "自動フォロワーアカウント"
-
-#: src/Module/Admin/Summary.php:167
-msgid "Public Forum Account"
-msgstr "公開フォーラムアカウント"
-
-#: src/Module/Admin/Summary.php:168
-msgid "Automatic Friend Account"
-msgstr "自動友達アカウント"
-
-#: src/Module/Admin/Summary.php:169
-msgid "Blog Account"
-msgstr "ブログアカウント"
-
-#: src/Module/Admin/Summary.php:170
-msgid "Private Forum Account"
-msgstr "プライベートフォーラムアカウント"
-
-#: src/Module/Admin/Summary.php:190
-msgid "Message queues"
-msgstr "メッセージキュー"
-
-#: src/Module/Admin/Summary.php:196
-msgid "Server Settings"
-msgstr "サーバー設定"
-
-#: src/Module/Admin/Summary.php:210 src/Repository/ProfileField.php:285
-msgid "Summary"
-msgstr "概要"
-
-#: src/Module/Admin/Summary.php:212
-msgid "Registered users"
-msgstr "登録ユーザー"
-
-#: src/Module/Admin/Summary.php:214
-msgid "Pending registrations"
-msgstr "保留中の登録"
-
-#: src/Module/Admin/Summary.php:215
-msgid "Version"
-msgstr "バージョン"
-
-#: src/Module/Admin/Summary.php:219
-msgid "Active addons"
-msgstr "アクティブなアドオン"
-
-#: src/Module/Admin/Tos.php:48
-msgid "The Terms of Service settings have been updated."
-msgstr "利用規約の設定が更新されました。"
-
-#: src/Module/Admin/Tos.php:62
+#: src/Module/Admin/Tos.php:60
msgid "Display Terms of Service"
msgstr "利用規約を表示する"
-#: src/Module/Admin/Tos.php:62
+#: 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:63
+#: src/Module/Admin/Tos.php:61
msgid "Display Privacy Statement"
msgstr "プライバシーに関する声明を表示する"
-#: src/Module/Admin/Tos.php:63
+#: src/Module/Admin/Tos.php:61
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -7060,177 +7004,996 @@ msgid ""
"\">EU-GDPR."
msgstr ""
-#: src/Module/Admin/Tos.php:64
+#: src/Module/Admin/Tos.php:62
msgid "Privacy Statement Preview"
msgstr "プライバシーに関する声明のプレビュー"
-#: src/Module/Admin/Tos.php:66
+#: src/Module/Admin/Tos.php:64
msgid "The Terms of Service"
msgstr "利用規約"
-#: src/Module/Admin/Tos.php:66
+#: 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/Users.php:61
+#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45
#, 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
+#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88
+#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89
+#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95
msgid "You can't remove yourself"
msgstr "自分を削除することはできません"
-#: src/Module/Admin/Users.php:80
+#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58
+#: src/Module/Admin/Users/Index.php:64
#, 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
+#: src/Module/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:87
+#: src/Module/Admin/Users/Index.php:93
#, php-format
msgid "User \"%s\" deleted"
msgstr "ユーザー\"%s\"が削除されました"
-#: src/Module/Admin/Users.php:132
+#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103
#, 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
+#: src/Module/Admin/Users/Active.php:129
+#: src/Module/Admin/Users/Blocked.php:130
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
+#: src/Module/Admin/Users/Index.php:162
msgid "Register date"
msgstr "登録日"
-#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262
+#: src/Module/Admin/Users/Active.php:129
+#: src/Module/Admin/Users/Blocked.php:130
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
+#: src/Module/Admin/Users/Index.php:162
msgid "Last login"
msgstr "前回のログイン"
-#: src/Module/Admin/Users.php:237 src/Module/Admin/Users.php:262
+#: src/Module/Admin/Users/Active.php:129
+#: src/Module/Admin/Users/Blocked.php:130
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142
+#: src/Module/Admin/Users/Index.php:162
msgid "Last public item"
msgstr ""
-#: src/Module/Admin/Users.php:237
-msgid "Type"
-msgstr "タイプ"
+#: src/Module/Admin/Users/Active.php:137
+msgid "Active Accounts"
+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
+#: src/Module/Admin/Users/Active.php:141
+#: src/Module/Admin/Users/Blocked.php:141 src/Module/Admin/Users/Index.php:155
msgid "User blocked"
msgstr "ユーザーがブロックされました"
-#: src/Module/Admin/Users.php:257
+#: src/Module/Admin/Users/Active.php:142
+#: src/Module/Admin/Users/Blocked.php:143 src/Module/Admin/Users/Index.php:157
msgid "Site admin"
msgstr "サイト管理者"
-#: src/Module/Admin/Users.php:258
+#: src/Module/Admin/Users/Active.php:143
+#: src/Module/Admin/Users/Blocked.php:144 src/Module/Admin/Users/Index.php:158
msgid "Account expired"
msgstr "アカウントの有効期限が切れました"
-#: src/Module/Admin/Users.php:261
-msgid "New User"
-msgstr "新しいユーザー"
+#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161
+msgid "Create a new user"
+msgstr ""
-#: src/Module/Admin/Users.php:262
-msgid "Permanent deletion"
-msgstr "永久削除"
-
-#: src/Module/Admin/Users.php:267
+#: src/Module/Admin/Users/Active.php:150
+#: src/Module/Admin/Users/Blocked.php:150 src/Module/Admin/Users/Index.php:167
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
+#: src/Module/Admin/Users/Active.php:151
+#: src/Module/Admin/Users/Blocked.php:151 src/Module/Admin/Users/Index.php:168
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
+#: src/Module/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52
+#, php-format
+msgid "%s user unblocked"
+msgid_plural "%s users unblocked"
+msgstr[0] "%sユーザーのブロックを解除しました"
+
+#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109
+#, php-format
+msgid "User \"%s\" unblocked"
+msgstr "ユーザー\"%s\"のブロックを解除しました"
+
+#: src/Module/Admin/Users/Blocked.php:138
+msgid "Blocked Users"
+msgstr ""
+
+#: src/Module/Admin/Users/Create.php:62
+msgid "New User"
+msgstr "新しいユーザー"
+
+#: src/Module/Admin/Users/Create.php:63
+msgid "Add User"
+msgstr "ユーザーを追加する"
+
+#: src/Module/Admin/Users/Create.php:71
msgid "Name of the new user."
msgstr "新しいユーザーの名前。"
-#: src/Module/Admin/Users.php:279
+#: src/Module/Admin/Users/Create.php:72
msgid "Nickname"
msgstr "ニックネーム"
-#: src/Module/Admin/Users.php:279
+#: src/Module/Admin/Users/Create.php:72
msgid "Nickname of the new user."
msgstr "新しいユーザーのニックネーム。"
-#: src/Module/Admin/Users.php:280
+#: src/Module/Admin/Users/Create.php:73
msgid "Email address of the new user."
msgstr "新しいユーザーのメールアドレス。"
+#: src/Module/Admin/Users/Deleted.php:86
+msgid "Users awaiting permanent deletion"
+msgstr ""
+
+#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162
+msgid "Permanent deletion"
+msgstr "永久削除"
+
+#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160
+#: src/Module/BaseAdmin.php:91
+msgid "Users"
+msgstr "ユーザー"
+
+#: src/Module/Admin/Users/Index.php:152
+msgid "User waiting for permanent deletion"
+msgstr "永久削除を待っているユーザー"
+
+#: src/Module/Admin/Users/Pending.php:48
+#, php-format
+msgid "%s user approved"
+msgid_plural "%s users approved"
+msgstr[0] ""
+
+#: src/Module/Admin/Users/Pending.php:55
+#, php-format
+msgid "%s registration revoked"
+msgid_plural "%s registrations revoked"
+msgstr[0] ""
+
+#: src/Module/Admin/Users/Pending.php:81
+msgid "Account approved."
+msgstr "アカウントが承認されました。"
+
+#: src/Module/Admin/Users/Pending.php:87
+msgid "Registration revoked"
+msgstr ""
+
+#: src/Module/Admin/Users/Pending.php:102
+msgid "User registrations awaiting review"
+msgstr ""
+
+#: src/Module/Admin/Users/Pending.php:104
+msgid "Request date"
+msgstr "依頼日"
+
+#: src/Module/Admin/Users/Pending.php:105
+msgid "No registrations."
+msgstr "登録なし。"
+
+#: src/Module/Admin/Users/Pending.php:106
+msgid "Note from the user"
+msgstr "ユーザーからのメモ"
+
+#: src/Module/Admin/Users/Pending.php:108
+msgid "Deny"
+msgstr "拒否する"
+
+#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400
+msgid "Contact not found"
+msgstr "コンタクトが見つかりません"
+
+#: src/Module/Api/Twitter/ContactEndpoint.php:135
+msgid "Profile not found"
+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:63
+msgid "You don't have access to administration pages."
+msgstr ""
+
+#: src/Module/BaseAdmin.php:67
+msgid ""
+"Submanaged account can't access the administration pages. Please log back in"
+" as the main account."
+msgstr ""
+
+#: src/Module/BaseAdmin.php:86
+msgid "Overview"
+msgstr "概要"
+
+#: src/Module/BaseAdmin.php:89
+msgid "Configuration"
+msgstr "構成"
+
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65
+msgid "Additional features"
+msgstr "追加機能"
+
+#: src/Module/BaseAdmin.php:97
+msgid "Database"
+msgstr "データベース"
+
+#: src/Module/BaseAdmin.php:98
+msgid "DB updates"
+msgstr "DBの更新"
+
+#: src/Module/BaseAdmin.php:99
+msgid "Inspect Deferred Workers"
+msgstr "非同期実行ワーカーの検査"
+
+#: src/Module/BaseAdmin.php:100
+msgid "Inspect worker Queue"
+msgstr "ワーカーキューの検査"
+
+#: src/Module/BaseAdmin.php:102
+msgid "Tools"
+msgstr "ツール"
+
+#: src/Module/BaseAdmin.php:103
+msgid "Contact Blocklist"
+msgstr "コンタクトブロックリスト"
+
+#: src/Module/BaseAdmin.php:104
+msgid "Server Blocklist"
+msgstr "サーバーブロックリスト"
+
+#: src/Module/BaseAdmin.php:111
+msgid "Diagnostics"
+msgstr "診断"
+
+#: src/Module/BaseAdmin.php:112
+msgid "PHP Info"
+msgstr "PHP情報"
+
+#: src/Module/BaseAdmin.php:113
+msgid "probe address"
+msgstr "プローブアドレス"
+
+#: src/Module/BaseAdmin.php:114
+msgid "check webfinger"
+msgstr "webfingerで診断"
+
+#: src/Module/BaseAdmin.php:116
+msgid "Babel"
+msgstr "Babel"
+
+#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138
+msgid "ActivityPub Conversion"
+msgstr ""
+
+#: src/Module/BaseAdmin.php:126
+msgid "Addon Features"
+msgstr "アドオン機能"
+
+#: src/Module/BaseAdmin.php:127
+msgid "User registrations waiting for confirmation"
+msgstr "確認待ちのユーザー登録"
+
+#: src/Module/BaseApi.php:114
+#, php-format
+msgid "API endpoint %s %s is not implemented"
+msgstr ""
+
+#: src/Module/BaseApi.php:115
+msgid ""
+"The API endpoint is currently not implemented but might be in the future."
+msgstr ""
+
+#: src/Module/BaseProfile.php:55 src/Module/Contact.php:947
+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:69
+#, php-format
+msgid "People Search - %s"
+msgstr "人を検索- %s"
+
+#: src/Module/BaseSearch.php:79
+#, 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:94
+#: src/Module/Settings/TwoFactor/Index.php:110
+msgid "Two-factor authentication"
+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:77
+msgid "Export personal data"
+msgstr "個人データのエクスポート"
+
+#: src/Module/BaseSettings.php:115
+msgid "Remove account"
+msgstr "アカウントを削除"
+
+#: src/Module/Bookmarklet.php:56
+msgid "This page is missing a url parameter."
+msgstr "このページにはurlパラメーターがありません。"
+
+#: src/Module/Bookmarklet.php:78
+msgid "The post was created"
+msgstr "投稿が作成されました"
+
+#: src/Module/Contact.php:94
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%dコンタクトを編集しました。"
+
+#: src/Module/Contact.php:121
+msgid "Could not access contact record."
+msgstr "コンタクトレコードにアクセスできませんでした。"
+
+#: src/Module/Contact.php:417
+msgid "You can't block yourself"
+msgstr "自分をブロックすることはできません"
+
+#: src/Module/Contact.php:423
+msgid "Contact has been blocked"
+msgstr "コンタクトがブロックされました"
+
+#: src/Module/Contact.php:423
+msgid "Contact has been unblocked"
+msgstr "コンタクトのブロックが解除されました"
+
+#: src/Module/Contact.php:431
+msgid "You can't ignore yourself"
+msgstr "自分を無視することはできません"
+
+#: src/Module/Contact.php:437
+msgid "Contact has been ignored"
+msgstr "コンタクトは無視されました"
+
+#: src/Module/Contact.php:437
+msgid "Contact has been unignored"
+msgstr "コンタクトは無視されていません"
+
+#: src/Module/Contact.php:447
+msgid "Contact has been archived"
+msgstr "コンタクトがアーカイブされました"
+
+#: src/Module/Contact.php:447
+msgid "Contact has been unarchived"
+msgstr "コンタクトのアーカイブを解除しました"
+
+#: src/Module/Contact.php:460
+msgid "Drop contact"
+msgstr "コンタクトを削除"
+
+#: src/Module/Contact.php:463 src/Module/Contact.php:887
+msgid "Do you really want to delete this contact?"
+msgstr "このコンタクトを本当に削除しますか?"
+
+#: src/Module/Contact.php:476
+msgid "Contact has been removed."
+msgstr "コンタクトは削除されました。"
+
+#: src/Module/Contact.php:504
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "あなたは%sと共通の友達です"
+
+#: src/Module/Contact.php:508
+#, php-format
+msgid "You are sharing with %s"
+msgstr "%sと共有しています"
+
+#: src/Module/Contact.php:512
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%sはあなたと共有しています"
+
+#: src/Module/Contact.php:536
+msgid "Private communications are not available for this contact."
+msgstr "このコンタクトへのプライベート通信は利用できません。"
+
+#: src/Module/Contact.php:538
+msgid "Never"
+msgstr "全くない"
+
+#: src/Module/Contact.php:541
+msgid "(Update was not successful)"
+msgstr "(更新は成功しませんでした)"
+
+#: src/Module/Contact.php:541
+msgid "(Update was successful)"
+msgstr "(更新は成功しました)"
+
+#: src/Module/Contact.php:543 src/Module/Contact.php:1144
+msgid "Suggest friends"
+msgstr "友人のおすすめ"
+
+#: src/Module/Contact.php:547
+#, php-format
+msgid "Network type: %s"
+msgstr "ネットワークの種類: %s"
+
+#: src/Module/Contact.php:552
+msgid "Communications lost with this contact!"
+msgstr "このコンタクトとの通信が失われました!"
+
+#: src/Module/Contact.php:558
+msgid "Fetch further information for feeds"
+msgstr "フィードの詳細情報を取得する"
+
+#: src/Module/Contact.php:560
+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:563
+msgid "Fetch information"
+msgstr "情報を取得する"
+
+#: src/Module/Contact.php:564
+msgid "Fetch keywords"
+msgstr "キーワードを取得する"
+
+#: src/Module/Contact.php:565
+msgid "Fetch information and keywords"
+msgstr "情報とキーワードを取得する"
+
+#: src/Module/Contact.php:577 src/Module/Contact.php:581
+#: src/Module/Contact.php:584 src/Module/Contact.php:588
+msgid "No mirroring"
+msgstr "ミラーリングなし"
+
+#: src/Module/Contact.php:578
+msgid "Mirror as forwarded posting"
+msgstr "転送された投稿としてミラー"
+
+#: src/Module/Contact.php:579 src/Module/Contact.php:585
+#: src/Module/Contact.php:589
+msgid "Mirror as my own posting"
+msgstr "自分の投稿としてミラー"
+
+#: src/Module/Contact.php:582 src/Module/Contact.php:586
+msgid "Native reshare"
+msgstr ""
+
+#: src/Module/Contact.php:601
+msgid "Contact Information / Notes"
+msgstr "コンタクト/メモ"
+
+#: src/Module/Contact.php:602
+msgid "Contact Settings"
+msgstr "コンタクト設定"
+
+#: src/Module/Contact.php:610
+msgid "Contact"
+msgstr "コンタクト"
+
+#: src/Module/Contact.php:614
+msgid "Their personal note"
+msgstr "彼らの個人的なメモ"
+
+#: src/Module/Contact.php:616
+msgid "Edit contact notes"
+msgstr "コンタクトメモを編集する"
+
+#: src/Module/Contact.php:619 src/Module/Contact.php:1112
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "%sのプロフィール[ %s ]を開く"
+
+#: src/Module/Contact.php:620
+msgid "Block/Unblock contact"
+msgstr "コンタクトのブロック/ブロック解除"
+
+#: src/Module/Contact.php:621
+msgid "Ignore contact"
+msgstr "コンタクトを無視"
+
+#: src/Module/Contact.php:622
+msgid "View conversations"
+msgstr "会話を見る"
+
+#: src/Module/Contact.php:627
+msgid "Last update:"
+msgstr "最後の更新:"
+
+#: src/Module/Contact.php:629
+msgid "Update public posts"
+msgstr "一般公開の投稿を更新"
+
+#: src/Module/Contact.php:631 src/Module/Contact.php:1154
+msgid "Update now"
+msgstr "今すぐ更新"
+
+#: src/Module/Contact.php:634 src/Module/Contact.php:892
+#: src/Module/Contact.php:1181
+msgid "Unignore"
+msgstr "無視しない"
+
+#: src/Module/Contact.php:638
+msgid "Currently blocked"
+msgstr "現在ブロックされています"
+
+#: src/Module/Contact.php:639
+msgid "Currently ignored"
+msgstr "現在無視されます"
+
+#: src/Module/Contact.php:640
+msgid "Currently archived"
+msgstr "現在アーカイブ済み"
+
+#: src/Module/Contact.php:641
+msgid "Awaiting connection acknowledge"
+msgstr "接続確認応答待ち"
+
+#: src/Module/Contact.php:642 src/Module/Notifications/Introductions.php:177
+msgid "Hide this contact from others"
+msgstr "このコンタクトを他の人から隠す"
+
+#: src/Module/Contact.php:642
+msgid ""
+"Replies/likes to your public posts may still be visible"
+msgstr "一般公開の投稿への返信・いいねは、引き続き表示される場合があります"
+
+#: src/Module/Contact.php:643
+msgid "Notification for new posts"
+msgstr "新しい投稿の通知"
+
+#: src/Module/Contact.php:643
+msgid "Send a notification of every new post of this contact"
+msgstr "このコンタクトの新しい投稿ごとに通知を送信する"
+
+#: src/Module/Contact.php:645
+msgid "Keyword Deny List"
+msgstr ""
+
+#: src/Module/Contact.php:645
+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:661 src/Module/Settings/TwoFactor/Index.php:132
+msgid "Actions"
+msgstr "操作"
+
+#: src/Module/Contact.php:668
+msgid "Mirror postings from this contact"
+msgstr "このコンタクトからの投稿をミラーリングする"
+
+#: src/Module/Contact.php:670
+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.php:802
+msgid "Show all contacts"
+msgstr "すべてのコンタクトを表示"
+
+#: src/Module/Contact.php:810
+msgid "Only show pending contacts"
+msgstr "保留中のコンタクトのみを表示"
+
+#: src/Module/Contact.php:818
+msgid "Only show blocked contacts"
+msgstr "ブロックされたコンタクトのみを表示"
+
+#: src/Module/Contact.php:823 src/Module/Contact.php:870
+msgid "Ignored"
+msgstr "無視された"
+
+#: src/Module/Contact.php:826
+msgid "Only show ignored contacts"
+msgstr "無視されたコンタクトのみを表示"
+
+#: src/Module/Contact.php:831 src/Module/Contact.php:871
+msgid "Archived"
+msgstr "アーカイブ済み"
+
+#: src/Module/Contact.php:834
+msgid "Only show archived contacts"
+msgstr "アーカイブされたコンタクトのみを表示"
+
+#: src/Module/Contact.php:839 src/Module/Contact.php:869
+msgid "Hidden"
+msgstr "非表示"
+
+#: src/Module/Contact.php:842
+msgid "Only show hidden contacts"
+msgstr "非表示のコンタクトのみを表示"
+
+#: src/Module/Contact.php:850
+msgid "Organize your contact groups"
+msgstr "コンタクトグループを整理する"
+
+#: src/Module/Contact.php:882
+msgid "Search your contacts"
+msgstr "コンタクトを検索する"
+
+#: src/Module/Contact.php:883 src/Module/Search/Index.php:192
+#, php-format
+msgid "Results for: %s"
+msgstr "結果: %s"
+
+#: src/Module/Contact.php:893 src/Module/Contact.php:1190
+msgid "Archive"
+msgstr "アーカイブ"
+
+#: src/Module/Contact.php:893 src/Module/Contact.php:1190
+msgid "Unarchive"
+msgstr "アーカイブ解除"
+
+#: src/Module/Contact.php:896
+msgid "Batch Actions"
+msgstr "バッチアクション"
+
+#: src/Module/Contact.php:931
+msgid "Conversations started by this contact"
+msgstr "このコンタクトが開始した会話"
+
+#: src/Module/Contact.php:936
+msgid "Posts and Comments"
+msgstr "投稿とコメント"
+
+#: src/Module/Contact.php:954
+msgid "View all known contacts"
+msgstr ""
+
+#: src/Module/Contact.php:964
+msgid "Advanced Contact Settings"
+msgstr "高度なコンタクト設定"
+
+#: src/Module/Contact.php:1071
+msgid "Mutual Friendship"
+msgstr "相互フォロー"
+
+#: src/Module/Contact.php:1075
+msgid "is a fan of yours"
+msgstr "あなたのファンです"
+
+#: src/Module/Contact.php:1079
+msgid "you are a fan of"
+msgstr "あなたはファンです"
+
+#: src/Module/Contact.php:1097
+msgid "Pending outgoing contact request"
+msgstr "保留中の送信済みコンタクトリクエスト"
+
+#: src/Module/Contact.php:1099
+msgid "Pending incoming contact request"
+msgstr "保留中の受信済みコンタクトリクエスト"
+
+#: src/Module/Contact.php:1164
+msgid "Refetch contact data"
+msgstr "コンタクトデータを再取得する"
+
+#: src/Module/Contact.php:1175
+msgid "Toggle Blocked status"
+msgstr "ブロック状態の切り替え"
+
+#: src/Module/Contact.php:1183
+msgid "Toggle Ignored status"
+msgstr "無視ステータスの切り替え"
+
+#: src/Module/Contact.php:1192
+msgid "Toggle Archive status"
+msgstr "アーカイブステータスの切り替え"
+
+#: src/Module/Contact.php:1200
+msgid "Delete contact"
+msgstr "コンタクトを削除"
+
+#: src/Module/Contact/Advanced.php:92
+msgid "Contact update failed."
+msgstr "コンタクトの更新に失敗しました。"
+
+#: src/Module/Contact/Advanced.php:109
+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:110
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr "このページで何をすべきかわからない場合は、ブラウザの \"戻る\" ボタンを *今すぐ*クリックしてください。"
+
+#: src/Module/Contact/Advanced.php:130
+msgid "Return to contact editor"
+msgstr "コンタクトエディターに戻る"
+
+#: src/Module/Contact/Advanced.php:135
+msgid "Account Nickname"
+msgstr "アカウントのニックネーム"
+
+#: src/Module/Contact/Advanced.php:136
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - 名前/ニックネームをオーバーライドします"
+
+#: src/Module/Contact/Advanced.php:137
+msgid "Account URL"
+msgstr "アカウントURL"
+
+#: src/Module/Contact/Advanced.php:138
+msgid "Account URL Alias"
+msgstr "アカウントURLエイリアス"
+
+#: src/Module/Contact/Advanced.php:139
+msgid "Friend Request URL"
+msgstr "フレンドリクエストURL"
+
+#: src/Module/Contact/Advanced.php:140
+msgid "Friend Confirm URL"
+msgstr "友人確認URL"
+
+#: src/Module/Contact/Advanced.php:141
+msgid "Notification Endpoint URL"
+msgstr "通知エンドポイントURL"
+
+#: src/Module/Contact/Advanced.php:142
+msgid "Poll/Feed URL"
+msgstr "ポーリング/フィードURL"
+
+#: src/Module/Contact/Advanced.php:143
+msgid "New photo from this URL"
+msgstr "このURLからの新しい写真"
+
+#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175
+msgid "Invalid contact."
+msgstr "無効なコンタクト。"
+
+#: src/Module/Contact/Contacts.php:54
+msgid "No known contacts."
+msgstr ""
+
+#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99
+msgid "No common contacts."
+msgstr ""
+
+#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97
+#, php-format
+msgid "Follower (%s)"
+msgid_plural "Followers (%s)"
+msgstr[0] "フォロワー( %s )"
+
+#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100
+#, php-format
+msgid "Following (%s)"
+msgid_plural "Following (%s)"
+msgstr[0] "フォロー中( %s )"
+
+#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:103
+#, php-format
+msgid "Mutual friend (%s)"
+msgid_plural "Mutual friends (%s)"
+msgstr[0] "相互の友人( %s )"
+
+#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105
+#, php-format
+msgid "These contacts both follow and are followed by %s."
+msgstr ""
+
+#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87
+#, php-format
+msgid "Common contact (%s)"
+msgid_plural "Common contacts (%s)"
+msgstr[0] ""
+
+#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89
+#, php-format
+msgid ""
+"Both %s and yourself have publicly interacted with these "
+"contacts (follow, comment or likes on public posts)."
+msgstr ""
+
+#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111
+#, php-format
+msgid "Contact (%s)"
+msgid_plural "Contacts (%s)"
+msgstr[0] "コンタクト( %s )"
+
+#: src/Module/Contact/Poke.php:113
+msgid "Error while sending poke, please retry."
+msgstr ""
+
+#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55
+msgid "You must be logged in to use this module."
+msgstr "このモジュールを使用するにはログインする必要があります"
+
+#: src/Module/Contact/Poke.php:149
+msgid "Poke/Prod"
+msgstr "突く/製品"
+
+#: src/Module/Contact/Poke.php:150
+msgid "poke, prod or do other things to somebody"
+msgstr "誰かに突く、突く、または他のことをする"
+
+#: src/Module/Contact/Poke.php:152
+msgid "Choose what you wish to do to recipient"
+msgstr "受信者にしたいことを選択してください"
+
+#: src/Module/Contact/Poke.php:153
+msgid "Make this post private"
+msgstr "この投稿を非公開にします"
+
+#: src/Module/Conversation/Community.php:69
+msgid "Local Community"
+msgstr "ローカル コミュニティ"
+
+#: src/Module/Conversation/Community.php:72
+msgid "Posts from local users on this server"
+msgstr "このサーバー上のローカルユーザーからの投稿"
+
+#: src/Module/Conversation/Community.php:80
+msgid "Global Community"
+msgstr "グローバルコミュニティ"
+
+#: src/Module/Conversation/Community.php:83
+msgid "Posts from users of the whole federated network"
+msgstr "フェデレーションネットワーク全体のユーザーからの投稿"
+
+#: src/Module/Conversation/Community.php:116
+msgid "Own Contacts"
+msgstr ""
+
+#: src/Module/Conversation/Community.php:120
+msgid "Include"
+msgstr ""
+
+#: src/Module/Conversation/Community.php:121
+msgid "Hide"
+msgstr ""
+
+#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139
+#: src/Module/Search/Index.php:179
+msgid "No results."
+msgstr "結果がありません。"
+
+#: src/Module/Conversation/Community.php:174
+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:212
+msgid "Community option not available."
+msgstr "コミュニティオプションは利用できません。"
+
+#: src/Module/Conversation/Community.php:228
+msgid "Not available."
+msgstr "利用不可。"
+
+#: src/Module/Conversation/Network.php:161
+msgid "No such group"
+msgstr "そのようなグループはありません"
+
+#: src/Module/Conversation/Network.php:165
+#, php-format
+msgid "Group: %s"
+msgstr "グループ: %s"
+
+#: src/Module/Conversation/Network.php:241
+msgid "Latest Activity"
+msgstr "最近の操作"
+
+#: src/Module/Conversation/Network.php:244
+msgid "Sort by latest activity"
+msgstr "最終更新順に並び替え"
+
+#: src/Module/Conversation/Network.php:249
+msgid "Latest Posts"
+msgstr "最新の投稿"
+
+#: src/Module/Conversation/Network.php:252
+msgid "Sort by post received date"
+msgstr "投稿を受信した順に並び替え"
+
+#: src/Module/Conversation/Network.php:257
+#: src/Module/Settings/Profile/Index.php:242
+msgid "Personal"
+msgstr "パーソナル"
+
+#: src/Module/Conversation/Network.php:260
+msgid "Posts that mention or involve you"
+msgstr "あなたに言及または関与している投稿"
+
+#: src/Module/Conversation/Network.php:265
+msgid "Starred"
+msgstr "スター付き"
+
+#: src/Module/Conversation/Network.php:268
+msgid "Favourite Posts"
+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はコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!"
+
+#: src/Module/Debug/ActivityPubConversion.php:58
+msgid "Formatted"
+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:139
+msgid "Source activity"
+msgstr ""
+
#: src/Module/Debug/Babel.php:51
msgid "Source input"
msgstr "ソース入力"
@@ -7244,115 +8007,175 @@ msgid "BBCode::convert (raw HTML)"
msgstr "BBCode :: convert(生のHTML)"
#: src/Module/Debug/Babel.php:68
+msgid "BBCode::convert (hex)"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:73
msgid "BBCode::convert"
msgstr "BBCode :: convert"
-#: src/Module/Debug/Babel.php:74
+#: src/Module/Debug/Babel.php:79
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode :: convert => HTML :: toBBCode"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:85
msgid "BBCode::toMarkdown"
msgstr "BBCode :: toMarkdown"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:91
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:90
+#: src/Module/Debug/Babel.php:95
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode :: toMarkdown => Markdown :: convert"
-#: src/Module/Debug/Babel.php:96
+#: src/Module/Debug/Babel.php:101
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode :: toMarkdown => Markdown :: toBBCode"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:107
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode :: toMarkdown => Markdown :: convert => HTML :: toBBCode"
-#: src/Module/Debug/Babel.php:113
+#: src/Module/Debug/Babel.php:115
msgid "Item Body"
msgstr "アイテム本体"
-#: src/Module/Debug/Babel.php:117
+#: src/Module/Debug/Babel.php:119
msgid "Item Tags"
msgstr "アイテムタグ"
-#: src/Module/Debug/Babel.php:124
+#: src/Module/Debug/Babel.php:125
+msgid "PageInfo::appendToBody"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:130
+msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:134
+msgid "PageInfo::appendToBody => BBCode::convert"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:141
msgid "Source input (Diaspora format)"
msgstr "ソース入力(Diaspora形式)"
-#: src/Module/Debug/Babel.php:130
+#: src/Module/Debug/Babel.php:150
+msgid "Source input (Markdown)"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:156
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown :: convert(生のHTML)"
-#: src/Module/Debug/Babel.php:135
+#: src/Module/Debug/Babel.php:161
msgid "Markdown::convert"
msgstr "Markdown :: convert"
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:167
msgid "Markdown::toBBCode"
msgstr "Markdown :: toBBCode"
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:174
msgid "Raw HTML input"
msgstr "生のHTML入力"
-#: src/Module/Debug/Babel.php:153
+#: src/Module/Debug/Babel.php:179
msgid "HTML Input"
msgstr "HTML入力"
-#: src/Module/Debug/Babel.php:159
+#: src/Module/Debug/Babel.php:186
+msgid "HTML Purified (raw)"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:191
+msgid "HTML Purified (hex)"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:196
+msgid "HTML Purified"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:202
msgid "HTML::toBBCode"
msgstr "HTML :: toBBCode"
-#: src/Module/Debug/Babel.php:165
+#: src/Module/Debug/Babel.php:208
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML :: toBBCode => BBCode :: convert"
-#: src/Module/Debug/Babel.php:170
+#: src/Module/Debug/Babel.php:213
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML :: toBBCode => BBCode :: convert(生のHTML)"
-#: src/Module/Debug/Babel.php:176
+#: src/Module/Debug/Babel.php:219
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML :: toBBCode => BBCode :: toPlaintext"
-#: src/Module/Debug/Babel.php:182
+#: src/Module/Debug/Babel.php:225
msgid "HTML::toMarkdown"
msgstr "HTML :: toMarkdown"
-#: src/Module/Debug/Babel.php:188
+#: src/Module/Debug/Babel.php:231
msgid "HTML::toPlaintext"
msgstr "HTML :: toPlaintext"
-#: src/Module/Debug/Babel.php:194
+#: src/Module/Debug/Babel.php:237
msgid "HTML::toPlaintext (compact)"
msgstr "HTML :: toPlaintext(コンパクト)"
-#: src/Module/Debug/Babel.php:202
+#: src/Module/Debug/Babel.php:255
+msgid "Decoded post"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:276
+msgid "Post array before expand entities"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:283
+msgid "Post converted"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:288
+msgid "Converted body"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:294
+msgid "Twitter addon is absent from the addon/ folder."
+msgstr ""
+
+#: src/Module/Debug/Babel.php:304
+msgid "Babel Diagnostic"
+msgstr ""
+
+#: src/Module/Debug/Babel.php:305
msgid "Source text"
msgstr "ソーステキスト"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:306
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:204
+#: src/Module/Debug/Babel.php:308
msgid "Markdown"
msgstr "マークダウン"
-#: src/Module/Debug/Babel.php:205
+#: src/Module/Debug/Babel.php:309
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:38
-#: src/Module/Settings/Profile/Index.php:164
+#: src/Module/Debug/Babel.php:311
+msgid "Twitter Source / Tweet URL (requires API key)"
+msgstr ""
+
+#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40
+#: src/Module/Settings/Profile/Index.php:158
msgid "You must be logged in to use this module"
msgstr "このモジュールを使用するにはログインする必要があります"
-#: src/Module/Debug/Feed.php:65
+#: src/Module/Debug/Feed.php:63
msgid "Source URL"
msgstr "ソースURL"
@@ -7389,19 +8212,496 @@ msgstr "タイムゾーンを選択してください:"
msgid "Only logged in users are permitted to perform a probing."
msgstr "ログインしているユーザーのみがプローブを実行できます。"
+#: src/Module/Debug/Probe.php:53
+msgid "Probe Diagnostic"
+msgstr ""
+
#: src/Module/Debug/Probe.php:54
+msgid "Output"
+msgstr "出力"
+
+#: src/Module/Debug/Probe.php:57
msgid "Lookup address"
msgstr "ルックアップアドレス"
-#: src/Module/Filer/SaveTag.php:57
-#, php-format
-msgid "Filetag %s saved to item"
-msgstr "ファイルタグ%sがアイテムに保存されました"
+#: src/Module/Debug/WebFinger.php:52
+msgid "Webfinger Diagnostic"
+msgstr ""
-#: src/Module/Filer/SaveTag.php:66
+#: src/Module/Debug/WebFinger.php:54
+msgid "Lookup address:"
+msgstr ""
+
+#: src/Module/Delegation.php:147
+msgid "Switch between your accounts"
+msgstr ""
+
+#: src/Module/Delegation.php:148
+msgid "Manage your accounts"
+msgstr ""
+
+#: src/Module/Delegation.php:149
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "アカウントの詳細を共有する、または「管理」権限が付与されているさまざまなIDまたはコミュニティ/グループページを切り替える"
+
+#: src/Module/Delegation.php:150
+msgid "Select an identity to manage: "
+msgstr "管理するIDを選択します。"
+
+#: 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/Filer/RemoveTag.php:69
+msgid "Item was not removed"
+msgstr ""
+
+#: src/Module/Filer/RemoveTag.php:72
+msgid "Item was not deleted"
+msgstr ""
+
+#: src/Module/Filer/SaveTag.php:69
msgid "- select -"
msgstr "-選択-"
+#: src/Module/FriendSuggest.php:65
+msgid "Suggested contact not found."
+msgstr "推奨コンタクトが見つかりません。"
+
+#: src/Module/FriendSuggest.php:84
+msgid "Friend suggestion sent."
+msgstr "友達の提案が送信されました。"
+
+#: src/Module/FriendSuggest.php:121
+msgid "Suggest Friends"
+msgstr "友人を示唆しています"
+
+#: src/Module/FriendSuggest.php:124
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "%s友達を提案する"
+
+#: src/Module/Friendica.php:61
+msgid "Installed addons/apps:"
+msgstr "インストールされたアドオン/アプリ:"
+
+#: src/Module/Friendica.php:66
+msgid "No installed addons/apps"
+msgstr "アドオン/アプリがインストールされていません"
+
+#: src/Module/Friendica.php:71
+#, php-format
+msgid "Read about the Terms of Service of this node."
+msgstr "このノードの利用規約について読んでください。"
+
+#: src/Module/Friendica.php:78
+msgid "On this server the following remote servers are blocked."
+msgstr "このサーバーでは、次のリモートサーバーがブロックされています。"
+
+#: src/Module/Friendica.php:96
+#, 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 "これは、Webロケーション%s実行されているFriendicaバージョン%sです。データベースのバージョンは%s 、更新後のバージョンは%sです。"
+
+#: src/Module/Friendica.php:101
+msgid ""
+"Please visit Friendi.ca to learn more "
+"about the Friendica project."
+msgstr "Friendicaプロジェクトの詳細については、 Friendi.ca をご覧ください。"
+
+#: src/Module/Friendica.php:102
+msgid "Bug reports and issues: please visit"
+msgstr "バグレポートと問題:こちらをご覧ください"
+
+#: src/Module/Friendica.php:102
+msgid "the bugtracker at github"
+msgstr "githubのバグトラッカー"
+
+#: src/Module/Friendica.php:103
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "提案、ファンレターなどを \"info \" at \"friendi - dot - ca\"でお待ちしております。"
+
+#: 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: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:293
+msgid "Group is empty"
+msgstr "グループは空です"
+
+#: src/Module/Group.php:306
+msgid "Remove contact from group"
+msgstr "グループからコンタクトを削除"
+
+#: src/Module/Group.php:327
+msgid "Click on a contact to add or remove."
+msgstr "コンタクトをクリックして追加・削除"
+
+#: src/Module/Group.php:341
+msgid "Add contact to group"
+msgstr "グループにコンタクトを追加"
+
+#: src/Module/HTTPException/MethodNotAllowed.php:32
+msgid "Method Not Allowed."
+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/Install.php:188
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Communications Server-セットアップ"
+
+#: src/Module/Install.php:199
+msgid "System check"
+msgstr "システムチェック"
+
+#: src/Module/Install.php:201 src/Module/Install.php:258
+#: src/Module/Install.php:341
+msgid "Requirement not satisfied"
+msgstr "要件を満たしていない"
+
+#: src/Module/Install.php:202
+msgid "Optional requirement not satisfied"
+msgstr "オプションの要件を満たしていない"
+
+#: src/Module/Install.php:203
+msgid "OK"
+msgstr ""
+
+#: src/Module/Install.php:208
+msgid "Check again"
+msgstr "再び確かめる"
+
+#: src/Module/Install.php:223
+msgid "Base settings"
+msgstr "基本設定"
+
+#: src/Module/Install.php:230
+msgid "Host name"
+msgstr "ホスト名"
+
+#: src/Module/Install.php:232
+msgid ""
+"Overwrite this field in case the determinated hostname isn't right, "
+"otherweise leave it as is."
+msgstr "決定されたホスト名が正しくない場合、このフィールドを上書きします。そうでない場合はそのままにします。"
+
+#: src/Module/Install.php:235
+msgid "Base path to installation"
+msgstr "インストールへの基本パス"
+
+#: src/Module/Install.php:237
+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 "システムがインストールへの正しいパスを検出できない場合は、ここに正しいパスを入力します。この設定は、制限されたシステムとWebルートへのシンボリックリンクを使用している場合にのみ設定する必要があります。"
+
+#: src/Module/Install.php:240
+msgid "Sub path of the URL"
+msgstr "URLのサブパス"
+
+#: src/Module/Install.php:242
+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 "サブパスの決定が正しくない場合はこのフィールドを上書きし、そうでない場合はそのままにしておきます。このフィールドを空白のままにすると、サブパスなしでベースURLにインストールされます。"
+
+#: src/Module/Install.php:253
+msgid "Database connection"
+msgstr "データベース接続"
+
+#: src/Module/Install.php:254
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Friendicaをインストールするには、データベースへの接続方法を知る必要があります。"
+
+#: src/Module/Install.php:255
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。"
+
+#: src/Module/Install.php:256
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。"
+
+#: src/Module/Install.php:265
+msgid "Database Server Name"
+msgstr "データベースサーバー名"
+
+#: src/Module/Install.php:270
+msgid "Database Login Name"
+msgstr "データベースのログイン名"
+
+#: src/Module/Install.php:276
+msgid "Database Login Password"
+msgstr "データベースログインパスワード"
+
+#: src/Module/Install.php:278
+msgid "For security reasons the password must not be empty"
+msgstr "セキュリティ上の理由から、パスワードを空にしないでください"
+
+#: src/Module/Install.php:281
+msgid "Database Name"
+msgstr "データベース名"
+
+#: src/Module/Install.php:285 src/Module/Install.php:315
+msgid "Please select a default timezone for your website"
+msgstr "ウェブサイトのデフォルトのタイムゾーンを選択してください"
+
+#: src/Module/Install.php:300
+msgid "Site settings"
+msgstr "サイト設定"
+
+#: src/Module/Install.php:310
+msgid "Site administrator email address"
+msgstr "サイト管理者のメールアドレス"
+
+#: src/Module/Install.php:312
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。"
+
+#: src/Module/Install.php:319
+msgid "System Language:"
+msgstr "システムの言語:"
+
+#: src/Module/Install.php:321
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Friendicaインストールインターフェイスのデフォルト言語を設定し、メールを送信します。"
+
+#: src/Module/Install.php:333
+msgid "Your Friendica site database has been installed."
+msgstr "Friendicaサイトデータベースがインストールされました。"
+
+#: src/Module/Install.php:343
+msgid "Installation finished"
+msgstr "インストール完了"
+
+#: src/Module/Install.php:363
+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:85 +#: src/Module/Security/TwoFactor/Verify.php:98 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "お使いの携帯電話を持ってませんか? 2要素認証の回復コードを入力" + +#: 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:95 +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:99 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "認証アプリからコードを入力してください" + +#: src/Module/Security/TwoFactor/Verify.php:100 +msgid "This is my two-factor authenticator app device" +msgstr "" + +#: src/Module/Security/TwoFactor/Verify.php:101 +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: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 "移譲された人は、このアカウント/ページの管理について、基本的なアカウント設定を除いた、すべての権限を得ます。 完全に信頼していない人には、あなたの個人アカウントを移譲しないでください。" + +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "既存のページの移譲" + +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "移譲先の候補" + +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "追加" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "エントリは有りません。" + +#: src/Module/Settings/Display.php:105 +msgid "The theme you chose isn't available." +msgstr "選択したテーマは使用できません。" + +#: src/Module/Settings/Display.php:142 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s (サポートされていません)" + +#: src/Module/Settings/Display.php:188 +msgid "Display Settings" +msgstr "ディスプレイの設定" + +#: src/Module/Settings/Display.php:190 +msgid "General Theme Settings" +msgstr "一般的なテーマ設定" + +#: src/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "カスタムテーマ設定" + +#: src/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "コンテンツ設定" + +#: src/Module/Settings/Display.php:193 view/theme/duepuntozero/config.php:70 +#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 +msgid "Theme settings" +msgstr "テーマ設定" + +#: src/Module/Settings/Display.php:194 +msgid "Calendar" +msgstr "カレンダー" + +#: src/Module/Settings/Display.php:200 +msgid "Display Theme:" +msgstr "ディスプレイテーマ:" + +#: src/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "モバイルテーマ:" + +#: src/Module/Settings/Display.php:204 +msgid "Number of items to display per page:" +msgstr "ページごとに表示するアイテムの数:" + +#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "最大100アイテム" + +#: src/Module/Settings/Display.php:205 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "モバイルデバイスから表示したときにページごとに表示するアイテムの数:" + +#: src/Module/Settings/Display.php:206 +msgid "Update browser every xx seconds" +msgstr "xx秒ごとにブラウザーを更新する" + +#: src/Module/Settings/Display.php:206 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "10秒以上。 -1を入力して無効にします。" + +#: src/Module/Settings/Display.php:207 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "" + +#: src/Module/Settings/Display.php:207 +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:208 +msgid "Don't show emoticons" +msgstr "絵文字を表示しない" + +#: src/Module/Settings/Display.php:208 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "" + +#: src/Module/Settings/Display.php:209 +msgid "Infinite scroll" +msgstr "無限スクロール" + +#: src/Module/Settings/Display.php:209 +msgid "Automatic fetch new items when reaching the page end." +msgstr "" + +#: src/Module/Settings/Display.php:210 +msgid "Disable Smart Threading" +msgstr "スマートスレッドを無効にする" + +#: src/Module/Settings/Display.php:210 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "外部スレッドのインデントについて、自動抑制を無効にします。" + +#: src/Module/Settings/Display.php:211 +msgid "Hide the Dislike feature" +msgstr "" + +#: src/Module/Settings/Display.php:211 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "" + +#: src/Module/Settings/Display.php:212 +msgid "Display the resharer" +msgstr "" + +#: src/Module/Settings/Display.php:212 +msgid "Display the first resharer as icon and text on a reshared item." +msgstr "" + +#: src/Module/Settings/Display.php:213 +msgid "Stay local" +msgstr "" + +#: src/Module/Settings/Display.php:213 +msgid "Don't go to a remote system when following a contact link." +msgstr "" + +#: src/Module/Settings/Display.php:215 +msgid "Beginning of week:" +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:248 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +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 "ホームページのURL:" + +#: 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 "" +"Custom fields appear on your profile page.
\n" +"\t\t\t\tYou can use BBCodes in the field values.
\n" +"\t\t\t\tReorder by dragging the field title.
\n" +"\t\t\t\tEmpty the label field to remove a custom field.
\n" +"\t\t\t\tNon-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 "画像サイズの縮小[ %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: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/TwoFactor/AppSpecific.php:52 #: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/Trusted.php:30 #: src/Module/Settings/TwoFactor/Verify.php:56 msgid "Please enter your password to access this page." msgstr "このページにアクセスするには、パスワードを入力してください。" @@ -7619,100 +9717,95 @@ msgstr "生成する" msgid "Two-factor authentication successfully disabled." msgstr "二要素認証が正常に無効になりました。" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:93 msgid "Wrong Password" msgstr "間違ったパスワード" -#: src/Module/Settings/TwoFactor/Index.php:105 -#: src/Module/Security/TwoFactor/Verify.php:80 src/Module/BaseSettings.php:50 -msgid "Two-factor authentication" -msgstr "二要素認証" - -#: src/Module/Settings/TwoFactor/Index.php:108 +#: src/Module/Settings/TwoFactor/Index.php:113 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して2要素認証コードを取得します。
" -#: src/Module/Settings/TwoFactor/Index.php:112 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Authenticator app" msgstr "認証アプリ" -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:118 msgid "Configured" msgstr "設定済み" -#: src/Module/Settings/TwoFactor/Index.php:113 +#: src/Module/Settings/TwoFactor/Index.php:118 msgid "Not Configured" msgstr "設定されていません" -#: src/Module/Settings/TwoFactor/Index.php:114 +#: src/Module/Settings/TwoFactor/Index.php:119 msgid "You haven't finished configuring your authenticator app.
" msgstr "認証アプリの設定が完了していません。
" -#: src/Module/Settings/TwoFactor/Index.php:115 +#: src/Module/Settings/TwoFactor/Index.php:120 msgid "Your authenticator app is correctly configured.
" msgstr "認証アプリが正しく構成されています。
" -#: src/Module/Settings/TwoFactor/Index.php:117 +#: src/Module/Settings/TwoFactor/Index.php:122 msgid "Recovery codes" msgstr "回復コード" -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Index.php:123 msgid "Remaining valid codes" msgstr "残りの有効なコード" -#: src/Module/Settings/TwoFactor/Index.php:120 +#: src/Module/Settings/TwoFactor/Index.php:125 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 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "App-specific passwords" msgstr "アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:123 +#: src/Module/Settings/TwoFactor/Index.php:128 msgid "Generated app-specific passwords" msgstr "生成されたアプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "これらのランダムに生成されたパスワードを使用すると、2要素認証をサポートしていないアプリで認証できます。
" -#: src/Module/Settings/TwoFactor/Index.php:127 src/Module/Contact.php:633 -msgid "Actions" -msgstr "操作" - -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "Current password:" msgstr "現在のパスワード:" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "2要素認証設定を変更するには、現在のパスワードを入力する必要があります。" -#: src/Module/Settings/TwoFactor/Index.php:129 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Enable two-factor authentication" msgstr "二要素認証を有効にする" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Disable two-factor authentication" msgstr "二要素認証を無効にする" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Show recovery codes" msgstr "復旧コードを表示" -#: src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Manage app-specific passwords" msgstr "アプリ固有のパスワードを管理する" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:138 +msgid "Manage trusted browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Finish app configuration" msgstr "アプリの構成を完了する" @@ -7747,16 +9840,49 @@ msgstr "新しい回復コードを生成する" msgid "Next: Verification" msgstr "次:検証" +#: src/Module/Settings/TwoFactor/Trusted.php:49 +msgid "Trusted browsers successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:59 +msgid "Trusted browser successfully removed." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:97 +msgid "Two-factor Trusted Browsers" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:98 +msgid "" +"Trusted browsers are individual browsers you chose to skip two-factor " +"authentication to access Friendica. Please use this feature sparingly, as it" +" can negate the benefit of two-factor authentication." +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:99 +msgid "Device" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:100 +msgid "OS" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:102 +msgid "Trusted" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:103 +msgid "Last Use" +msgstr "" + +#: src/Module/Settings/TwoFactor/Trusted.php:105 +msgid "Remove All" +msgstr "" + #: src/Module/Settings/TwoFactor/Verify.php:78 msgid "Two-factor authentication successfully activated." msgstr "二要素認証が正常にアクティブ化されました。" -#: src/Module/Settings/TwoFactor/Verify.php:82 -#: src/Module/Security/TwoFactor/Recovery.php:64 -#: src/Module/Security/TwoFactor/Verify.php:61 -msgid "Invalid code, please retry." -msgstr "無効なコードです。再試行してください。" - #: src/Module/Settings/TwoFactor/Verify.php:111 #, php-format msgid "" @@ -7790,449 +9916,45 @@ msgstr "このQRコードを認証アプリでスキャンして、提供さ #: src/Module/Settings/TwoFactor/Verify.php:135 #, php-format msgid "" -"
Or you can open the following URL in your mobile devicde:
Or you can open the following URL in your mobile device:
" -msgstr "または、モバイルデバイスで次のURLを開くことができます。
" - -#: src/Module/Settings/TwoFactor/Verify.php:141 -#: src/Module/Security/TwoFactor/Verify.php:85 -msgid "Please enter a code from your authentication app" -msgstr "認証アプリからコードを入力してください" +msgstr "" #: src/Module/Settings/TwoFactor/Verify.php:142 msgid "Verify code and enable two-factor authentication" 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:106 -#, 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:98 -msgid "Image uploaded successfully." -msgstr "画像が正常にアップロードされました。" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Profile Picture Settings" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:130 -msgid "Current Profile Picture" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:131 -msgid "Upload Profile Picture" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:132 -msgid "Upload Picture:" -msgstr "" - -#: src/Module/Settings/Profile/Photo/Index.php:137 -msgid "or" -msgstr "または" - -#: src/Module/Settings/Profile/Photo/Index.php:139 -msgid "skip this step" -msgstr "このステップを飛ばす" - -#: src/Module/Settings/Profile/Photo/Index.php:141 -msgid "select a photo from your photo albums" -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: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: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 "ホームページのURL:" - -#: 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\tYou can use BBCodes in the field values.
\n" -"\t\t\t\tReorder by dragging the field title.
\n" -"\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" -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:154 src/Module/Register.php:170 -msgid "Parent Password:" -msgstr "親パスワード:" - -#: src/Module/Settings/Delegation.php:154 src/Module/Register.php:170 -msgid "" -"Please enter the password of the parent account to legitimize your request." -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:170 src/Module/BaseSettings.php:94 -msgid "Manage Accounts" -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: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 +#: src/Module/Settings/UserExport.php:69 msgid "Export account" msgstr "アカウントのエクスポート" -#: src/Module/Settings/UserExport.php:57 +#: src/Module/Settings/UserExport.php:69 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 "アカウント情報とコンタクトをエクスポートします。これを使用して、アカウントのバックアップを作成したり、別のサーバーに移動したりします。" -#: src/Module/Settings/UserExport.php:58 +#: src/Module/Settings/UserExport.php:70 msgid "Export all" msgstr "すべてエクスポート" -#: src/Module/Settings/UserExport.php:58 +#: src/Module/Settings/UserExport.php:70 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 +#: src/Module/Settings/UserExport.php:71 msgid "Export Contacts to CSV" msgstr "連絡先をCSV形式でエクスポート" -#: src/Module/Settings/UserExport.php:59 +#: src/Module/Settings/UserExport.php:71 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。" -#: src/Module/Settings/UserExport.php:65 src/Module/BaseSettings.php:108 -msgid "Export personal data" -msgstr "個人データのエクスポート" - #: src/Module/Special/HTTPException.php:49 msgid "Bad Request" msgstr "要求の形式が正しくありません" @@ -8292,1402 +10014,13 @@ msgid "" "maintenance). Please try again later." 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 "このコンタクトを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 "アカウントURLエイリアス" - -#: 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/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "そのメソッドは許可されていません。" - -#: src/Module/HTTPException/PageNotFound.php:32 src/App/Router.php:211 -msgid "Page not found." -msgstr "ページが見つかりません。" - -#: 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/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 "お使いの携帯電話を持ってませんか? 2要素認証の回復コードを入力" - -#: 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 -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:86 -msgid "Verify code and complete login" -msgstr "コードを確認してログインを完了する" - -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -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 "ユーザー名とパスワードを入力して、既存のアカウントにOpenIDを追加してください。" - -#: 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 "OpenID プロトコルエラー。返答にてIDが返されませんでした。" - -#: src/Module/Security/OpenID.php:92 -msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "アカウントが見つかりませんでした。 既存のアカウントにログインして、OpenIDを追加してください。" - -#: 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 "アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。" - -#: 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:" -msgstr "によって提案されました:" - -#: src/Module/Notifications/Introductions.php:105 -#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:613 -msgid "Hide this contact from others" -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 -#, 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 はあなたの投稿を購読できます。また、あなたのニュースフィードにこのアカウントの投稿が表示されます。" - -#: 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 "%sを購読者として受け入れると、このアカウントはあなたの投稿を購読できますが、このアカウントからの投稿はあなたのニュースフィードに表示されません。" - -#: src/Module/Notifications/Introductions.php:129 -msgid "Friend" -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." +#: src/Module/Special/HTTPException.php:76 +msgid "Stack trace:" 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/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 "DBの更新" - -#: 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 "PHP情報" - -#: 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 "Babel" - -#: 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 +#: src/Module/Special/HTTPException.php:80 #, 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:73 -msgid "Display" -msgstr "表示" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "接続されたアプリ" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "アカウントを削除" - -#: src/Module/Bookmarklet.php:55 -msgid "This page is missing a url parameter." -msgstr "このページにはurlパラメーターがありません。" - -#: src/Module/Bookmarklet.php:77 -msgid "The post was created" -msgstr "投稿が作成されました" - -#: src/Module/Contact.php:88 -#, 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" -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: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 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "一般公開の投稿への返信・いいねは、引き続き表示される場合があります" - -#: src/Module/Contact.php:614 -msgid "Notification for new posts" -msgstr "新しい投稿の通知" - -#: src/Module/Contact.php:614 -msgid "Send a notification of every new post of this contact" -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: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: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: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/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はコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!" - -#: src/Module/Delegation.php:147 -msgid "Manage Identities and/or Pages" -msgstr "IDやページを管理する" - -#: 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 "アカウントの詳細を共有する、または「管理」権限が付与されているさまざまなIDまたはコミュニティ/グループページを切り替える" - -#: src/Module/Delegation.php:149 -msgid "Select an identity to manage: " -msgstr "管理するIDを選択します。" - -#: 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/FriendSuggest.php:65 -msgid "Suggested contact not found." -msgstr "推奨コンタクトが見つかりません。" - -#: src/Module/FriendSuggest.php:84 -msgid "Friend suggestion sent." -msgstr "友達の提案が送信されました。" - -#: src/Module/FriendSuggest.php:121 -msgid "Suggest Friends" -msgstr "友人を示唆しています" - -#: src/Module/FriendSuggest.php:124 -#, php-format -msgid "Suggest a friend for %s" -msgstr "%s友達を提案する" - -#: 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 "このサーバーでは、次のリモートサーバーがブロックされています。" - -#: 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 "これは、Webロケーション%s実行されているFriendicaバージョン%sです。データベースのバージョンは%s 、更新後のバージョンは%sです。" - -#: src/Module/Friendica.php:98 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Friendicaプロジェクトの詳細については、 Friendi.ca をご覧ください。" - -#: src/Module/Friendica.php:99 -msgid "Bug reports and issues: please visit" -msgstr "バグレポートと問題:こちらをご覧ください" - -#: 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 "提案、ファンレターなどを \"info \" at \"friendi - dot - ca\"でお待ちしております。" - -#: src/Module/Group.php:56 -msgid "Group created." -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/Install.php:177 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Communications Server-セットアップ" - -#: src/Module/Install.php:188 -msgid "System check" -msgstr "システムチェック" - -#: src/Module/Install.php:193 -msgid "Check again" -msgstr "再び確かめる" - -#: src/Module/Install.php:208 -msgid "Base settings" -msgstr "基本設定" - -#: src/Module/Install.php:215 -msgid "Host name" -msgstr "ホスト名" - -#: 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 "インストールへの基本パス" - -#: 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 "システムがインストールへの正しいパスを検出できない場合は、ここに正しいパスを入力します。この設定は、制限されたシステムとWebルートへのシンボリックリンクを使用している場合にのみ設定する必要があります。" - -#: src/Module/Install.php:225 -msgid "Sub path of the URL" -msgstr "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 "サブパスの決定が正しくない場合はこのフィールドを上書きし、そうでない場合はそのままにしておきます。このフィールドを空白のままにすると、サブパスなしでベースURLにインストールされます。" - -#: src/Module/Install.php:238 -msgid "Database connection" -msgstr "データベース接続" - -#: src/Module/Install.php:239 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Friendicaをインストールするには、データベースへの接続方法を知る必要があります。" - -#: src/Module/Install.php:240 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。" - -#: src/Module/Install.php:241 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。" - -#: src/Module/Install.php:248 -msgid "Database Server Name" -msgstr "データベースサーバー名" - -#: src/Module/Install.php:253 -msgid "Database Login Name" -msgstr "データベースのログイン名" - -#: src/Module/Install.php:259 -msgid "Database Login Password" -msgstr "データベースログインパスワード" - -#: src/Module/Install.php:261 -msgid "For security reasons the password must not be empty" -msgstr "セキュリティ上の理由から、パスワードを空にしないでください" - -#: src/Module/Install.php:264 -msgid "Database Name" -msgstr "データベース名" - -#: src/Module/Install.php:268 src/Module/Install.php:297 -msgid "Please select a default timezone for your website" -msgstr "ウェブサイトのデフォルトのタイムゾーンを選択してください" - -#: src/Module/Install.php:282 -msgid "Site settings" -msgstr "サイト設定" - -#: src/Module/Install.php:292 -msgid "Site administrator email address" -msgstr "サイト管理者のメールアドレス" - -#: src/Module/Install.php:294 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。" - -#: src/Module/Install.php:301 -msgid "System Language:" -msgstr "システム言語:" - -#: src/Module/Install.php:303 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Friendicaインストールインターフェイスのデフォルト言語を設定し、メールを送信します。" - -#: src/Module/Install.php:315 -msgid "Your Friendica site database has been installed." -msgstr "Friendicaサイトデータベースがインストールされました。" - -#: src/Module/Install.php:323 -msgid "Installation finished" -msgstr "インストール完了" - -#: src/Module/Install.php:343 -msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n*
: Any number of characters?
: Any single character[<char1><char2>...]
: char1 or char2サーバードメインパターンの構文は、大文字と小文字を区別しないシェルワイルドカードであり、次の特殊文字で構成されています。
\n*
:任意の数の文字?
:任意の1文字[<char1><char2>...]
:char1またはchar2App-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.
"] = "アプリ固有のパスワードは、2要素認証をサポートしないサードパーティアプリケーションでアカウントを認証するために、通常のパスワードの代わりに使用されるランダムに生成されたパスワードです。
"; -$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..."] = "フェアフォン2のFriendiqa ..."; -$a->strings["Generate"] = "生成する"; -$a->strings["Two-factor authentication successfully disabled."] = "二要素認証が正常に無効になりました。"; -$a->strings["Wrong Password"] = "間違ったパスワード"; -$a->strings["Two-factor authentication"] = "二要素認証"; -$a->strings["Use an application on a mobile device to get two-factor authentication codes when prompted on login.
"] = "ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して2要素認証コードを取得します。
"; -$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.
"] = "これらのランダムに生成されたパスワードを使用すると、2要素認証をサポートしていないアプリで認証できます。
"; -$a->strings["Actions"] = "操作"; -$a->strings["Current password:"] = "現在のパスワード:"; -$a->strings["You need to provide your current password to change two-factor authentication settings."] = "2要素認証設定を変更するには、現在のパスワードを入力する必要があります。"; -$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["Invalid code, please retry."] = "無効なコードです。再試行してください。"; -$a->strings["Or you can submit the authentication settings manually:
\nまたは認証設定を手動で送信できます:
Please scan this QR Code with your authenticator app and submit the provided code.
"] = "このQRコードを認証アプリでスキャンして、提供されたコードを送信してください。
"; -$a->strings["Or you can open the following URL in your mobile devicde:
"] = "または、モバイルデバイスで次のURLを開くことができます。
"; -$a->strings["Please enter a code from your authentication app"] = "認証アプリからコードを入力してください"; -$a->strings["Verify code and enable two-factor authentication"] = "コードを確認し、二要素認証を有効にします"; -$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["Crop Image"] = "クロップ画像"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "最適な表示になるように画像のトリミングを調整してください。"; -$a->strings["Image uploaded successfully."] = "画像が正常にアップロードされました。"; -$a->strings["or"] = "または"; -$a->strings["skip this step"] = "このステップを飛ばす"; -$a->strings["select a photo from your photo albums"] = "フォトアルバムから写真を選択する"; -$a->strings["Profile Name is required."] = "プロフィール名が必要です。"; -$a->strings["Profile updated."] = "プロフィールを更新しました。"; -$a->strings["Profile Actions"] = "プロフィールアクション"; -$a->strings["Edit Profile Details"] = "プロフィールの詳細を編集"; -$a->strings["Change Profile Photo"] = "プロフィール写真の変更"; -$a->strings["Profile picture"] = "プロフィールの写真"; -$a->strings["Location"] = "位置情報"; -$a->strings["Upload Profile Photo"] = "プロフィール写真をアップロード"; -$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["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["Parent Password:"] = "親パスワード:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "リクエストの確認のため、親アカウントのパスワードを入力してください。"; -$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["Manage Accounts"] = "アカウントの管理"; -$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["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["Don't show emoticons"] = "絵文字を表示しない"; -$a->strings["Infinite scroll"] = "無限スクロール"; -$a->strings["Disable Smart Threading"] = "スマートスレッドを無効にする"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "外部スレッドのインデントについて、自動抑制を無効にします。"; -$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 Contacts to CSV"] = "連絡先をCSV形式でエクスポート"; -$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。"; -$a->strings["Export personal data"] = "個人データのエクスポート"; -$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["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."] = "このコンタクトをremote_selfとしてマークすると、friendicaがこのコンタクトから新しいエントリを再投稿します。"; -$a->strings["Account Nickname"] = "アカウントのニックネーム"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - 名前/ニックネームをオーバーライドします"; -$a->strings["Account URL"] = "アカウントURL"; -$a->strings["Account URL Alias"] = "アカウントURLエイリアス"; -$a->strings["Friend Request URL"] = "フレンドリクエストURL"; -$a->strings["Friend Confirm URL"] = "友人確認URL"; -$a->strings["Notification Endpoint URL"] = "通知エンドポイントURL"; -$a->strings["Poll/Feed URL"] = "ポーリング/フィードURL"; -$a->strings["New photo from this URL"] = "このURLからの新しい写真"; -$a->strings["Method Not Allowed."] = "そのメソッドは許可されていません。"; -$a->strings["Page not found."] = "ページが見つかりません。"; -$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["Don’t have your phone? Enter a two-factor recovery code"] = "お使いの携帯電話を持ってませんか? 2要素認証の回復コードを入力"; -$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["Verify code and complete login"] = "コードを確認してログインを完了する"; -$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."] = "ユーザー名とパスワードを入力して、既存のアカウントにOpenIDを追加してください。"; -$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"] = "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."] = "アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。"; -$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["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["Network Notifications"] = "ネットワーク通知"; -$a->strings["System Notifications"] = "システム通知"; -$a->strings["Personal Notifications"] = "個人的な通知"; -$a->strings["Home Notifications"] = "ホーム通知"; -$a->strings["Show unread"] = "未読を表示"; -$a->strings["Show all"] = "すべて表示する"; -$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"] = "DBの更新"; -$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情報"; -$a->strings["probe address"] = "プローブアドレス"; -$a->strings["check webfinger"] = "webfingerで診断"; -$a->strings["Item Source"] = "アイテムソース"; -$a->strings["Babel"] = "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["Display"] = "表示"; -$a->strings["Connected apps"] = "接続されたアプリ"; -$a->strings["Remove account"] = "アカウントを削除"; -$a->strings["This page is missing a url parameter."] = "このページにはurlパラメーターがありません。"; -$a->strings["The post was created"] = "投稿が作成されました"; -$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["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["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["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["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["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はコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!"; -$a->strings["Manage Identities and/or Pages"] = "IDやページを管理する"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "アカウントの詳細を共有する、または「管理」権限が付与されているさまざまなIDまたはコミュニティ/グループページを切り替える"; $a->strings["Select an identity to manage: "] = "管理するIDを選択します。"; $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["- select -"] = "-選択-"; $a->strings["Suggested contact not found."] = "推奨コンタクトが見つかりません。"; $a->strings["Friend suggestion sent."] = "友達の提案が送信されました。"; $a->strings["Suggest Friends"] = "友人を示唆しています"; @@ -1959,10 +1620,9 @@ $a->strings["Please visit Friendi.ca to learn $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"] = "提案、ファンレターなどを \"info \" at \"friendi - dot - ca\"でお待ちしております。"; -$a->strings["Group created."] = "グループが作成されました。"; $a->strings["Could not create group."] = "グループを作成できませんでした。"; $a->strings["Group not found."] = "グループが見つかりません。"; -$a->strings["Group name changed."] = "グループ名が変更されました。"; +$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."] = "グループにコンタクトを追加できません。"; @@ -1974,19 +1634,22 @@ $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["Group is empty"] = "グループは空です"; $a->strings["Remove contact from group"] = "グループからコンタクトを削除"; $a->strings["Click on a contact to add or remove."] = "コンタクトをクリックして追加・削除"; $a->strings["Add contact to group"] = "グループにコンタクトを追加"; +$a->strings["Method Not Allowed."] = "そのメソッドは許可されていません。"; $a->strings["Help:"] = "ヘルプ:"; $a->strings["Welcome to %s"] = "%sへようこそ"; $a->strings["No profile"] = "プロフィールなし"; $a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server-セットアップ"; $a->strings["System check"] = "システムチェック"; +$a->strings["Requirement not satisfied"] = "要件を満たしていない"; +$a->strings["Optional requirement not satisfied"] = "オプションの要件を満たしていない"; $a->strings["Check again"] = "再び確かめる"; $a->strings["Base settings"] = "基本設定"; $a->strings["Host name"] = "ホスト名"; @@ -2008,7 +1671,7 @@ $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["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"] = "インストール完了"; @@ -2036,8 +1699,52 @@ $a->strings["You are cordially invited to join me and other close friends on Fri $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["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["Model not found"] = "モジュールが見つかりません"; +$a->strings["Remote privacy information not available."] = "リモートプライバシー情報は利用できません。"; +$a->strings["Visible to:"] = "表示先:"; +$a->strings["The Photo with id %s is not available."] = "ID%sの写真は利用できません"; $a->strings["Invalid photo with id %s."] = "ID %s の写真が無効です。"; +$a->strings["No 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["%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\"."] = "(オプションで)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に慣れていない場合は、そのフィールドを空白のままにして、残りの項目を入力してください。"; @@ -2055,6 +1762,8 @@ $a->strings["Choose a profile nickname. This must begin with a text character. Y $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."] = "入力件数が多すぎます"; @@ -2066,6 +1775,167 @@ $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["Only logged in users are permitted to perform a search."] = "ログインしたユーザーのみが検索を実行できます。"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "ログインしていないユーザーには、1分間に1つの検索のみが許可されます。"; +$a->strings["Items tagged with: %s"] = "タグ付けされたアイテム: %s"; +$a->strings["Search term already saved."] = "すでに保存された検索キーワードです。"; +$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."] = "ユーザー名とパスワードを入力して、既存のアカウントにOpenIDを追加してください。"; +$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"] = "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."] = "アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。"; +$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"] = "お使いの携帯電話を持ってませんか? 2要素認証の回復コードを入力"; +$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["Don't show emoticons"] = "絵文字を表示しない"; +$a->strings["Infinite scroll"] = "無限スクロール"; +$a->strings["Disable Smart Threading"] = "スマートスレッドを無効にする"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "外部スレッドのインデントについて、自動抑制を無効にします。"; +$a->strings["Beginning of week:"] = "週の始まり:"; +$a->strings["Profile Name is required."] = "プロフィール名が必要です。"; +$a->strings["(click to open/close)"] = "(クリックして開く・閉じる)"; +$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["Upload Profile Photo"] = "プロフィール写真をアップロード"; +$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["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["Crop Image"] = "クロップ画像"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "最適な表示になるように画像のトリミングを調整してください。"; +$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.
"] = "アプリ固有のパスワードは、2要素認証をサポートしないサードパーティアプリケーションでアカウントを認証するために、通常のパスワードの代わりに使用されるランダムに生成されたパスワードです。
"; +$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..."] = "フェアフォン2のFriendiqa ..."; +$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.
"] = "ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して2要素認証コードを取得します。
"; +$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.
"] = "これらのランダムに生成されたパスワードを使用すると、2要素認証をサポートしていないアプリで認証できます。
"; +$a->strings["Current password:"] = "現在のパスワード:"; +$a->strings["You need to provide your current password to change two-factor authentication settings."] = "2要素認証設定を変更するには、現在のパスワードを入力する必要があります。"; +$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または認証設定を手動で送信できます:
Please scan this QR Code with your authenticator app and submit the provided code.
"] = "このQRコードを認証アプリでスキャンして、提供されたコードを送信してください。
"; +$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 Contacts to CSV"] = "連絡先をCSV形式でエクスポート"; +$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。"; +$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."] = "登録時、およびユーザーアカウントとコンタクト間の通信を提供するために、ユーザーは表示名(ペンネーム)、ユーザー名(ニックネーム)、および有効な電子メールアドレスを提供する必要があります。\n他のプロフィールの詳細が表示されていなくても、ページの訪問者はアカウントのプロフィールページで名前にアクセスできます。\n電子メールアドレスは、インタラクションに関するユーザー通知の送信にのみ使用されますが、表示されることはありません。\nノードのユーザーディレクトリまたはグローバルユーザーディレクトリでのアカウントのリストはオプションであり、ユーザー設定で制御できます。通信には必要ありません。"; $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."] = "ログインしたユーザーは、いつでもアカウント設定からアカウントデータをエクスポートできます。 ユーザーがアカウントを削除する場合は、 %1\$s/removeme で削除できます。 アカウントの削除は取り消しできません。 データの削除は、通信パートナーのノードからも要求されます。"; @@ -2083,7 +1953,6 @@ $a->strings["Upload a profile photo if you have not done so already. Studies hav $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 default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "あなたの興味を説明するいくつかの公開キーワードを既定のプロフィールに設定します。同様の興味を持つ他の人を見つけ、友情を提案することができるかもしれません。"; $a->strings["Connecting"] = "接続中"; $a->strings["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"] = "メールの受信トレイから友人やメーリングリストをインポートしてやり取りする場合は、コネクタ設定ページでメールアクセス情報を入力します"; @@ -2107,7 +1976,6 @@ $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"] = "フォルダーに保存"; @@ -2128,14 +1996,13 @@ $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["to"] = "に"; $a->strings["via"] = "投稿先:"; $a->strings["Wall-to-Wall"] = "壁間"; $a->strings["via Wall-To-Wall:"] = "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"] = "リモートサーバーへの配信が進行中です"; @@ -2146,33 +2013,11 @@ $a->strings["%d comment"] = [ ]; $a->strings["Show more"] = "もっと見せる"; $a->strings["Show fewer"] = "表示を減らす"; -$a->strings["Login failed."] = "ログインに失敗しました。"; -$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["Friend Suggestion"] = "友達の提案"; -$a->strings["Friend/Connect Request"] = "フレンド/接続リクエスト"; -$a->strings["New Follower"] = "新しいフォロワー"; -$a->strings["%s created a new post"] = "%sが新しい投稿を作成しました"; -$a->strings["%s commented on %s's post"] = "%sが%sの投稿にコメントしました"; -$a->strings["%s liked %s's post"] = "%sが%sの投稿を高く評価しました"; -$a->strings["%s disliked %s's post"] = "%sは%sの投稿を好きではないようです"; -$a->strings["%s is attending %s's event"] = "%sは%sのイベントに参加しています"; -$a->strings["%s is not attending %s's event"] = "%sは%sのイベントを欠席します"; -$a->strings["%s is now friends with %s"] = "%sは%sと友達になりました"; -$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["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["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["Sexual Preference:"] = "性的嗜好:"; $a->strings["Political Views:"] = "政見:"; @@ -2189,8 +2034,8 @@ $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["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["Legacy module file not found: %s"] = "レガシーモジュールファイルが見つかりません: %s"; -$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s :アイテムとスレッドテーブルの作成者IDと所有者IDを更新しています。"; -$a->strings["%s: Updating post-type."] = "%s :投稿タイプを更新しています。"; +$a->strings["Login failed."] = "ログインに失敗しました。"; +$a->strings["Login failed. Please check your credentials."] = "ログインに失敗しました。認証情報を確かめてください。"; +$a->strings["Welcome %s"] = "ようこそ%s"; +$a->strings["Please upload a profile photo."] = "プロフィール写真をアップロードしてください。"; +$a->strings["Friendica Notification"] = "Friendica の通知"; diff --git a/view/templates/admin/queue.tpl b/view/templates/admin/queue.tpl index 5bab58a5e9..d50ff2082f 100644 --- a/view/templates/admin/queue.tpl +++ b/view/templates/admin/queue.tpl @@ -5,6 +5,7 @@{{$id_header}} | +{{$command_header}} | {{$param_header}} | {{$created_header}} | {{$prio_header}} | @@ -12,6 +13,7 @@ {{foreach $entries as $e}}
---|---|---|---|---|
{{$e.id}} | +{{$e.command}} | {{$e.parameter}} | {{$e.created}} | {{$e.priority}} | diff --git a/view/templates/comment_item.tpl b/view/templates/comment_item.tpl index 977a5b75b2..856637e26c 100644 --- a/view/templates/comment_item.tpl +++ b/view/templates/comment_item.tpl @@ -5,7 +5,6 @@